Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/sdnip/BUILD b/apps/sdnip/BUILD
new file mode 100644
index 0000000..861fe8e
--- /dev/null
+++ b/apps/sdnip/BUILD
@@ -0,0 +1,34 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + [
+ "//incubator/api:onos-incubator-api",
+ "//apps/routing-api:onos-apps-routing-api",
+ "//apps/route-service/api:onos-apps-route-service-api",
+ "//apps/intentsync:onos-apps-intentsync",
+]
+
+BUNDLES = [
+ "//apps/sdnip:onos-apps-sdnip",
+ "//apps/routing-api:onos-apps-routing-api",
+ "//apps/routing/common:onos-apps-routing-common",
+]
+
+TEST_DEPS = TEST_ADAPTERS + [
+ "//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,
+)
+
+onos_app(
+ category = "Traffic Engineering",
+ description = "SDN-IP peering application",
+ included_bundles = BUNDLES,
+ required_apps = [
+ "org.onosproject.intentsynchronizer",
+ "org.onosproject.route-service",
+ ],
+ title = "SDN-IP",
+ url = "http://onosproject.org",
+)