Fabric pipeconf with Tofino support

Change-Id: If2f354c050e4b31cd1fbf17de53641350d0435f0
diff --git a/pipelines/fabric-hw/BUCK b/pipelines/fabric-hw/BUCK
new file mode 100644
index 0000000..d6b3978
--- /dev/null
+++ b/pipelines/fabric-hw/BUCK
@@ -0,0 +1,35 @@
+COMPILE_DEPS = [
+    '//lib:CORE_DEPS',
+    '//lib:KRYO',
+    '//protocols/p4runtime/model:onos-protocols-p4runtime-model',
+    '//protocols/p4runtime/api:onos-protocols-p4runtime-api',
+    '//pipelines/basic:onos-pipelines-basic',
+    '//pipelines/fabric:onos-pipelines-fabric',
+    '//core/store/serializers:onos-core-serializers',
+]
+
+TEST_DEPS = [
+    '//lib:TEST_ADAPTERS',
+]
+
+BUNDLES = [
+    '//pipelines/fabric-hw:onos-pipelines-fabric-hw',
+]
+
+osgi_jar_with_tests (
+    deps = COMPILE_DEPS,
+    test_deps = TEST_DEPS,
+)
+
+onos_app(
+    app_name = 'org.onosproject.pipelines.fabric-hw',
+    title = 'Fabric Pipeline',
+    category = 'Pipeline',
+    url = 'http://onosproject.org',
+    description = 'Provides CORD fabric pipelines for HW P4-enabled switches',
+    included_bundles = BUNDLES,
+    required_apps = [
+        'org.onosproject.drivers.p4runtime',
+        'org.onosproject.pipelines.fabric',
+    ]
+)