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.
14 lines
310 B
14 lines
310 B
3 years ago
|
package(default_visibility = ["//java:__subpackages__"])
|
||
|
|
||
|
load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix")
|
||
|
|
||
|
pkg_files(
|
||
|
name = "dist_files",
|
||
|
srcs = [
|
||
3 years ago
|
"BUILD.bazel",
|
||
3 years ago
|
"testing.bzl",
|
||
|
],
|
||
|
strip_prefix = strip_prefix.from_root(""),
|
||
|
visibility = ["//java:__pkg__"],
|
||
|
)
|