Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//incubator/api:onos-incubator-api', |
| 4 | '//utils/rest:onlab-rest', |
| 5 | '//drivers/utilities:onos-drivers-utilities', |
Ray Milkey | 12c1d51 | 2016-04-25 15:16:00 -0700 | [diff] [blame] | 6 | '//protocols/rest/api:onos-protocols-rest-api', |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 7 | '//apps/optical-model:onos-apps-optical-model', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 8 | ] |
| 9 | |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 10 | TEST_DEPS = [ |
| 11 | '//lib:TEST_ADAPTERS', |
| 12 | '//core/api:onos-api-tests', |
| 13 | ] |
| 14 | |
Jonathan Hart | bbac354 | 2016-08-02 09:01:19 -0700 | [diff] [blame] | 15 | BUNDLES = [ |
| 16 | ':onos-drivers-ciena', |
| 17 | '//drivers/utilities:onos-drivers-utilities', |
| 18 | ] |
| 19 | |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 20 | osgi_jar_with_tests ( |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 21 | deps = COMPILE_DEPS, |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 22 | test_deps = TEST_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 23 | resources_root = 'src/main/resources', |
| 24 | resources = glob(['src/main/resources/**']), |
| 25 | ) |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 26 | |
| 27 | onos_app ( |
Jonathan Hart | bbac354 | 2016-08-02 09:01:19 -0700 | [diff] [blame] | 28 | app_name = 'org.onosproject.drivers.ciena', |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 29 | title = 'Ciena Device Drivers', |
| 30 | category = 'Drivers', |
| 31 | url = 'http://onosproject.org', |
| 32 | description = 'ONOS Ciena Device Drivers application.', |
Jonathan Hart | bbac354 | 2016-08-02 09:01:19 -0700 | [diff] [blame] | 33 | included_bundles = BUNDLES, |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 34 | required_apps = [ 'org.onosproject.restsb', 'org.onosproject.optical-model' ], |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 35 | ) |