Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame^] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
| 3 | '//protocols/p4runtime/model:onos-protocols-p4runtime-model', |
| 4 | '//protocols/p4runtime/api:onos-protocols-p4runtime-api', |
| 5 | '//pipelines/basic:onos-pipelines-basic', |
| 6 | ] |
| 7 | |
| 8 | TEST_DEPS = [ |
| 9 | '//lib:TEST_ADAPTERS', |
| 10 | ] |
| 11 | |
| 12 | BUNDLES = [ |
| 13 | '//pipelines/fabric:onos-pipelines-fabric', |
| 14 | ] |
| 15 | |
| 16 | osgi_jar_with_tests ( |
| 17 | deps = COMPILE_DEPS, |
| 18 | test_deps = TEST_DEPS, |
| 19 | ) |
| 20 | |
| 21 | onos_app( |
| 22 | app_name = 'org.onosproject.pipelines.fabric', |
| 23 | title = 'Fabric Pipeline', |
| 24 | category = 'Pipeline', |
| 25 | url = 'http://onosproject.org', |
| 26 | description = 'Provides pipelines with CORD fabric underlay support.', |
| 27 | included_bundles = BUNDLES, |
| 28 | required_apps = [ |
| 29 | 'org.onosproject.drivers.p4runtime', |
| 30 | ] |
| 31 | ) |