blob: f132524fd50042cfa48476ab371c43c7ebe8644e [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',
7]
8
Ray Milkeye022ef62016-06-08 15:17:19 -07009TEST_DEPS = [
10 '//lib:TEST_ADAPTERS',
11 '//core/api:onos-api-tests',
12]
13
Ray Milkey61403ed2016-04-28 12:27:51 -070014osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080015 deps = COMPILE_DEPS,
Ray Milkeye022ef62016-06-08 15:17:19 -070016 test_deps = TEST_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080017 resources_root = 'src/main/resources',
18 resources = glob(['src/main/resources/**']),
19)
20
Ray Milkey61403ed2016-04-28 12:27:51 -070021onos_app (
Ray Milkey8dac8182016-04-28 16:44:19 -070022 app_name = 'org.onosproject.drivers',
Ray Milkey61403ed2016-04-28 12:27:51 -070023 title = 'Default device drivers',
24 category = 'Drivers',
25 url = 'http://onosproject.org',
26 description = 'ONOS Default device drivers application.',
Brian O'Connorbe27bb32016-04-29 16:55:44 -070027 included_bundles = [
28 ':onos-drivers-default',
29 '//lib:openflowj',
30 '//protocols/openflow/api:onos-protocols-openflow-api',
31 ]
Ray Milkeyf80bbb22016-03-11 10:16:22 -080032)