Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//lib:openflowj', |
| 4 | '//drivers/utilities:onos-drivers-utilities', |
Ray Milkey | 8dac818 | 2016-04-28 16:44:19 -0700 | [diff] [blame] | 5 | '//protocols/openflow/api:onos-protocols-openflow-api', |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 6 | '//core/store/serializers:onos-core-serializers', |
| 7 | ] |
| 8 | |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 9 | TEST_DEPS = [ |
| 10 | '//lib:TEST_ADAPTERS', |
| 11 | '//core/api:onos-api-tests', |
| 12 | ] |
| 13 | |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 14 | osgi_jar_with_tests ( |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 15 | deps = COMPILE_DEPS, |
Ray Milkey | e022ef6 | 2016-06-08 15:17:19 -0700 | [diff] [blame] | 16 | test_deps = TEST_DEPS, |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 17 | resources_root = 'src/main/resources', |
| 18 | resources = glob(['src/main/resources/**']), |
| 19 | ) |
| 20 | |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 21 | onos_app ( |
Ray Milkey | 8dac818 | 2016-04-28 16:44:19 -0700 | [diff] [blame] | 22 | app_name = 'org.onosproject.drivers', |
Ray Milkey | 61403ed | 2016-04-28 12:27:51 -0700 | [diff] [blame] | 23 | title = 'Default device drivers', |
| 24 | category = 'Drivers', |
| 25 | url = 'http://onosproject.org', |
| 26 | description = 'ONOS Default device drivers application.', |
Brian O'Connor | be27bb3 | 2016-04-29 16:55:44 -0700 | [diff] [blame] | 27 | included_bundles = [ |
| 28 | ':onos-drivers-default', |
| 29 | '//lib:openflowj', |
| 30 | '//protocols/openflow/api:onos-protocols-openflow-api', |
| 31 | ] |
Ray Milkey | f80bbb2 | 2016-03-11 10:16:22 -0800 | [diff] [blame] | 32 | ) |