blob: 1c91828a9d3e194fa1eaf7812daec38f7a621b82 [file] [log] [blame]
# gRPC Bazel BUILD file.
#
# Copyright 2016 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
licenses(["notice"]) # Apache v2
exports_files([
"grpc_1.41.0.patch",
"grpc_1.41.0.win_arm64.patch"
])
package(default_visibility = ["//visibility:public"])
filegroup(
name = "srcs",
srcs = glob(["**"]) + [
"//third_party/grpc/bazel:srcs",
],
)
alias(
name = "cpp_plugin",
actual = select({
"//src/conditions:debian_build": "@debian_bin_deps//:grpc-cpp-plugin",
"//conditions:default": "@com_github_grpc_grpc//src/compiler:grpc_cpp_plugin",
}),
)
alias(
name = "grpc++_codegen_proto",
actual = select({
"//src/conditions:debian_build": "@debian_cc_deps//:grpc++_unsecure",
"//conditions:default": "@com_github_grpc_grpc//:grpc++_codegen_proto",
}),
)
alias(
name = "grpc++_unsecure",
actual = select({
"//src/conditions:debian_build": "@debian_cc_deps//:grpc++_unsecure",
"//conditions:default": "@com_github_grpc_grpc//:grpc++_unsecure",
}),
)
filegroup(
name = "embedded_tools_srcs",
srcs = [
"BUILD.tools",
"build_defs.bzl",
],
)