blob: 11dad5684f107e2849843ac5a66852f78f7526f3 [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",
Carmelo Casconefa421582018-09-13 10:05:57 -07004 "//providers/general/device:onos-providers-general-device",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07005 "//pipelines/basic:onos-pipelines-basic",
6 "//core/store/serializers:onos-core-serializers",
Jonghwan Hyuned478dc2018-08-06 15:35:18 +09007 "//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api",
Ray Milkey35ea5bf2018-07-17 15:28:44 -07008]
9
10BUNDLES = [
11 "//pipelines/fabric:onos-pipelines-fabric",
Jonghwan Hyuned478dc2018-08-06 15:35:18 +090012 "//apps/inbandtelemetry/api:onos-apps-inbandtelemetry-api",
Ray Milkey35ea5bf2018-07-17 15:28:44 -070013]
14
15osgi_jar_with_tests(
Ray Milkey35ea5bf2018-07-17 15:28:44 -070016 test_deps = TEST_ADAPTERS,
17 deps = COMPILE_DEPS,
18)
19
20onos_app(
21 app_name = "org.onosproject.pipelines.fabric",
22 category = "Pipeline",
23 description = "Provides pipelines with CORD fabric underlay support.",
24 included_bundles = BUNDLES,
25 required_apps = [
26 "org.onosproject.drivers.p4runtime",
27 "org.onosproject.pipelines.basic",
28 ],
29 title = "Fabric Pipeline",
30 url = "http://onosproject.org",
31)