mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 09:51:38 +02:00
18 lines
392 B
Python
18 lines
392 B
Python
COMPILE_DEPS = CORE_DEPS + NETTY + [
|
|
"//incubator/store:onos-incubator-store",
|
|
"//incubator/api:onos-incubator-api",
|
|
"//core/common:onos-core-common",
|
|
"@openflowj//jar",
|
|
"@netty_transport//jar",
|
|
]
|
|
|
|
TEST_DEPS = TEST + [
|
|
"//core/api:onos-api-tests",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
test_deps = TEST_DEPS,
|
|
visibility = ["//visibility:public"],
|
|
deps = COMPILE_DEPS,
|
|
)
|