Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/vrouter/BUILD b/apps/vrouter/BUILD
new file mode 100644
index 0000000..e6cc635
--- /dev/null
+++ b/apps/vrouter/BUILD
@@ -0,0 +1,26 @@
+COMPILE_DEPS = CORE_DEPS + [
+ "//incubator/api:onos-incubator-api",
+]
+
+BUNDLES = [
+ "//apps/routing-api:onos-apps-routing-api",
+ "//apps/routing/common:onos-apps-routing-common",
+ "//apps/vrouter:onos-apps-vrouter",
+]
+
+osgi_jar(
+ deps = COMPILE_DEPS,
+)
+
+onos_app(
+ category = "Traffic Engineering",
+ description = "Virtual router (vRouter) application.",
+ included_bundles = BUNDLES,
+ required_apps = [
+ "org.onosproject.fibinstaller",
+ "org.onosproject.cpr",
+ "org.onosproject.fpm",
+ ],
+ title = "Virtual Router",
+ url = "http://onosproject.org",
+)