Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//models/l3vpn:onos-models-l3vpn', |
| 4 | '//apps/config:onos-apps-config', |
| 5 | '//core/store/serializers:onos-core-serializers', |
| 6 | '//lib:onos-yang-model', |
| 7 | '//lib:onos-yang-runtime', |
| 8 | '//apps/yang:onos-apps-yang', |
Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 9 | ] |
| 10 | |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 11 | TEST_DEPS = [ |
| 12 | '//lib:TEST_ADAPTERS', |
| 13 | '//utils/osgi:onlab-osgi-tests', |
Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 14 | ] |
| 15 | |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 16 | APPS = [ |
| 17 | 'org.onosproject.yang', |
| 18 | 'org.onosproject.yang-gui', |
| 19 | 'org.onosproject.config', |
| 20 | 'org.onosproject.restconf', |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 21 | 'org.onosproject.protocols.restconfserver', |
| 22 | 'org.onosproject.netconf', |
| 23 | 'org.onosproject.netconfsb', |
| 24 | 'org.onosproject.models.l3vpn', |
| 25 | ] |
| 26 | |
Vidyashree Rama | 04147ca | 2017-05-26 11:32:47 +0530 | [diff] [blame] | 27 | osgi_jar_with_tests( |
| 28 | deps = COMPILE_DEPS, |
| 29 | test_deps = TEST_DEPS, |
| 30 | ) |
Gaurav Agrawal | 4546217 | 2017-05-11 21:20:19 +0530 | [diff] [blame] | 31 | |
Vidyashree Rama | 04147ca | 2017-05-26 11:32:47 +0530 | [diff] [blame] | 32 | onos_app( |
| 33 | app_name = 'org.onosproject.l3vpn', |
Thomas Vachuska | 7c45e28 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 34 | title = 'YANG L3VPN', |
Vidyashree Rama | 04147ca | 2017-05-26 11:32:47 +0530 | [diff] [blame] | 35 | category = 'Traffic Steering', |
| 36 | url = 'http://onosproject.org', |
| 37 | description = 'L3VPN YANG Application', |
| 38 | required_apps = APPS, |
| 39 | ) |
Gaurav Agrawal | c6d536f | 2017-03-17 11:56:31 +0530 | [diff] [blame] | 40 | |