Additional bazel build files for apps

Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/test/demo/BUILD b/apps/test/demo/BUILD
new file mode 100644
index 0000000..16f06f0
--- /dev/null
+++ b/apps/test/demo/BUILD
@@ -0,0 +1,17 @@
+COMPILE_DEPS = CORE_DEPS + REST + JACKSON
+
+osgi_jar_with_tests(
+    api_description = "REST API for Demo",
+    api_package = "org.onosproject.demo",
+    api_title = "Flow Throughput Demo",
+    api_version = "1.0",
+    web_context = "/onos/demo",
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    category = "Test Utility",
+    description = "APIs for interacting with the flow throughput test application.",
+    title = "Flow Throughput Demo",
+    url = "http://onosproject.org",
+)