blob: 7590eb28602e71ecc4ff63f22ccb84dd85729558 [file] [log] [blame]
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +05301COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
Ray Milkey446f4462017-08-17 15:36:01 -07003 '//lib:KRYO',
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +05304 '//drivers/default:onos-drivers-default',
5 '//apps/flowspec-api/flowapi:onos-apps-flowspec-api-flowapi',
6]
7
8TEST_DEPS = [
9 '//lib:TEST_ADAPTERS',
10 '//core/api:onos-api-tests',
11]
12
13osgi_jar_with_tests (
14 deps = COMPILE_DEPS,
15 test_deps = TEST_DEPS,
16 resources_root = 'src/main/resources',
17 resources = glob(['src/main/resources/**']),
18)
19
20onos_app (
21 app_name = 'org.onosproject.drivers.flowspec',
Thomas Vachuskab0029682017-08-23 17:55:53 -070022 title = 'Generic Flow Spec Drivers',
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +053023 category = 'Drivers',
24 url = 'http://onosproject.org',
Thomas Vachuskab0029682017-08-23 17:55:53 -070025 description = 'Adds support for devices using flow specs.',
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +053026 required_apps = [ 'org.onosproject.drivers'],
27)