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.
51 lines
1.4 KiB
51 lines
1.4 KiB
8 months ago
|
load("@rules_cc//cc:defs.bzl", "cc_proto_library", "objc_library")
|
||
|
load("//:protobuf.bzl", "internal_csharp_proto_library", "internal_objc_proto_library", "internal_py_proto_library")
|
||
|
load("//ruby:defs.bzl", "internal_ruby_proto_library")
|
||
|
|
||
|
package(
|
||
|
default_testonly = True,
|
||
|
default_visibility = ["//conformance:__pkg__"],
|
||
|
)
|
||
|
|
||
|
proto_library(
|
||
|
name = "test_messages_edition2023_proto",
|
||
|
srcs = ["test_messages_edition2023.proto"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
cc_proto_library(
|
||
|
name = "test_messages_edition2023_cc_proto",
|
||
|
deps = [":test_messages_edition2023_proto"],
|
||
|
)
|
||
|
|
||
|
internal_csharp_proto_library(
|
||
|
name = "test_messages_edition2023_csharp_proto",
|
||
|
srcs = ["test_messages_edition2023.proto"],
|
||
|
)
|
||
|
|
||
|
java_proto_library(
|
||
|
name = "test_messages_edition2023_java_proto",
|
||
|
deps = [":test_messages_edition2023_proto"],
|
||
|
)
|
||
|
|
||
|
java_lite_proto_library(
|
||
|
name = "test_messages_edition2023_java_proto_lite",
|
||
|
deps = [":test_messages_edition2023_proto"],
|
||
|
)
|
||
|
|
||
|
internal_py_proto_library(
|
||
|
name = "test_messages_edition2023_py_proto",
|
||
|
srcs = ["test_messages_edition2023.proto"],
|
||
|
srcs_version = "PY2AND3",
|
||
|
)
|
||
|
|
||
|
internal_objc_proto_library(
|
||
|
name = "test_messages_edition2023_objc_proto",
|
||
|
srcs = ["test_messages_edition2023.proto"],
|
||
|
)
|
||
|
|
||
|
internal_ruby_proto_library(
|
||
|
name = "test_messages_edition2023_ruby_proto",
|
||
|
srcs = ["test_messages_edition2023.proto"],
|
||
|
)
|