More p4runtime-related bazel build files

Change-Id: Icdd02a06d7905e4cd0a6c61d282fd522c7b75fe7
diff --git a/apps/p4-tutorial/pipeconf/BUILD b/apps/p4-tutorial/pipeconf/BUILD
new file mode 100644
index 0000000..2a39cbb
--- /dev/null
+++ b/apps/p4-tutorial/pipeconf/BUILD
@@ -0,0 +1,26 @@
+COMPILE_DEPS = CORE_DEPS + [
+    "@minimal_json//jar",
+    "//protocols/p4runtime/model:onos-protocols-p4runtime-model",
+    "//protocols/p4runtime/api:onos-protocols-p4runtime-api",
+    "//drivers/default:onos-drivers-default",
+]
+
+osgi_jar (
+    deps = COMPILE_DEPS,
+)
+
+BUNDLES = [
+    "//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf",
+]
+
+onos_app (
+    app_name = "org.onosproject.p4tutorial.pipeconf",
+    title = "P4 Tutorial Pipeconf",
+    category = "Pipeconf",
+    url = "http://onosproject.org",
+    description = "Provides pipeconf for the ONOS-P4 Tutorial",
+    included_bundles = BUNDLES,
+    required_apps = [
+        "org.onosproject.drivers.p4runtime",
+    ]
+)