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.
64 lines
1.5 KiB
64 lines
1.5 KiB
load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix") |
|
load("@rules_ruby//ruby:defs.bzl", "ruby_test") |
|
load("//:protobuf.bzl", "internal_ruby_proto_library") |
|
|
|
internal_ruby_proto_library( |
|
name = "test_ruby_protos", |
|
srcs = glob(["*.proto"]), |
|
includes = ["."], |
|
protoc = "//ruby/compatibility_tests/v3.0.0:protoc", |
|
) |
|
|
|
ruby_test( |
|
name = "basic", |
|
deps = [ |
|
":test_ruby_protos", |
|
"//ruby:protobuf", |
|
"@protobuf_bundle//:test-unit" |
|
], |
|
srcs = ["basic.rb"], |
|
) |
|
|
|
ruby_test( |
|
name = "generated_code_test", |
|
deps = [ |
|
":test_ruby_protos", |
|
"//ruby:protobuf", |
|
"@protobuf_bundle//:test-unit" |
|
], |
|
srcs = ["generated_code_test.rb"], |
|
) |
|
|
|
ruby_test( |
|
name = "repeated_field_test", |
|
deps = [ |
|
":test_ruby_protos", |
|
"//ruby:protobuf", |
|
"@protobuf_bundle//:test-unit" |
|
], |
|
srcs = ["repeated_field_test.rb"], |
|
) |
|
|
|
ruby_test( |
|
name = "stress", |
|
deps = [ |
|
":test_ruby_protos", |
|
"//ruby:protobuf", |
|
"@protobuf_bundle//:test-unit" |
|
], |
|
srcs = ["stress.rb"], |
|
) |
|
|
|
################################################################################ |
|
# Distribution files |
|
############################################################################ |
|
|
|
pkg_files( |
|
name = "dist_files", |
|
srcs = glob([ |
|
"**/*.rb", |
|
"**/*.proto" |
|
]), |
|
strip_prefix = strip_prefix.from_root(""), |
|
visibility = ["//ruby/compatibility_tests/v3.0.0:__pkg__"], |
|
)
|
|
|