mirror of
https://github.com/opennetworkinglab/onos.git
synced 2026-05-05 04:06:49 +02:00
15 lines
325 B
Python
15 lines
325 B
Python
COMPILE_DEPS = CORE_DEPS + [
|
|
"//protocols/ovsdb/api:onos-protocols-ovsdb-api",
|
|
"//protocols/ovsdb/rfc:onos-protocols-ovsdb-rfc",
|
|
]
|
|
|
|
TEST_DEPS = TEST_ADAPTERS + [
|
|
"//core/api:onos-api-tests",
|
|
"//core/common:onos-core-common-tests",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
test_deps = TEST_DEPS,
|
|
deps = COMPILE_DEPS,
|
|
)
|