Bazel build for STC runs

Change-Id: I75806c0cb5b71402b7e3519a84498f8e05a9cf8a
diff --git a/apps/routing/fpm/BUILD b/apps/routing/fpm/BUILD
new file mode 100644
index 0000000..bcf45df
--- /dev/null
+++ b/apps/routing/fpm/BUILD
@@ -0,0 +1,16 @@
+BUNDLES = [
+    "//apps/routing/common:onos-apps-routing-common",
+    "//apps/routing-api:onos-apps-routing-api",
+    "//apps/routing/fpm/api:onos-apps-routing-fpm-api",
+    "//apps/routing/fpm/app:onos-apps-routing-fpm-app",
+]
+
+onos_app(
+    app_name = "org.onosproject.fpm",
+    category = "Utility",
+    description = "Receives/Transmits routes from external routing daemon over FPM protocol",
+    included_bundles = BUNDLES,
+    required_apps = ["org.onosproject.route-service"],
+    title = "FIB Push Manager (FPM) Route Receiver",
+    url = "http://onosproject.org",
+)