Add default_visibility for soong modules

So that we don't get surprise usages.

Bug: 348717861
Test: m nothing
Change-Id: I47319a727092c1bd936cca88f5713ee977a48b48
This commit is contained in:
Cole Faust
2024-09-18 16:42:01 -07:00
parent 3249ac6d3f
commit 16d227a725
28 changed files with 79 additions and 3 deletions

View File

@@ -10,4 +10,8 @@ python_library_host {
proto: {
canonical_path_from_root: false,
},
visibility: [
"//build/soong:__subpackages__",
"//tools/mainline:__subpackages__",
],
}

View File

@@ -30,4 +30,5 @@ bootstrap_go_package {
srcs: [
"symbols_map_proto/symbols_map.pb.go",
],
visibility: ["//visibility:public"],
}

View File

@@ -27,4 +27,6 @@ blueprint_go_binary {
"zip2zip.go",
],
testSrcs: ["zip2zip_test.go"],
// Used by genrules
visibility: ["//visibility:public"],
}