Jian Li | b1ca1ea | 2017-01-23 17:43:17 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//protocols/lisp/api:onos-protocols-lisp-api', |
| 4 | ] |
| 5 | |
| 6 | TEST_DEPS = [ |
| 7 | '//lib:TEST_ADAPTERS', |
| 8 | '//core/api:onos-api-tests', |
| 9 | ] |
| 10 | |
| 11 | BUNDLES = [ |
| 12 | ':onos-drivers-lisp', |
| 13 | ] |
| 14 | |
| 15 | osgi_jar_with_tests ( |
| 16 | deps = COMPILE_DEPS, |
| 17 | test_deps = TEST_DEPS, |
| 18 | resources_root = 'src/main/resources', |
| 19 | resources = glob(['src/main/resources/**']), |
| 20 | ) |
| 21 | |
| 22 | onos_app ( |
| 23 | app_name = 'org.onosproject.drivers.lisp', |
| 24 | title = 'LISP Device Drivers', |
| 25 | category = 'Drivers', |
| 26 | url = 'https://wiki.onosproject.org/display/ONOS/LISP+as+SBI', |
| 27 | description = 'ONOS LISP Device Drivers application.', |
| 28 | included_bundles = BUNDLES, |
| 29 | required_apps = [ 'org.onosproject.lisp' ], |
| 30 | ) |