Bazel builds for additional drivers

Change-Id: I8c3f36bd7c56127480ab9419ad52dac626b9f3cb
diff --git a/apps/cfm/nbi/BUILD b/apps/cfm/nbi/BUILD
new file mode 100644
index 0000000..c28e664
--- /dev/null
+++ b/apps/cfm/nbi/BUILD
@@ -0,0 +1,19 @@
+COMPILE_DEPS = CORE_DEPS + JACKSON + CLI + REST + [
+    "//apps/cfm/api:onos-apps-cfm-api",
+]
+
+TEST_DEPS = TEST_REST + [
+    "//utils/osgi:onlab-osgi-tests",
+    "//web/api:onos-rest-tests",
+]
+
+osgi_jar_with_tests(
+    api_description = "REST API for L2 Monitoring CFM",
+    api_package = "org.onosproject.soam.rest",
+    api_title = "L2 Monitoring CFM",
+    api_version = "1.0",
+    exclude_tests = ["org/onosproject/cfm/impl/CfmResourceTest"],
+    test_deps = TEST_DEPS,
+    web_context = "/onos/cfm",
+    deps = COMPILE_DEPS,
+)