From 8e0e333c6c46ea458282ba8373e458a2db81f7f0 Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Fri, 11 Oct 2024 14:01:05 -0700 Subject: [PATCH] [latent_see] Add a visibility control for this library (#37898) We'll want to annotate some internal systems with it going forward. Closes #37898 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37898 from ctiller:latent-vis 12e3e73c3c4a6ab2b6123706ed77da49a9d4295d PiperOrigin-RevId: 684948162 --- bazel/grpc_build_system.bzl | 1 + src/core/BUILD | 1 + 2 files changed, 2 insertions(+) diff --git a/bazel/grpc_build_system.bzl b/bazel/grpc_build_system.bzl index 92f720ff14e..fbb1be2b3c0 100644 --- a/bazel/grpc_build_system.bzl +++ b/bazel/grpc_build_system.bzl @@ -123,6 +123,7 @@ def _update_visibility(visibility): "iomgr_internal_errqueue": PRIVATE, "iomgr_buffer_list": PRIVATE, "json_reader_legacy": PRIVATE, + "latent_see": PRIVATE, "otel_plugin": PRIVATE, "public": PUBLIC, "ref_counted_ptr": PRIVATE, diff --git a/src/core/BUILD b/src/core/BUILD index 5f6adbeb898..dd141b44d8b 100644 --- a/src/core/BUILD +++ b/src/core/BUILD @@ -148,6 +148,7 @@ grpc_cc_library( "absl/strings", "absl/types:optional", ], + visibility = ["@grpc:latent_see"], deps = [ "per_cpu", "ring_buffer",