blob: e64db2d9589be05cdb6d519203108a0c1aff9793 [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 Milkey61403ed2016-04-28 12:27:51 -07009osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080010 deps = COMPILE_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080011 resources_root = 'src/main/resources',
12 resources = glob(['src/main/resources/**']),
13)
14
Ray Milkey61403ed2016-04-28 12:27:51 -070015onos_app (
Ray Milkey8dac8182016-04-28 16:44:19 -070016 app_name = 'org.onosproject.drivers',
Ray Milkey61403ed2016-04-28 12:27:51 -070017 title = 'Default device drivers',
18 category = 'Drivers',
19 url = 'http://onosproject.org',
20 description = 'ONOS Default device drivers application.',
Brian O'Connorbe27bb32016-04-29 16:55:44 -070021 included_bundles = [
22 ':onos-drivers-default',
23 '//lib:openflowj',
24 '//protocols/openflow/api:onos-protocols-openflow-api',
25 ]
Ray Milkeyf80bbb22016-03-11 10:16:22 -080026)