[ONOS-7128] Initial commit of fabric.p4
Change-Id: I5224c411a1eccdbee84b1fc0b1824c5fa922f689
diff --git a/pipelines/fabric/BUCK b/pipelines/fabric/BUCK
new file mode 100644
index 0000000..114701d
--- /dev/null
+++ b/pipelines/fabric/BUCK
@@ -0,0 +1,31 @@
+COMPILE_DEPS = [
+ '//lib:CORE_DEPS',
+ '//protocols/p4runtime/model:onos-protocols-p4runtime-model',
+ '//protocols/p4runtime/api:onos-protocols-p4runtime-api',
+ '//pipelines/basic:onos-pipelines-basic',
+]
+
+TEST_DEPS = [
+ '//lib:TEST_ADAPTERS',
+]
+
+BUNDLES = [
+ '//pipelines/fabric:onos-pipelines-fabric',
+]
+
+osgi_jar_with_tests (
+ deps = COMPILE_DEPS,
+ test_deps = TEST_DEPS,
+)
+
+onos_app(
+ app_name = 'org.onosproject.pipelines.fabric',
+ title = 'Fabric Pipeline',
+ category = 'Pipeline',
+ url = 'http://onosproject.org',
+ description = 'Provides pipelines with CORD fabric underlay support.',
+ included_bundles = BUNDLES,
+ required_apps = [
+ 'org.onosproject.drivers.p4runtime',
+ ]
+)