mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
19 lines
332 B
Python
19 lines
332 B
Python
COMPILE_DEPS = [
|
|
'//utils/osgi:onlab-osgi',
|
|
'//utils/misc:onlab-misc',
|
|
'//lib:commons-io',
|
|
'//lib:com_google_guava_guava',
|
|
'//lib:kryo',
|
|
'//lib:slf4j-api',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
visibility = ['PUBLIC'],
|
|
)
|