Change the default visibility for packages to //visibility:private and then change individual build rules back to their prior visibility. The motivation for this change is making sure future additions are private by default so that new rules are not accidentally public. Some of the rules that are currently public were not meant to be, and the fact that they are marked public does not mean they should be used. As always, the rule is never spell out anything with the word internal (or any synonym for internal). Some of these accidentally public rules will be manually corrected with future changes. PiperOrigin-RevId: 940513671 Change-Id: I65a75725f857f633f7b378298bfec04465d6afe8
diff --git a/absl/BUILD.bazel b/absl/BUILD.bazel index e33d648..ff073c0 100644 --- a/absl/BUILD.bazel +++ b/absl/BUILD.bazel
@@ -16,7 +16,7 @@ load("@bazel_skylib//lib:selects.bzl", "selects") -package(default_visibility = ["//visibility:public"]) +package(default_visibility = ["//visibility:private"]) licenses(["notice"])