blob: e5f7d2afb1f39184182a317feb74db10fab0580b [file] [log] [blame]
Jian Lib1ca1ea2017-01-23 17:43:17 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//protocols/lisp/api:onos-protocols-lisp-api',
Jian Li3ff327a2017-03-14 17:02:19 +09004 '//apps/mappingmanagement/api:onos-apps-mappingmanagement-api',
Jian Lib1ca1ea2017-01-23 17:43:17 -08005]
6
7TEST_DEPS = [
8 '//lib:TEST_ADAPTERS',
9 '//core/api:onos-api-tests',
10]
11
12BUNDLES = [
13 ':onos-drivers-lisp',
14]
15
16osgi_jar_with_tests (
17 deps = COMPILE_DEPS,
18 test_deps = TEST_DEPS,
19 resources_root = 'src/main/resources',
20 resources = glob(['src/main/resources/**']),
21)
22
23onos_app (
24 app_name = 'org.onosproject.drivers.lisp',
25 title = 'LISP Device Drivers',
26 category = 'Drivers',
27 url = 'https://wiki.onosproject.org/display/ONOS/LISP+as+SBI',
28 description = 'ONOS LISP Device Drivers application.',
29 included_bundles = BUNDLES,
30 required_apps = [ 'org.onosproject.lisp' ],
31)