Bazel build files for protocols
Change-Id: I12a9cfe2d135d10c640a51d9b3438bcd92f8e37f
diff --git a/protocols/xmpp/core/ctl/BUILD b/protocols/xmpp/core/ctl/BUILD
new file mode 100644
index 0000000..8c521a1
--- /dev/null
+++ b/protocols/xmpp/core/ctl/BUILD
@@ -0,0 +1,22 @@
+COMPILE_DEPS = CORE_DEPS + [
+ "@netty_common//jar",
+ "@netty_transport//jar",
+ "@netty_transport_native_epoll//jar",
+ "@netty_buffer//jar",
+ "@netty_codec//jar",
+ "@tinder_xmpp//jar",
+ "@stax2_api//jar",
+ "@aalto_xml//jar",
+ "@concurrent_hashmap//jar",
+ "@gnu_idn//jar",
+ "//protocols/xmpp/core/api:onos-protocols-xmpp-core-api",
+]
+
+TEST_DEPS = TEST + [
+ "//core/api:onos-api-tests",
+]
+
+osgi_jar_with_tests(
+ test_deps = TEST_DEPS,
+ deps = COMPILE_DEPS,
+)