Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/roadm/BUILD b/apps/roadm/BUILD
new file mode 100644
index 0000000..384c53f
--- /dev/null
+++ b/apps/roadm/BUILD
@@ -0,0 +1,22 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + [
+ "//core/store/serializers:onos-core-serializers",
+ "//apps/optical-model:onos-apps-optical-model",
+]
+
+TEST_DEPS = TEST_REST + [
+ "//core/api:onos-api-tests",
+]
+
+osgi_jar_with_tests(
+ test_deps = TEST_DEPS,
+ deps = COMPILE_DEPS,
+)
+
+onos_app(
+ category = "Optical",
+ description = "This application provides an interface and web GUI for monitoring and " +
+ "configuring power on ROADM devices.",
+ required_apps = ["org.onosproject.optical-model"],
+ title = "ROADM",
+ url = "http://onosproject.org",
+)