Additional bazel build files for apps
Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/imr/api/BUILD b/apps/imr/api/BUILD
new file mode 100644
index 0000000..a08f18c
--- /dev/null
+++ b/apps/imr/api/BUILD
@@ -0,0 +1,13 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + REST + CLI + [
+ "//core/store/serializers:onos-core-serializers",
+ "//apps/imr/app:onos-apps-imr-app",
+]
+
+osgi_jar_with_tests(
+ api_description = "REST API for IMR Application",
+ api_package = "org.onosproject.imr.rest",
+ api_title = "IMR REST API",
+ api_version = "1.0",
+ web_context = "/onos/v1/imr",
+ deps = COMPILE_DEPS,
+)