blob: 95b2d44bd473970a9090b89831065b78136c5afb [file] [log] [blame]
Andrea Campanella241896c2017-05-10 13:11:04 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3]
4
5TEST_DEPS = [
6 '//lib:TEST_ADAPTERS',
7 '//core/api:onos-api-tests',
8]
9
10BUNDLES = [
11 ':onos-drivers-bmv2',
12]
13
14osgi_jar_with_tests (
15 deps = COMPILE_DEPS,
16 test_deps = TEST_DEPS,
17 resources_root = 'src/main/resources',
18 resources = glob(['src/main/resources/**']),
19)
20
21onos_app (
22 app_name = 'org.onosproject.drivers.bmv2',
23 title = 'bmv2 Device Drivers',
24 category = 'Drivers',
25 url = 'http://onosproject.org',
26 description = 'ONOS BMv2 Device Drivers application.',
27 included_bundles = BUNDLES,
28 required_apps = [ 'org.onosproject.generaldeviceprovider' ],
29)