blob: 336d4b0edc9097980f9f2a522188fd1ea97c5df2 [file] [log] [blame]
Ray Milkeyf80bbb22016-03-11 10:16:22 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//drivers/utilities:onos-drivers-utilities',
Ray Milkey8dac8182016-04-28 16:44:19 -07004 '//protocols/ovsdb/api:onos-protocols-ovsdb-api',
5 '//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08006]
7
Ray Milkey61403ed2016-04-28 12:27:51 -07008TEST_DEPS = [
9 '//lib:TEST_ADAPTERS',
Ray Milkey8dac8182016-04-28 16:44:19 -070010 '//protocols/ovsdb/api:onos-protocols-ovsdb-api-tests',
Ray Milkey61403ed2016-04-28 12:27:51 -070011]
12
13osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080014 deps = COMPILE_DEPS,
Ray Milkey61403ed2016-04-28 12:27:51 -070015 test_deps = TEST_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080016 resources_root = 'src/main/resources',
17 resources = glob(['src/main/resources/**']),
18)
Ray Milkey61403ed2016-04-28 12:27:51 -070019
20onos_app (
Hyunsun Moondf6372b2016-07-07 17:37:20 -070021 app_name = 'org.onosproject.drivers.ovsdb',
Ray Milkey61403ed2016-04-28 12:27:51 -070022 title = 'OVSDB Device Drivers',
23 category = 'Drivers',
24 url = 'http://onosproject.org',
25 description = 'ONOS OVSDB Device Drivers application.',
26)