Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//drivers/utilities:onos-drivers-utilities', |
Ray Milkey | aeb0079 | 2016-04-20 16:15:21 -0700 | [diff] [blame] | 4 | '//protocols/netconf/api:onos-protocols-netconf-api', |
xueliang | 37a396a | 2016-09-09 14:43:49 +0900 | [diff] [blame] | 5 | '//protocols/netconf/ctl:onos-protocols-netconf-ctl', |
Akihiro Yamanouchi | d491284 | 2016-07-01 10:38:46 +0900 | [diff] [blame] | 6 | '//lib:org.apache.karaf.shell.console', |
| 7 | '//cli:onos-cli', |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 8 | '//apps/optical-model:onos-apps-optical-model', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [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', |
| 14 | ] |
| 15 | |
Jonathan Hart | bbac354 | 2016-08-02 09:01:19 -0700 | [diff] [blame] | 16 | BUNDLES = [ |
| 17 | ':onos-drivers-fujitsu', |
| 18 | '//drivers/utilities:onos-drivers-utilities', |
| 19 | ] |
| 20 | |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 21 | osgi_jar_with_tests ( |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 22 | deps = COMPILE_DEPS, |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 23 | test_deps = TEST_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 24 | resources_root = 'src/main/resources', |
| 25 | resources = glob(['src/main/resources/**']), |
| 26 | ) |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 27 | |
| 28 | onos_app ( |
Jonathan Hart | bbac354 | 2016-08-02 09:01:19 -0700 | [diff] [blame] | 29 | app_name = 'org.onosproject.drivers.fujitsu', |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 30 | title = 'Fujitsu device drivers', |
| 31 | category = 'Drivers', |
| 32 | url = 'http://onosproject.org', |
| 33 | description = 'ONOS Fujitsu device drivers application.', |
Jonathan Hart | bbac354 | 2016-08-02 09:01:19 -0700 | [diff] [blame] | 34 | included_bundles = BUNDLES, |
HIGUCHI Yuta | f3ead25 | 2016-05-12 18:18:15 -0700 | [diff] [blame] | 35 | required_apps = [ 'org.onosproject.netconf', 'org.onosproject.optical-model' ], |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 36 | ) |