Add Bazel support for host probing provider

Change-Id: Idfeabbbea8b7b7e6f7d14dfbc73e07c40de2e10f
This commit is contained in:
Charles Chan 2018-08-06 18:15:41 -07:00 committed by Thomas Vachuska
parent bf6739d050
commit 24e85d155c
2 changed files with 21 additions and 0 deletions

View File

@ -120,6 +120,7 @@ ONOS_PROVIDERS = [
"//providers/bgp:onos-providers-bgp-oar",
"//providers/bgpcep:onos-providers-bgpcep-oar",
"//providers/host:onos-providers-host-oar",
"//providers/hostprobing:onos-providers-hostprobing-oar",
"//providers/lldp:onos-providers-lldp-oar",
"//providers/netcfghost:onos-providers-netcfghost-oar",
"//providers/netcfglinks:onos-providers-netcfglinks-oar",

View File

@ -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",
)