blob: cc06a125146fba5d9be065c7473e10dcc6e55cd0 [file] [log] [blame]
Ray Milkeyf80bbb22016-03-11 10:16:22 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:openflowj',
4 '//drivers/utilities:onos-drivers-utilities',
Ray Milkey8dac8182016-04-28 16:44:19 -07005 '//protocols/openflow/api:onos-protocols-openflow-api',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08006 '//core/store/serializers:onos-core-serializers',
Thejaswi N K46f36d22016-06-13 21:02:50 +05307 '//apps/bgpflowspec/flowapi:onos-apps-bgpflowspec-flowapi',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08008]
9
Ray Milkey841d3b42016-06-08 15:17:19 -070010TEST_DEPS = [
11 '//lib:TEST_ADAPTERS',
12 '//core/api:onos-api-tests',
13]
14
Ray Milkey61403ed2016-04-28 12:27:51 -070015osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080016 deps = COMPILE_DEPS,
Ray Milkey841d3b42016-06-08 15:17:19 -070017 test_deps = TEST_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080018 resources_root = 'src/main/resources',
19 resources = glob(['src/main/resources/**']),
20)
21
Ray Milkey61403ed2016-04-28 12:27:51 -070022onos_app (
Ray Milkey8dac8182016-04-28 16:44:19 -070023 app_name = 'org.onosproject.drivers',
Ray Milkey61403ed2016-04-28 12:27:51 -070024 title = 'Default device drivers',
25 category = 'Drivers',
26 url = 'http://onosproject.org',
27 description = 'ONOS Default device drivers application.',
Brian O'Connorbe27bb32016-04-29 16:55:44 -070028 included_bundles = [
29 ':onos-drivers-default',
30 '//lib:openflowj',
31 '//protocols/openflow/api:onos-protocols-openflow-api',
Thejaswi N K46f36d22016-06-13 21:02:50 +053032 '//apps/bgpflowspec/flowapi:onos-apps-bgpflowspec-flowapi',
Brian O'Connorbe27bb32016-04-29 16:55:44 -070033 ]
Ray Milkeyf80bbb22016-03-11 10:16:22 -080034)