platform_build_soong/filesystem/Android.bp
Jiyong Park 73e5babafe fix: required property doesn't track deps to java, apex, ...
This change fixes a bug that the required property doesn't track
dependencies to modules whose arch is common.

Bug: 321000103
Bug: 321626681
Test: go test ./...
Change-Id: I3d2b3ad8cb2a9f1c5c3d5345bf05402a787f011a
2024-04-05 15:12:16 +09:00

33 lines
768 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-java", // for testing
"soong-linkerconfig",
"soong-phony", // for testing
],
srcs: [
"avb_add_hash_footer.go",
"avb_gen_vbmeta_image.go",
"bootimg.go",
"filesystem.go",
"fsverity_metadata.go",
"logical_partition.go",
"raw_binary.go",
"system_image.go",
"vbmeta.go",
"testing.go",
],
testSrcs: [
"filesystem_test.go",
],
pluginFor: ["soong_build"],
}