Files
build_soong/cmd/symbols_map/Android.bp
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

35 lines
738 B
Plaintext

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
blueprint_go_binary {
name: "symbols_map",
srcs: [
"r8.go",
"symbols_map.go",
],
testSrcs: [
"r8_test.go",
],
deps: [
"blueprint-pathtools",
"golang-protobuf-encoding-prototext",
"soong-elf",
"soong-response",
"symbols_map_proto",
],
}
bootstrap_go_package {
name: "symbols_map_proto",
pkgPath: "android/soong/cmd/symbols_map/symbols_map_proto",
deps: [
"golang-protobuf-reflect-protoreflect",
"golang-protobuf-runtime-protoimpl",
],
srcs: [
"symbols_map_proto/symbols_map.pb.go",
],
visibility: ["//visibility:public"],
}