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