Files
Cole Faust 16d227a725 Add default_visibility for soong modules
So that we don't get surprise usages.

Bug: 348717861
Test: m nothing
Change-Id: I47319a727092c1bd936cca88f5713ee977a48b48
2024-09-18 17:41:30 -07:00

30 lines
617 B
Plaintext

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
cc_library_static {
name: "lib_linker_config_proto_lite",
host_supported: true,
recovery_available: true,
proto: {
export_proto_headers: true,
type: "lite",
},
srcs: ["linker_config.proto"],
apex_available: [
"//apex_available:platform",
"//apex_available:anyapex",
],
visibility: ["//system/linkerconfig"],
}
python_library_host {
name: "linker_config_proto",
srcs: [
"linker_config.proto",
],
proto: {
canonical_path_from_root: false,
},
}