More p4runtime-related bazel build files

Change-Id: Icdd02a06d7905e4cd0a6c61d282fd522c7b75fe7
diff --git a/apps/p4-tutorial/mytunnel/BUILD b/apps/p4-tutorial/mytunnel/BUILD
new file mode 100644
index 0000000..415084e
--- /dev/null
+++ b/apps/p4-tutorial/mytunnel/BUILD
@@ -0,0 +1,23 @@
+COMPILE_DEPS = CORE_DEPS + [
+    "//apps/p4-tutorial/pipeconf:onos-apps-p4-tutorial-pipeconf",
+]
+
+osgi_jar (
+    deps = COMPILE_DEPS,
+)
+
+BUNDLES = [
+    "//apps/p4-tutorial/mytunnel:onos-apps-p4-tutorial-mytunnel",
+]
+
+onos_app (
+    app_name = "org.onosproject.p4tutorial.mytunnel",
+    title = "MyTunnel Demo App",
+    category = "Traffic Engineering",
+    url = "http://onosproject.org",
+    description = "Provides forwarding between each pair of hosts via MyTunnel protocol",
+    included_bundles = BUNDLES,
+    required_apps = [
+        "org.onosproject.p4tutorial.pipeconf",
+    ]
+)