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.
27 lines
636 B
27 lines
636 B
8 months ago
|
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
||
|
|
||
|
bzl_library(
|
||
|
name = "proto_toolchain_bzl",
|
||
|
srcs = [
|
||
|
"proto_toolchain.bzl",
|
||
|
],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//bazel/private:proto_toolchain_rule_bzl",
|
||
5 months ago
|
"//bazel/private:toolchain_helpers_bzl",
|
||
8 months ago
|
],
|
||
|
)
|
||
|
|
||
|
bzl_library(
|
||
|
name = "proto_lang_toolchain_bzl",
|
||
|
srcs = [
|
||
|
"proto_lang_toolchain.bzl",
|
||
|
],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//bazel/common:proto_common_bzl",
|
||
3 months ago
|
"//bazel/private:proto_lang_toolchain_rule_bzl",
|
||
|
"@proto_bazel_features//:features",
|
||
8 months ago
|
],
|
||
|
)
|