Add Bazel support for host probing provider
Change-Id: Idfeabbbea8b7b7e6f7d14dfbc73e07c40de2e10f
diff --git a/providers/hostprobing/BUILD b/providers/hostprobing/BUILD
new file mode 100644
index 0000000..e1b1003
--- /dev/null
+++ b/providers/hostprobing/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 (
+ deps = COMPILE_DEPS,
+ test_deps = TEST_DEPS,
+)
+
+onos_app (
+ app_name = "org.onosproject.hostprobingprovider",
+ title = "Host Probing Provider",
+ category = "Provider",
+ url = "http://onosproject.org",
+ description = "Provides host probing mechanism that discovers or verifies the existence of a host at specific location",
+)