platform_build_soong/filesystem/Android.bp
Jiyong Park 9c540c82d4 fix: required deps of phony modules are correctly tracked
ArchType.Multilib of native modules are either lib32 or lib64.
Arch-neural modules have "" not "common".

Bug: 321626681
Test: go test ./...
Change-Id: Ie7e6a5203e9f671487dbf32ea2343ada7407a28f
2024-03-29 12:53:32 +09:00

31 lines
699 B
Text

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
bootstrap_go_package {
name: "soong-filesystem",
pkgPath: "android/soong/filesystem",
deps: [
"blueprint",
"soong",
"soong-android",
"soong-bpf", // for testing
"soong-phony", // for testing
"soong-linkerconfig",
],
srcs: [
"avb_add_hash_footer.go",
"avb_gen_vbmeta_image.go",
"bootimg.go",
"filesystem.go",
"logical_partition.go",
"raw_binary.go",
"system_image.go",
"vbmeta.go",
"testing.go",
],
testSrcs: [
"filesystem_test.go",
],
pluginFor: ["soong_build"],
}