Additional bazel build files for apps

Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/routing/fibinstaller/BUILD b/apps/routing/fibinstaller/BUILD
new file mode 100644
index 0000000..46946a7
--- /dev/null
+++ b/apps/routing/fibinstaller/BUILD
@@ -0,0 +1,31 @@
+COMPILE_DEPS = CORE_DEPS + [
+    "//incubator/api:onos-incubator-api",
+    "//apps/routing-api:onos-apps-routing-api",
+    "//apps/route-service/api:onos-apps-route-service-api",
+]
+
+TEST_DEPS = TEST_ADAPTERS + [
+    "//incubator/api:onos-incubator-api-tests",
+    "//apps/routing-api:onos-apps-routing-api-tests",
+    "//apps/route-service/api:onos-apps-route-service-api-tests",
+]
+
+osgi_jar_with_tests(
+    test_deps = TEST_DEPS,
+    deps = COMPILE_DEPS,
+)
+
+BUNDLES = [
+    "//apps/routing/fibinstaller:onos-apps-routing-fibinstaller",
+    "//apps/routing-api:onos-apps-routing-api",
+]
+
+onos_app(
+    app_name = "org.onosproject.fibinstaller",
+    category = "Traffic Engineering",
+    description = "Installs routing rules into switches",
+    included_bundles = BUNDLES,
+    required_apps = ["org.onosproject.route-service"],
+    title = "FIB Installer",
+    url = "http://onosproject.org",
+)