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.
99 lines
2.2 KiB
99 lines
2.2 KiB
4 years ago
|
load("@rules_cc//cc:defs.bzl", "cc_proto_library")
|
||
|
load("@rules_java//java:defs.bzl", "java_proto_library")
|
||
3 years ago
|
load("@rules_pkg//:mappings.bzl", "pkg_filegroup", "pkg_files", "strip_prefix")
|
||
4 years ago
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
||
|
|
||
|
proto_library(
|
||
|
name = "benchmarks_proto",
|
||
|
srcs = [
|
||
|
"benchmarks.proto",
|
||
|
],
|
||
|
strip_import_prefix = "/benchmarks",
|
||
4 years ago
|
visibility = [
|
||
|
"//benchmarks:__subpackages__",
|
||
|
],
|
||
4 years ago
|
)
|
||
|
|
||
|
cc_proto_library(
|
||
|
name = "benchmarks_cc_proto",
|
||
4 years ago
|
visibility = [
|
||
|
"//benchmarks:__subpackages__",
|
||
|
],
|
||
4 years ago
|
deps = [
|
||
|
"benchmarks_proto",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
java_proto_library(
|
||
|
name = "benchmarks_java_proto",
|
||
4 years ago
|
visibility = [
|
||
|
"//benchmarks:__subpackages__",
|
||
|
],
|
||
4 years ago
|
deps = [
|
||
|
"benchmarks_proto",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
proto_library(
|
||
|
name = "google_size_proto",
|
||
|
srcs = [
|
||
|
"google_size.proto",
|
||
|
],
|
||
|
strip_import_prefix = "/benchmarks",
|
||
4 years ago
|
visibility = [
|
||
|
"//benchmarks:__subpackages__",
|
||
|
],
|
||
4 years ago
|
)
|
||
|
|
||
|
cc_proto_library(
|
||
|
name = "google_size_cc_proto",
|
||
4 years ago
|
visibility = [
|
||
|
"//benchmarks:__subpackages__",
|
||
|
],
|
||
4 years ago
|
deps = [
|
||
|
"google_size_proto",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
java_proto_library(
|
||
|
name = "google_size_java_proto",
|
||
4 years ago
|
visibility = [
|
||
|
"//benchmarks:__subpackages__",
|
||
|
],
|
||
4 years ago
|
deps = [
|
||
|
"google_size_proto",
|
||
|
],
|
||
|
)
|
||
3 years ago
|
|
||
|
pkg_files(
|
||
|
name = "dist_files",
|
||
|
srcs = glob(
|
||
|
[
|
||
|
"*",
|
||
|
"python/*.cc",
|
||
|
"util/*.cc",
|
||
|
],
|
||
|
exclude = [
|
||
|
"__init__.py", # not in autotools dist
|
||
|
"go/*",
|
||
|
],
|
||
|
),
|
||
|
strip_prefix = strip_prefix.from_root(""),
|
||
|
)
|
||
|
|
||
|
# Convenience filegroup for all files that should be packaged.
|
||
|
pkg_filegroup(
|
||
|
name = "all_dist_files",
|
||
|
srcs = [
|
||
|
":dist_files",
|
||
|
"//benchmarks/cpp:dist_files",
|
||
|
# "//benchmarks/datasets:dist_files", # not in autotools dist
|
||
|
"//benchmarks/datasets/google_message1/proto2:dist_files",
|
||
|
"//benchmarks/datasets/google_message1/proto3:dist_files",
|
||
|
"//benchmarks/datasets/google_message2:dist_files",
|
||
|
"//benchmarks/datasets/google_message3:dist_files",
|
||
|
"//benchmarks/datasets/google_message4:dist_files",
|
||
|
],
|
||
|
visibility = ["//pkg:__pkg__"],
|
||
|
)
|