mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
15 lines
253 B
Python
15 lines
253 B
Python
PROTOBUF_VER = '3.2.0'
|
|
|
|
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//protocols/p4runtime/proto:onos-protocols-p4runtime-proto',
|
|
'//lib:protobuf-java-' + PROTOBUF_VER,
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
deps = COMPILE_DEPS + TEST_DEPS,
|
|
)
|