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.
44 lines
970 B
44 lines
970 B
load("@rules_cc//cc:defs.bzl", "cc_proto_library") |
|
load("@rules_java//java:defs.bzl", "java_proto_library") |
|
load("@rules_proto//proto:defs.bzl", "proto_library") |
|
|
|
filegroup( |
|
name = "datasets", |
|
srcs = [ |
|
"dataset.google_message1_proto3.pb", |
|
], |
|
visibility = [ |
|
"//benchmarks/datasets:__pkg__", |
|
], |
|
) |
|
|
|
proto_library( |
|
name = "benchmark_message1_proto3_proto", |
|
srcs = [ |
|
"benchmark_message1_proto3.proto", |
|
], |
|
strip_import_prefix = "/benchmarks", |
|
visibility = [ |
|
"//benchmarks/datasets:__pkg__", |
|
], |
|
) |
|
|
|
cc_proto_library( |
|
name = "benchmark_message1_proto3_cc_proto", |
|
visibility = [ |
|
"//benchmarks/datasets:__pkg__", |
|
], |
|
deps = [ |
|
"benchmark_message1_proto3_proto", |
|
], |
|
) |
|
|
|
java_proto_library( |
|
name = "benchmark_message1_proto3_java_proto", |
|
visibility = [ |
|
"//benchmarks/datasets:__pkg__", |
|
], |
|
deps = [ |
|
"benchmark_message1_proto3_proto", |
|
], |
|
)
|
|
|