blob: 9315ae0c739899fffdc157a99574d2095b4cb8a2 [file] [log] [blame]
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +05301COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//drivers/default:onos-drivers-default',
4 '//apps/flowspec-api/flowapi:onos-apps-flowspec-api-flowapi',
5]
6
7TEST_DEPS = [
8 '//lib:TEST_ADAPTERS',
9 '//core/api:onos-api-tests',
10]
11
12osgi_jar_with_tests (
13 deps = COMPILE_DEPS,
14 test_deps = TEST_DEPS,
15 resources_root = 'src/main/resources',
16 resources = glob(['src/main/resources/**']),
17)
18
19onos_app (
20 app_name = 'org.onosproject.drivers.flowspec',
Thomas Vachuska7c45e282017-08-23 17:55:53 -070021 title = 'Generic Flow Spec Drivers',
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +053022 category = 'Drivers',
23 url = 'http://onosproject.org',
Thomas Vachuska7c45e282017-08-23 17:55:53 -070024 description = 'Adds support for devices using flow specs.',
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +053025 required_apps = [ 'org.onosproject.drivers'],
26)