blob: 168e9d81d09afdfc372e642fcdec4fccaa1f629b [file] [log] [blame]
Yi Tsengbe342052017-11-03 10:21:23 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
Yi Tseng0b809722017-11-03 10:23:26 -07003 '//lib:KRYO',
Yi Tsengbe342052017-11-03 10:21:23 -07004 '//protocols/p4runtime/model:onos-protocols-p4runtime-model',
5 '//protocols/p4runtime/api:onos-protocols-p4runtime-api',
6 '//pipelines/basic:onos-pipelines-basic',
Yi Tseng0b809722017-11-03 10:23:26 -07007 '//core/store/serializers:onos-core-serializers',
Jonghwan Hyuned478dc2018-08-06 15:35:18 +09008 '//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api',
Yi Tsengbe342052017-11-03 10:21:23 -07009]
10
11TEST_DEPS = [
12 '//lib:TEST_ADAPTERS',
13]
14
15BUNDLES = [
16 '//pipelines/fabric:onos-pipelines-fabric',
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090017 '//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api',
Yi Tsengbe342052017-11-03 10:21:23 -070018]
19
20osgi_jar_with_tests (
21 deps = COMPILE_DEPS,
22 test_deps = TEST_DEPS,
23)
24
25onos_app(
26 app_name = 'org.onosproject.pipelines.fabric',
27 title = 'Fabric Pipeline',
28 category = 'Pipeline',
29 url = 'http://onosproject.org',
30 description = 'Provides pipelines with CORD fabric underlay support.',
31 included_bundles = BUNDLES,
32 required_apps = [
33 'org.onosproject.drivers.p4runtime',
Yi Tseng54bd8b22017-12-08 20:22:21 -080034 'org.onosproject.pipelines.basic',
Yi Tsengbe342052017-11-03 10:21:23 -070035 ]
36)