blob: dde49d30e3ea986d876734731424161f40a2c1dd [file] [log] [blame]
Ray Milkey4abe8442016-05-05 11:21:33 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:openflowj',
Pier Ventrea0ceb9a2016-07-19 10:23:14 +02004 '//drivers/default:onos-drivers-default',
Ray Milkey4abe8442016-05-05 11:21:33 -07005 '//drivers/utilities:onos-drivers-utilities',
6 '//protocols/openflow/api:onos-protocols-openflow-api',
7]
8
Ray Milkeye022ef62016-06-08 15:17:19 -07009TEST_DEPS = [
10 '//lib:TEST_ADAPTERS',
11 '//core/api:onos-api-tests',
12]
13
Ray Milkey4abe8442016-05-05 11:21:33 -070014osgi_jar_with_tests (
15 deps = COMPILE_DEPS,
Ray Milkeye022ef62016-06-08 15:17:19 -070016 test_deps = TEST_DEPS,
Ray Milkey4abe8442016-05-05 11:21:33 -070017 resources_root = 'src/main/resources',
18 resources = glob(['src/main/resources/**']),
19)
20
21onos_app (
Jonathan Hart2f316af2016-08-02 13:53:37 -070022 app_name = 'org.onosproject.drivers.corsa',
Ray Milkey4abe8442016-05-05 11:21:33 -070023 title = 'Corsa device drivers',
24 category = 'Drivers',
25 url = 'http://onosproject.org',
26 description = 'ONOS Corsa device drivers application.',
27 required_apps = [ 'org.onosproject.openflow' ],
28)