blob: b938b39dcafd178724012ef9fccb01f6ff033b15 [file] [log] [blame]
Jian Lib1ca1ea2017-01-23 17:43:17 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//protocols/lisp/api:onos-protocols-lisp-api',
4]
5
6TEST_DEPS = [
7 '//lib:TEST_ADAPTERS',
8 '//core/api:onos-api-tests',
9]
10
11BUNDLES = [
12 ':onos-drivers-lisp',
13]
14
15osgi_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
22onos_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)