mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 17:01:02 +02:00
22 lines
504 B
Python
22 lines
504 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//core/common:onos-core-common',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//incubator/store:onos-incubator-store',
|
|
'//utils/rest:onlab-rest',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_REST',
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/api:onos-api-tests',
|
|
'//core/common:onos-core-common-tests',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//lib:concurrent-trees',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|