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.
32 lines
887 B
32 lines
887 B
# Protobuf PHP runtime |
|
# |
|
# See also code generation logic under /src/google/protobuf/compiler/php. |
|
|
|
load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix") |
|
|
|
pkg_files( |
|
name = "dist_files", |
|
srcs = glob([ |
|
"ext/google/protobuf/**/*", |
|
"src/GPBMetadata/Google/Protobuf/**/*.php", |
|
"src/Google/Protobuf/**/*.php", |
|
"tests/*.php", |
|
"tests/*.sh", |
|
"tests/generated_previous/**/*.php", |
|
"tests/proto/**/*.proto", |
|
"tests/proto_previous/*.proto", |
|
]) + [ |
|
"BUILD.bazel", |
|
"README.md", |
|
"REFCOUNTING.md", |
|
"composer.json", |
|
"generate_descriptor_protos.sh", |
|
"generate_test_protos.sh", |
|
"release.sh", |
|
"src/phpdoc.dist.xml", |
|
"tests/valgrind.supp", |
|
], |
|
prefix = "php", |
|
strip_prefix = strip_prefix.from_pkg(""), |
|
visibility = ["//pkg:__pkg__"], |
|
)
|
|
|