Additional bazel build files for apps

Change-Id: If3f31139022b5657e4a7b8a33871e4eba0da286e
diff --git a/apps/cord-support/BUILD b/apps/cord-support/BUILD
new file mode 100644
index 0000000..97ddc41
--- /dev/null
+++ b/apps/cord-support/BUILD
@@ -0,0 +1,24 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + REST + [
+    "//core/store/serializers:onos-core-serializers",
+]
+
+TEST_DEPS = TEST_REST + [
+    "//lib:jersey-server",
+]
+
+osgi_jar_with_tests(
+    api_description = "REST API for CORD inquiry to ONOS topology",
+    api_package = "org.onosproject.cordsupport",
+    api_title = "CORD Support",
+    api_version = "1.0",
+    test_deps = TEST_DEPS,
+    web_context = "/onos/cord-support",
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    category = "Integration",
+    description = "CORD Support application.",
+    title = "CORD Support",
+    url = "http://onosproject.org",
+)