mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 00:41:10 +02:00
This allows us to leverage the ONOS app subsystem for selecting which components to load. CORD-710 Change-Id: Ibd7c4c1afd2caa137b44c085e7b6b5b4a1082521
15 lines
206 B
Python
15 lines
206 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//incubator/api:onos-incubator-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|