Additional bazel build files for apps

Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/drivermatrix/BUILD b/apps/drivermatrix/BUILD
new file mode 100644
index 0000000..2b6950c
--- /dev/null
+++ b/apps/drivermatrix/BUILD
@@ -0,0 +1,15 @@
+COMPILE_DEPS = CORE_DEPS + CLI + JACKSON
+
+osgi_jar_with_tests(
+    resources = glob(["src/main/resources/**"]),
+    resources_root = "src/main/resources",
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    category = "GUI",
+    description = "Extends the ONOS GUI with a view that allows the operator to visualize " +
+                  "the currently loaded drivers.",
+    title = "Driver Support Matrix",
+    url = "http://onosproject.org",
+)