Build providers using bazel

Change-Id: I7d4ebcfb1d593e10aa93f0a4f7111680ed66a7e7
diff --git a/providers/host/BUILD b/providers/host/BUILD
new file mode 100644
index 0000000..9d60d15
--- /dev/null
+++ b/providers/host/BUILD
@@ -0,0 +1,20 @@
+COMPILE_DEPS = CORE_DEPS + [
+    "//incubator/api:onos-incubator-api",
+]
+
+TEST_DEPS = TEST_ADAPTERS + [
+    "//utils/osgi:onlab-osgi-tests",
+]
+
+osgi_jar_with_tests(
+    test_deps = TEST_DEPS,
+    deps = COMPILE_DEPS,
+)
+
+onos_app(
+    app_name = "org.onosproject.hostprovider",
+    category = "Provider",
+    description = "Provides host discovery and location to the ONOS core by eavesdropping on the ARP and NDP packets.",
+    title = "Host Location Provider",
+    url = "http://onosproject.org",
+)