bazel/googleapis.bzl (40 lines of code) (raw):

# Copyright 2019 Google LLC # # 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 # # https://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. load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") def googleapis_repositories(bind = True): http_archive( name = "com_github_googleapis_googleapis", strip_prefix = "googleapis-792dacbd24643d8650fbf705b3f745532012ea34", # 03/05/2024 url = "https://github.com/googleapis/googleapis/archive/792dacbd24643d8650fbf705b3f745532012ea34.tar.gz", sha256 = "7546ed2126b3cb08cc71ca22766cbb3e6ea425e6491dfafccac47500637b91ba", ) if bind: # Bindings needed to allow envoy api build system to build cc proto. # Envoy will automatically look for `service_proto_cc_proto` instead of `service_cc_proto`. native.bind( name = "service_proto", actual = "@com_github_googleapis_googleapis//google/api:service_proto", ) native.bind( name = "service_proto_cc_proto", actual = "@com_github_googleapis_googleapis//google/api:service_cc_proto", ) native.bind( name = "service_proto_py_proto", actual = "@com_github_googleapis_googleapis//google/api:service_py_proto", ) native.bind( name = "service_proto_py_proto_genproto", actual = "@com_github_googleapis_googleapis//google/api:service_py_proto_genproto", )