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.
34 lines
1.0 KiB
34 lines
1.0 KiB
load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix") |
|
|
|
################################################################################ |
|
# Distribution files |
|
############################################################################ |
|
|
|
genrule( |
|
name = "protoc-compat-gen", |
|
outs = ["protoc"], |
|
cmd = """ |
|
PROTOC_BINARY_NAME="protoc-3.0.0-linux-x86_64.exe" |
|
if [ `uname` = "Darwin" ]; then |
|
PROTOC_BINARY_NAME="protoc-3.0.0-osx-x86_64.exe" |
|
fi |
|
wget https://repo1.maven.org/maven2/com/google/protobuf/protoc/3.0.0/$${PROTOC_BINARY_NAME} -O protoc |
|
chmod +x protoc |
|
mv protoc $@ |
|
""", |
|
executable = True, |
|
visibility = ["//ruby/compatibility_tests/v3.0.0:__subpackages__"], |
|
) |
|
|
|
pkg_files( |
|
name = "dist_files", |
|
srcs = [ |
|
"//ruby/compatibility_tests/v3.0.0/tests:dist_files", |
|
"BUILD.bazel", |
|
"Rakefile", |
|
"README.md", |
|
"test.sh", |
|
], |
|
strip_prefix = strip_prefix.from_root(""), |
|
visibility = ["//pkg:__pkg__"], |
|
)
|
|
|