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