73e5babafe
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
33 lines
768 B
Text
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"],
|
|
}
|