blob: 06b0ab4d19ba7701a69a54eca01836b159067581 [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(
13 exclude_tests = ["org/onosproject/pipelines/fabric/pipeliner/FabricPipelinerTest"],
14 test_deps = TEST_ADAPTERS,
15 deps = COMPILE_DEPS,
16)
17
18onos_app(
19 app_name = "org.onosproject.pipelines.fabric",
20 category = "Pipeline",
21 description = "Provides pipelines with CORD fabric underlay support.",
22 included_bundles = BUNDLES,
23 required_apps = [
24 "org.onosproject.drivers.p4runtime",
25 "org.onosproject.pipelines.basic",
26 ],
27 title = "Fabric Pipeline",
28 url = "http://onosproject.org",
29)