7810e17e54
apex_toolchain through soong_injection. This is necessary to keep both Bazel and Soong in sync. Test: presubmit Bug: 238723069 Fixes: 238153998 Change-Id: Ibf4a8ed91d358dc7800c10e4112485a52f0606bb
45 lines
1,017 B
Text
45 lines
1,017 B
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
bootstrap_go_package {
|
|
name: "soong-apex",
|
|
pkgPath: "android/soong/apex",
|
|
deps: [
|
|
"blueprint",
|
|
"soong",
|
|
"soong-android",
|
|
"soong-bazel",
|
|
"soong-bpf",
|
|
"soong-cc",
|
|
"soong-filesystem",
|
|
"soong-java",
|
|
"soong-multitree",
|
|
"soong-provenance",
|
|
"soong-python",
|
|
"soong-rust",
|
|
"soong-sh",
|
|
],
|
|
srcs: [
|
|
"androidmk.go",
|
|
"apex.go",
|
|
"apex_sdk_member.go",
|
|
"apex_singleton.go",
|
|
"builder.go",
|
|
"bp2build.go",
|
|
"deapexer.go",
|
|
"key.go",
|
|
"prebuilt.go",
|
|
"testing.go",
|
|
"vndk.go",
|
|
],
|
|
testSrcs: [
|
|
"apex_test.go",
|
|
"bootclasspath_fragment_test.go",
|
|
"classpath_element_test.go",
|
|
"platform_bootclasspath_test.go",
|
|
"systemserver_classpath_fragment_test.go",
|
|
"vndk_test.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|