Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 1 | COMPILE_DEPS = [ |
| 2 | '//lib:CORE_DEPS', |
Yi Tseng | 0b80972 | 2017-11-03 10:23:26 -0700 | [diff] [blame] | 3 | '//lib:KRYO', |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 4 | '//protocols/p4runtime/model:onos-protocols-p4runtime-model', |
| 5 | '//protocols/p4runtime/api:onos-protocols-p4runtime-api', |
| 6 | '//pipelines/basic:onos-pipelines-basic', |
Yi Tseng | 0b80972 | 2017-11-03 10:23:26 -0700 | [diff] [blame] | 7 | '//core/store/serializers:onos-core-serializers', |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 8 | '//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api', |
Carmelo Cascone | fa42158 | 2018-09-13 10:05:57 -0700 | [diff] [blame] | 9 | '//providers/general/device:onos-providers-general-device', |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 10 | ] |
| 11 | |
| 12 | TEST_DEPS = [ |
| 13 | '//lib:TEST_ADAPTERS', |
| 14 | ] |
| 15 | |
| 16 | BUNDLES = [ |
| 17 | '//pipelines/fabric:onos-pipelines-fabric', |
Jonghwan Hyun | ed478dc | 2018-08-06 15:35:18 +0900 | [diff] [blame] | 18 | '//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api', |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 19 | ] |
| 20 | |
| 21 | osgi_jar_with_tests ( |
| 22 | deps = COMPILE_DEPS, |
| 23 | test_deps = TEST_DEPS, |
| 24 | ) |
| 25 | |
| 26 | onos_app( |
| 27 | app_name = 'org.onosproject.pipelines.fabric', |
| 28 | title = 'Fabric Pipeline', |
| 29 | category = 'Pipeline', |
| 30 | url = 'http://onosproject.org', |
| 31 | description = 'Provides pipelines with CORD fabric underlay support.', |
| 32 | included_bundles = BUNDLES, |
| 33 | required_apps = [ |
| 34 | 'org.onosproject.drivers.p4runtime', |
Yi Tseng | 54bd8b2 | 2017-12-08 20:22:21 -0800 | [diff] [blame] | 35 | 'org.onosproject.pipelines.basic', |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 36 | ] |
| 37 | ) |