Yuta HIGUCHI | a9ae6e6 | 2018-02-26 12:56:20 -0800 | [diff] [blame] | 1 | APPS = [ |
| 2 | 'org.onosproject.yang', |
| 3 | 'org.onosproject.config', |
| 4 | 'org.onosproject.configsync', |
| 5 | 'org.onosproject.models.tapi', |
| 6 | 'org.onosproject.models.openconfig', |
| 7 | |
| 8 | # strictly speaking following are not mandatory |
| 9 | 'org.onosproject.restconf', |
| 10 | 'org.onosproject.drivers.netconf', |
| 11 | 'org.onosproject.netconf', |
| 12 | 'org.onosproject.configsync-netconf', |
| 13 | ] |
| 14 | |
| 15 | COMPILE_DEPS = [ |
| 16 | '//lib:CORE_DEPS', |
| 17 | '//lib:onos-yang-model', |
| 18 | '//lib:onos-yang-runtime', |
| 19 | '//apps/config:onos-apps-config', |
| 20 | '//models/tapi:onos-models-tapi', |
| 21 | '//models/openconfig:onos-models-openconfig', |
| 22 | ] |
| 23 | |
| 24 | TEST_DEPS = [ |
| 25 | '//lib:TEST_ADAPTERS', |
| 26 | ] |
| 27 | |
| 28 | osgi_jar_with_tests ( |
| 29 | deps = COMPILE_DEPS, |
| 30 | test_deps = TEST_DEPS, |
| 31 | ) |
| 32 | |
| 33 | onos_app ( |
| 34 | title = 'ODTN Service Application', |
| 35 | category = 'Traffic Steering', |
| 36 | url = 'http://onosproject.org', |
| 37 | description = 'ODTN Service Application', |
| 38 | required_apps = APPS, |
| 39 | ) |