Files
build_soong/apex/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

48 lines
1.1 KiB
Plaintext

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
bootstrap_go_package {
name: "soong-apex",
pkgPath: "android/soong/apex",
deps: [
"blueprint",
"soong",
"soong-aconfig",
"soong-aconfig-codegen",
"soong-android",
"soong-bpf",
"soong-cc",
"soong-filesystem",
"soong-java",
"soong-provenance",
"soong-python",
"soong-rust",
"soong-sh",
],
srcs: [
"androidmk.go",
"apex.go",
"apex_sdk_member.go",
"apex_singleton.go",
"builder.go",
"deapexer.go",
"key.go",
"prebuilt.go",
"testing.go",
"vndk.go",
],
testSrcs: [
"apex_test.go",
"bootclasspath_fragment_test.go",
"classpath_element_test.go",
"container_test.go",
"dexpreopt_bootjars_test.go",
"platform_bootclasspath_test.go",
"systemserver_classpath_fragment_test.go",
],
pluginFor: ["soong_build"],
// Used by plugins
visibility: ["//visibility:public"],
}