Laszlo Papp | 8645523 | 2018-03-13 14:32:56 +0000 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//lib:openflowj', |
| 4 | '//protocols/openflow/api:onos-protocols-openflow-api', |
| 5 | '//apps/optical-model:onos-apps-optical-model', |
| 6 | ] |
| 7 | |
| 8 | APPS = [ |
| 9 | 'org.onosproject.drivers.optical', |
| 10 | 'org.onosproject.optical-model', |
| 11 | ] |
| 12 | |
| 13 | TEST_DEPS = [ |
| 14 | '//lib:TEST_ADAPTERS', |
| 15 | '//core/api:onos-api-tests', |
| 16 | '//utils/osgi:onlab-osgi-tests', |
| 17 | ] |
| 18 | |
| 19 | osgi_jar_with_tests ( |
| 20 | deps = COMPILE_DEPS, |
| 21 | test_deps = TEST_DEPS, |
| 22 | resources_root = 'src/main/resources', |
| 23 | resources = glob(['src/main/resources/**']), |
| 24 | ) |
| 25 | |
| 26 | onos_app ( |
| 27 | app_name = 'org.onosproject.drivers.polatis.openflow', |
| 28 | title = 'Polatis OpenFlow Device Drivers', |
| 29 | category = 'Drivers', |
| 30 | url = 'http://www.polatis.com', |
| 31 | description = 'ONOS Polatis OpenFlow Device Drivers application.', |
| 32 | required_apps = APPS |
| 33 | ) |
| 34 | |