blob: efc383572ccb99a826a50d945f9bdd0dc9949545 [file] [log] [blame]
Ray Milkeyf80bbb22016-03-11 10:16:22 -08001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
fahadnaeemkhana62bd2f2017-10-11 12:39:55 -07003 '//lib:JACKSON',
fahadnaeemkhan4b6731a2017-10-18 11:13:02 -07004 '//lib:javax.ws.rs-api',
Ray Milkeyf80bbb22016-03-11 10:16:22 -08005 '//incubator/api:onos-incubator-api',
6 '//utils/rest:onlab-rest',
7 '//drivers/utilities:onos-drivers-utilities',
Ray Milkey12c1d512016-04-25 15:16:00 -07008 '//protocols/rest/api:onos-protocols-rest-api',
HIGUCHI Yutaf3ead252016-05-12 18:18:15 -07009 '//apps/optical-model:onos-apps-optical-model',
fahadnaeemkhan71827242017-09-21 15:10:07 -070010 '//drivers/optical:onos-drivers-optical',
Ray Milkeyf80bbb22016-03-11 10:16:22 -080011]
12
Ray Milkeye022ef62016-06-08 15:17:19 -070013TEST_DEPS = [
14 '//lib:TEST_ADAPTERS',
15 '//core/api:onos-api-tests',
16]
17
Jonathan Hartbbac3542016-08-02 09:01:19 -070018BUNDLES = [
19 ':onos-drivers-ciena',
20 '//drivers/utilities:onos-drivers-utilities',
21]
22
fahadnaeemkhan4b6731a2017-10-18 11:13:02 -070023REQUIRED_APPS = [
24 'org.onosproject.restsb',
25 'org.onosproject.optical-model',
26 'org.onosproject.drivers.optical',
27]
28
Ray Milkey61403ed2016-04-28 12:27:51 -070029osgi_jar_with_tests (
Ray Milkeyf80bbb22016-03-11 10:16:22 -080030 deps = COMPILE_DEPS,
Ray Milkeye022ef62016-06-08 15:17:19 -070031 test_deps = TEST_DEPS,
Ray Milkeyf80bbb22016-03-11 10:16:22 -080032 resources_root = 'src/main/resources',
33 resources = glob(['src/main/resources/**']),
34)
Ray Milkey61403ed2016-04-28 12:27:51 -070035
36onos_app (
Jonathan Hartbbac3542016-08-02 09:01:19 -070037 app_name = 'org.onosproject.drivers.ciena',
Thomas Vachuskab0029682017-08-23 17:55:53 -070038 title = 'Ciena Drivers',
Ray Milkey61403ed2016-04-28 12:27:51 -070039 category = 'Drivers',
40 url = 'http://onosproject.org',
Thomas Vachuskab0029682017-08-23 17:55:53 -070041 description = 'Adds support for Ciena devices.',
Jonathan Hartbbac3542016-08-02 09:01:19 -070042 included_bundles = BUNDLES,
fahadnaeemkhan4b6731a2017-10-18 11:13:02 -070043 required_apps = REQUIRED_APPS,
Ray Milkey61403ed2016-04-28 12:27:51 -070044)