Additional bazel build files for apps

Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/bgprouter/BUILD b/apps/bgprouter/BUILD
new file mode 100644
index 0000000..d1a3ba2
--- /dev/null
+++ b/apps/bgprouter/BUILD
@@ -0,0 +1,26 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + [
+    "//incubator/api:onos-incubator-api",
+    "//apps/routing-api:onos-apps-routing-api",
+]
+
+BUNDLES = [
+    "//apps/routing-api:onos-apps-routing-api",
+    "//apps/routing/common:onos-apps-routing-common",
+    "//apps/bgprouter:onos-apps-bgprouter",
+]
+
+osgi_jar(
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    category = "Traffic Engineering",
+    description = "BGP router application.",
+    included_bundles = BUNDLES,
+    required_apps = [
+        "org.onosproject.fibinstaller",
+        "org.onosproject.route-service",
+    ],
+    title = "BGP Router",
+    url = "http://onosproject.org",
+)