Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 3 | '//lib:KRYO', |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 4 | '//models/l3vpn:onos-models-l3vpn', |
| 5 | '//apps/config:onos-apps-config', |
| 6 | '//core/store/serializers:onos-core-serializers', |
| 7 | '//lib:onos-yang-model', |
| 8 | '//lib:onos-yang-runtime', |
| 9 | '//apps/yang:onos-apps-yang', |
janani b | 9ed76be | 2017-08-29 19:11:33 +0530 | [diff] [blame] | 10 | '//apps/pce/app:onos-apps-pce-app', |
Gaurav Agrawal | 28920d8 | 2017-10-06 17:39:42 +0530 | [diff] [blame] | 11 | '//incubator/api:onos-incubator-api', |
| 12 | '//models/common:onos-models-common', |
Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 13 | ] |
| 14 | |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 15 | TEST_DEPS = [ |
| 16 | '//lib:TEST_ADAPTERS', |
| 17 | '//utils/osgi:onlab-osgi-tests', |
Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 18 | ] |
| 19 | |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 20 | APPS = [ |
| 21 | 'org.onosproject.yang', |
| 22 | 'org.onosproject.yang-gui', |
| 23 | 'org.onosproject.config', |
| 24 | 'org.onosproject.restconf', |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 25 | 'org.onosproject.protocols.restconfserver', |
| 26 | 'org.onosproject.netconf', |
| 27 | 'org.onosproject.netconfsb', |
Gaurav Agrawal | 28920d8 | 2017-10-06 17:39:42 +0530 | [diff] [blame] | 28 | 'org.onosproject.models.common', |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 29 | 'org.onosproject.models.l3vpn', |
Gaurav Agrawal | 28920d8 | 2017-10-06 17:39:42 +0530 | [diff] [blame] | 30 | 'org.onosproject.bgpcep', |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 31 | ] |
| 32 | |
Vidyashree Rama | 04147ca | 2017-05-26 11:32:47 +0530 | [diff] [blame] | 33 | osgi_jar_with_tests( |
| 34 | deps = COMPILE_DEPS, |
| 35 | test_deps = TEST_DEPS, |
| 36 | ) |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 37 | |
Vidyashree Rama | 04147ca | 2017-05-26 11:32:47 +0530 | [diff] [blame] | 38 | onos_app( |
| 39 | app_name = 'org.onosproject.l3vpn', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 40 | title = 'YANG L3VPN', |
Thomas Vachuska | ca0b5df | 2018-06-22 16:24:47 -0700 | [diff] [blame] | 41 | category = 'Traffic Engineering', |
Vidyashree Rama | 04147ca | 2017-05-26 11:32:47 +0530 | [diff] [blame] | 42 | url = 'http://onosproject.org', |
| 43 | description = 'L3VPN YANG Application', |
| 44 | required_apps = APPS, |
| 45 | ) |
Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 46 | |