HIGUCHI Yuta | 07a9e56 | 2016-05-23 16:41:17 -0700 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 3 | '//lib:NETTY', |
| 4 | '//lib:JACKSON', |
HIGUCHI Yuta | 07a9e56 | 2016-05-23 16:41:17 -0700 | [diff] [blame] | 5 | '//lib:openflowj', |
| 6 | '//protocols/openflow/api:onos-protocols-openflow-api', |
| 7 | '//drivers/default:onos-drivers-default', |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 8 | '//apps/optical-model:onos-apps-optical-model', |
HIGUCHI Yuta | 07a9e56 | 2016-05-23 16:41:17 -0700 | [diff] [blame] | 9 | ] |
| 10 | |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 11 | TEST_DEPS = [ |
| 12 | '//lib:TEST_ADAPTERS', |
| 13 | '//core/api:onos-api-tests', |
Yuta HIGUCHI | 44f18e9 | 2017-03-02 22:05:41 -0800 | [diff] [blame] | 14 | '//utils/osgi:onlab-osgi-tests', |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 15 | ] |
| 16 | |
HIGUCHI Yuta | 07a9e56 | 2016-05-23 16:41:17 -0700 | [diff] [blame] | 17 | osgi_jar_with_tests ( |
| 18 | deps = COMPILE_DEPS, |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 19 | test_deps = TEST_DEPS, |
HIGUCHI Yuta | 07a9e56 | 2016-05-23 16:41:17 -0700 | [diff] [blame] | 20 | resources_root = 'src/main/resources', |
| 21 | resources = glob(['src/main/resources/**']), |
| 22 | ) |
| 23 | |
| 24 | onos_app ( |
Jonathan Hart | bbac354 | 2016-08-02 09:01:19 -0700 | [diff] [blame] | 25 | app_name = 'org.onosproject.drivers.optical', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 26 | title = 'Basic Optical Drivers', |
HIGUCHI Yuta | 07a9e56 | 2016-05-23 16:41:17 -0700 | [diff] [blame] | 27 | category = 'Drivers', |
| 28 | url = 'http://onosproject.org', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 29 | description = 'Suite of basic optical device drivers.', |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 30 | required_apps = [ 'org.onosproject.drivers', 'org.onosproject.optical-model' ], |
HIGUCHI Yuta | 07a9e56 | 2016-05-23 16:41:17 -0700 | [diff] [blame] | 31 | ) |