1# Copyright 2024 gRPC authors. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15package(default_visibility = ["//src/python/grpcio_csds:__subpackages__"]) 16 17_XDS_PROTO_DIRECTORIES = [ 18 "contrib", 19 "envoy", 20 "google", 21 "opencensus", 22 "opentelemetry", 23 "udpa", 24 "validate", 25 "xds", 26] 27 28py_library( 29 name = "xds_protos", 30 srcs = (["__init__.py"] + 31 glob([d + "/**/*.py" for d in _XDS_PROTO_DIRECTORIES])), 32 imports = ["."], 33 deps = [ 34 "//src/python/grpcio/grpc:grpcio", 35 "@com_google_protobuf//:protobuf_python", 36 ], 37) 38