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', |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 8 | ] |
| 9 | |
| 10 | TEST_DEPS = [ |
| 11 | '//lib:TEST_ADAPTERS', |
| 12 | ] |
| 13 | |
| 14 | BUNDLES = [ |
| 15 | '//pipelines/fabric:onos-pipelines-fabric', |
| 16 | ] |
| 17 | |
| 18 | osgi_jar_with_tests ( |
| 19 | deps = COMPILE_DEPS, |
| 20 | test_deps = TEST_DEPS, |
| 21 | ) |
| 22 | |
| 23 | onos_app( |
| 24 | app_name = 'org.onosproject.pipelines.fabric', |
| 25 | title = 'Fabric Pipeline', |
| 26 | category = 'Pipeline', |
| 27 | url = 'http://onosproject.org', |
| 28 | description = 'Provides pipelines with CORD fabric underlay support.', |
| 29 | included_bundles = BUNDLES, |
| 30 | required_apps = [ |
| 31 | 'org.onosproject.drivers.p4runtime', |
Yi Tseng | 54bd8b2 | 2017-12-08 20:22:21 -0800 | [diff] [blame] | 32 | 'org.onosproject.pipelines.basic', |
Yi Tseng | be34205 | 2017-11-03 10:21:23 -0700 | [diff] [blame] | 33 | ] |
| 34 | ) |