Bazel build files for protocols

Change-Id: I12a9cfe2d135d10c640a51d9b3438bcd92f8e37f
diff --git a/protocols/ovsdb/api/BUILD b/protocols/ovsdb/api/BUILD
new file mode 100644
index 0000000..f344b92
--- /dev/null
+++ b/protocols/ovsdb/api/BUILD
@@ -0,0 +1,8 @@
+COMPILE_DEPS = CORE_DEPS + NETTY + JACKSON + [
+    "@netty_transport//jar",
+    "//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc",
+]
+
+osgi_jar_with_tests(
+    deps = COMPILE_DEPS,
+)
diff --git a/protocols/ovsdb/ctl/BUILD b/protocols/ovsdb/ctl/BUILD
new file mode 100644
index 0000000..79bc630
--- /dev/null
+++ b/protocols/ovsdb/ctl/BUILD
@@ -0,0 +1,11 @@
+COMPILE_DEPS = CORE_DEPS + NETTY + JACKSON + [
+    "@netty_transport//jar",
+    "@netty_codec//jar",
+    "@netty_handler//jar",
+    "//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc",
+    "//protocols/ovsdb/api:onos-protocols-ovsdb-api",
+]
+
+osgi_jar_with_tests(
+    deps = COMPILE_DEPS,
+)
diff --git a/protocols/ovsdb/rfc/BUILD b/protocols/ovsdb/rfc/BUILD
new file mode 100644
index 0000000..f3558c7
--- /dev/null
+++ b/protocols/ovsdb/rfc/BUILD
@@ -0,0 +1,7 @@
+COMPILE_DEPS = CORE_DEPS + NETTY + JACKSON + [
+    "@netty_codec//jar",
+]
+
+osgi_jar_with_tests(
+    deps = COMPILE_DEPS,
+)