Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
23 lines
486 B
23 lines
486 B
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", |
|
], |
|
) |
|
|
|
bzl_library( |
|
name = "proto_lang_toolchain_bzl", |
|
srcs = [ |
|
"proto_lang_toolchain.bzl", |
|
], |
|
visibility = ["//visibility:public"], |
|
deps = [ |
|
"//bazel/common:proto_common_bzl", |
|
], |
|
)
|
|
|