blob: c356aae99bda4062d274137d290ce561a23bcba6 [file] [log] [blame]
Ray Milkey35ea5bf2018-07-17 15:28:44 -07001COMPILE_DEPS = CORE_DEPS + KRYO + [
2 "//protocols/p4runtime/model:onos-protocols-p4runtime-model",
3 "//protocols/p4runtime/api:onos-protocols-p4runtime-api",
4 "//pipelines/basic:onos-pipelines-basic",
5 "//core/store/serializers:onos-core-serializers",
Jonghwan Hyuned478dc2018-08-06 15:35:18 +09006 "//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07007]
8
9BUNDLES = [
10 "//pipelines/fabric:onos-pipelines-fabric",
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090011 "//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api",
Ray Milkey35ea5bf2018-07-17 15:28:44 -070012]
13
14osgi_jar_with_tests(
Ray Milkey35ea5bf2018-07-17 15:28:44 -070015 test_deps = TEST_ADAPTERS,
16 deps = COMPILE_DEPS,
17)
18
19onos_app(
20 app_name = "org.onosproject.pipelines.fabric",
21 category = "Pipeline",
22 description = "Provides pipelines with CORD fabric underlay support.",
23 included_bundles = BUNDLES,
24 required_apps = [
25 "org.onosproject.drivers.p4runtime",
26 "org.onosproject.pipelines.basic",
27 ],
28 title = "Fabric Pipeline",
29 url = "http://onosproject.org",
30)