Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
Ray Milkey | 446f446 | 2017-08-17 15:36:01 -0700 | [diff] [blame] | 3 | '//lib:ONOS_YANG', |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 4 | '//drivers/utilities:onos-drivers-utilities', |
| 5 | '//protocols/netconf/api:onos-protocols-netconf-api', |
| 6 | '//protocols/netconf/ctl:onos-protocols-netconf-ctl', |
Sean Condon | 1dbcd71 | 2017-10-19 12:09:21 +0100 | [diff] [blame] | 7 | '//models/common:onos-models-common', |
Sean Condon | 06613e9 | 2017-06-09 15:14:01 +0100 | [diff] [blame] | 8 | '//models/microsemi:onos-models-microsemi', |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 9 | '//lib:org.apache.karaf.shell.console', |
Sean Condon | 6aad284 | 2018-02-26 23:16:36 +0000 | [diff] [blame] | 10 | '//apps/cfm/api:onos-apps-cfm-api', |
Sean Condon | 06613e9 | 2017-06-09 15:14:01 +0100 | [diff] [blame] | 11 | ] + YANG_TOOLS |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 12 | |
| 13 | TEST_DEPS = [ |
| 14 | '//lib:TEST_ADAPTERS', |
| 15 | '//core/api:onos-api-tests', |
| 16 | '//drivers/netconf:onos-drivers-netconf-tests', |
Sean Condon | 0e89bda | 2017-03-21 14:23:19 +0000 | [diff] [blame] | 17 | '//utils/osgi:onlab-osgi-tests', |
Sean Condon | 6aad284 | 2018-02-26 23:16:36 +0000 | [diff] [blame] | 18 | '//apps/cfm/app:onos-apps-cfm-app', |
| 19 | '//apps/cfm/app:onos-apps-cfm-app-tests', |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 20 | ] |
| 21 | |
Sean Condon | 06613e9 | 2017-06-09 15:14:01 +0100 | [diff] [blame] | 22 | APPS = [ |
| 23 | 'org.onosproject.yang', |
| 24 | # 'org.onosproject.yang-gui', |
| 25 | 'org.onosproject.config', |
| 26 | 'org.onosproject.netconf', |
| 27 | 'org.onosproject.netconfsb', |
| 28 | 'org.onosproject.drivers.netconf', |
Sean Condon | 1dbcd71 | 2017-10-19 12:09:21 +0100 | [diff] [blame] | 29 | 'org.onosproject.models.common', |
Sean Condon | 6aad284 | 2018-02-26 23:16:36 +0000 | [diff] [blame] | 30 | 'org.onosproject.models.microsemi', |
| 31 | 'org.onosproject.cfm', |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 32 | ] |
| 33 | |
| 34 | osgi_jar_with_tests ( |
| 35 | deps = COMPILE_DEPS, |
| 36 | test_deps = TEST_DEPS, |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 37 | resources_root = 'src/main/resources', |
| 38 | resources = glob(['src/main/resources/**']), |
| 39 | ) |
| 40 | |
| 41 | onos_app ( |
| 42 | app_name = 'org.onosproject.drivers.microsemi', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 43 | title = 'Microsemi Drivers', |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 44 | category = 'Drivers', |
| 45 | url = 'http://onosproject.org', |
Thomas Vachuska | b002968 | 2017-08-23 17:55:53 -0700 | [diff] [blame] | 46 | description = 'Adds support for Microsemi devices.', |
Sean Condon | 06613e9 | 2017-06-09 15:14:01 +0100 | [diff] [blame] | 47 | required_apps = APPS, |
Sean Condon | fae8e66 | 2016-12-15 10:25:13 +0000 | [diff] [blame] | 48 | ) |