mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 10:21:52 +02:00
A convenient macro for packaging together all proto and gRPC libraries in an OSGi jar is provided. Also re-packaging of gRPC core (to avoid OSGi split problem) is simplified by depending on a patched fork of grpc-java. Change-Id: Idb79a5bea8ae0bc57b146bda1fc47a4568d12c60
9 lines
190 B
Python
9 lines
190 B
Python
COMPILE_DEPS = CORE_DEPS + [
|
|
"//protocols/p4runtime/proto:onos-protocols-p4runtime-proto",
|
|
"@com_google_protobuf//:protobuf_java",
|
|
]
|
|
|
|
osgi_jar_with_tests(
|
|
deps = COMPILE_DEPS,
|
|
)
|