blob: 75fb50c1541cc1ae1d1c85d176ea3a966a500ac3 [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",
6]
7
8BUNDLES = [
9 "//pipelines/fabric:onos-pipelines-fabric",
10]
11
12osgi_jar_with_tests(
Ray Milkey35ea5bf2018-07-17 15:28:44 -070013 test_deps = TEST_ADAPTERS,
14 deps = COMPILE_DEPS,
15)
16
17onos_app(
18 app_name = "org.onosproject.pipelines.fabric",
19 category = "Pipeline",
20 description = "Provides pipelines with CORD fabric underlay support.",
21 included_bundles = BUNDLES,
22 required_apps = [
23 "org.onosproject.drivers.p4runtime",
24 "org.onosproject.pipelines.basic",
25 ],
26 title = "Fabric Pipeline",
27 url = "http://onosproject.org",
28)