Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
0 B
15 lines
0 B
5 years ago
|
load("@rules_proto//proto:defs.bzl", "proto_lang_toolchain")
|
||
|
|
||
|
alias(
|
||
|
name = "lite",
|
||
|
actual = "//java/core:lite",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
proto_lang_toolchain(
|
||
|
name = "toolchain",
|
||
|
command_line = "--java_out=lite:$(OUT)",
|
||
|
runtime = ":lite",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|