mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-20 20:02:17 +02:00
21 lines
403 B
Python
21 lines
403 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//protocols/grpc/api:onos-protocols-grpc-api',
|
|
'//lib:grpc-core-1.3.0',
|
|
'//lib:grpc-protobuf-1.3.0',
|
|
'//lib:grpc-stub-1.3.0',
|
|
'//lib:grpc-netty-1.3.0',
|
|
'//lib:grpc-auth-1.3.0',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//utils/osgi:onlab-osgi-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|