Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into xds_http_connect
Browse files Browse the repository at this point in the history
  • Loading branch information
markdroth committed Oct 8, 2024
2 parents 7eeb9ce + 2e0eea1 commit 700d556
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bazel/grpc_build_system.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ def grpc_package(name, visibility = "private", features = []):
features: The features to enable.
"""
if visibility == "tests":
visibility = ["//test:__subpackages__"]
visibility = ["//test:__subpackages__", "//src/proto/grpc/testing:__subpackages__"]
elif visibility == "public":
visibility = ["//visibility:public"]
elif visibility == "private":
Expand Down
4 changes: 3 additions & 1 deletion src/proto/grpc/testing/xds/v3/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exports_files([

grpc_package(
name = "xds_v3",
visibility = "public",
visibility = "tests",
)

grpc_proto_library(
Expand Down Expand Up @@ -341,6 +341,8 @@ grpc_proto_library(
srcs = [
"csds.proto",
],
# Needs to be visible to //:grpcpp_csds
visibility = ["//:__subpackages__"],
well_known_protos = True,
deps = [
"base_proto",
Expand Down

0 comments on commit 700d556

Please sign in to comment.