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.
52 lines
1.1 KiB
52 lines
1.1 KiB
load("@bazel_skylib//:bzl_library.bzl", "bzl_library") |
|
|
|
package(default_applicable_licenses = ["//:license"]) |
|
|
|
bzl_library( |
|
name = "proto_common_bzl", |
|
srcs = [ |
|
"proto_common.bzl", |
|
], |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
":proto_lang_toolchain_info_bzl", |
|
"//bazel/private:native_bzl", |
|
"//bazel/private:toolchain_helpers_bzl", |
|
"@proto_bazel_features//:features", |
|
], |
|
) |
|
|
|
bzl_library( |
|
name = "proto_info_bzl", |
|
srcs = [ |
|
"proto_info.bzl", |
|
], |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
"//bazel/private:proto_info_bzl", |
|
"@proto_bazel_features//:features", |
|
], |
|
) |
|
|
|
bzl_library( |
|
name = "proto_lang_toolchain_info_bzl", |
|
srcs = [ |
|
"proto_lang_toolchain_info.bzl", |
|
], |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
"//bazel/private:native_bzl", |
|
], |
|
) |
|
|
|
filegroup( |
|
name = "for_bazel_tests", |
|
testonly = True, |
|
srcs = [ |
|
"BUILD", |
|
"proto_common_bzl", |
|
"proto_info_bzl", |
|
"proto_lang_toolchain_info_bzl", |
|
], |
|
visibility = ["//bazel:__pkg__"], |
|
)
|
|
|