blob: 10eaf821608ae1902b63efbfe7dd5a87c6163926 [file] [log] [blame]
Ray Milkey4abe8442016-05-05 11:21:33 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
Ray Milkey446f4462017-08-17 15:36:01 -07003 '//lib:KRYO',
Ray Milkey4abe8442016-05-05 11:21:33 -07004 '//lib:openflowj',
Pier Ventrea0ceb9a2016-07-19 10:23:14 +02005 '//drivers/default:onos-drivers-default',
Ray Milkey4abe8442016-05-05 11:21:33 -07006 '//drivers/utilities:onos-drivers-utilities',
7 '//protocols/openflow/api:onos-protocols-openflow-api',
8]
9
Ray Milkeye022ef62016-06-08 15:17:19 -070010TEST_DEPS = [
11 '//lib:TEST_ADAPTERS',
12 '//core/api:onos-api-tests',
13]
14
Ray Milkey4abe8442016-05-05 11:21:33 -070015osgi_jar_with_tests (
16 deps = COMPILE_DEPS,
Ray Milkeye022ef62016-06-08 15:17:19 -070017 test_deps = TEST_DEPS,
Ray Milkey4abe8442016-05-05 11:21:33 -070018 resources_root = 'src/main/resources',
19 resources = glob(['src/main/resources/**']),
20)
21
22onos_app (
Jonathan Hart2f316af2016-08-02 13:53:37 -070023 app_name = 'org.onosproject.drivers.corsa',
Thomas Vachuskab0029682017-08-23 17:55:53 -070024 title = 'Corsa Drivers',
Ray Milkey4abe8442016-05-05 11:21:33 -070025 category = 'Drivers',
26 url = 'http://onosproject.org',
Thomas Vachuskab0029682017-08-23 17:55:53 -070027 description = 'Adds support for Corsa devices.',
Ray Milkey4abe8442016-05-05 11:21:33 -070028 required_apps = [ 'org.onosproject.openflow' ],
29)