Merge "fix: required property doesn't track deps to java, apex, ..." into main am: ccd5b5545b
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/3029144 Change-Id: I0536092ec1b30d0d54cb69f6d226b9d4ff380c93 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -1074,14 +1074,22 @@ func (m *ModuleBase) addRequiredDeps(ctx BottomUpMutatorContext) {
|
||||
}
|
||||
}
|
||||
|
||||
var deviceTargets []Target
|
||||
deviceTargets = append(deviceTargets, ctx.Config().Targets[Android]...)
|
||||
deviceTargets = append(deviceTargets, ctx.Config().AndroidCommonTarget)
|
||||
|
||||
var hostTargets []Target
|
||||
hostTargets = append(hostTargets, ctx.Config().Targets[ctx.Config().BuildOS]...)
|
||||
hostTargets = append(hostTargets, ctx.Config().BuildOSCommonTarget)
|
||||
|
||||
if m.Device() {
|
||||
for _, depName := range m.RequiredModuleNames() {
|
||||
for _, target := range ctx.Config().Targets[Android] {
|
||||
for _, target := range deviceTargets {
|
||||
addDep(target, depName)
|
||||
}
|
||||
}
|
||||
for _, depName := range m.HostRequiredModuleNames() {
|
||||
for _, target := range ctx.Config().Targets[ctx.Config().BuildOS] {
|
||||
for _, target := range hostTargets {
|
||||
addDep(target, depName)
|
||||
}
|
||||
}
|
||||
@@ -1089,7 +1097,7 @@ func (m *ModuleBase) addRequiredDeps(ctx BottomUpMutatorContext) {
|
||||
|
||||
if m.Host() {
|
||||
for _, depName := range m.RequiredModuleNames() {
|
||||
for _, target := range ctx.Config().Targets[ctx.Config().BuildOS] {
|
||||
for _, target := range hostTargets {
|
||||
// When a host module requires another host module, don't make a
|
||||
// dependency if they have different OSes (i.e. hostcross).
|
||||
if m.Target().HostCross != target.HostCross {
|
||||
@@ -1099,7 +1107,7 @@ func (m *ModuleBase) addRequiredDeps(ctx BottomUpMutatorContext) {
|
||||
}
|
||||
}
|
||||
for _, depName := range m.TargetRequiredModuleNames() {
|
||||
for _, target := range ctx.Config().Targets[Android] {
|
||||
for _, target := range deviceTargets {
|
||||
addDep(target, depName)
|
||||
}
|
||||
}
|
||||
|
@@ -10,8 +10,9 @@ bootstrap_go_package {
|
||||
"soong",
|
||||
"soong-android",
|
||||
"soong-bpf", // for testing
|
||||
"soong-phony", // for testing
|
||||
"soong-java", // for testing
|
||||
"soong-linkerconfig",
|
||||
"soong-phony", // for testing
|
||||
],
|
||||
srcs: [
|
||||
"avb_add_hash_footer.go",
|
||||
|
@@ -23,6 +23,7 @@ import (
|
||||
"android/soong/bpf"
|
||||
"android/soong/cc"
|
||||
"android/soong/etc"
|
||||
"android/soong/java"
|
||||
"android/soong/phony"
|
||||
|
||||
"github.com/google/blueprint/proptools"
|
||||
@@ -34,9 +35,12 @@ func TestMain(m *testing.M) {
|
||||
|
||||
var fixture = android.GroupFixturePreparers(
|
||||
android.PrepareForIntegrationTestWithAndroid,
|
||||
android.PrepareForTestWithAndroidBuildComponents,
|
||||
bpf.PrepareForTestWithBpf,
|
||||
etc.PrepareForTestWithPrebuiltEtc,
|
||||
cc.PrepareForIntegrationTestWithCc,
|
||||
etc.PrepareForTestWithPrebuiltEtc,
|
||||
java.PrepareForTestWithJavaBuildComponents,
|
||||
java.PrepareForTestWithJavaDefaultModules,
|
||||
phony.PrepareForTestWithPhony,
|
||||
PrepareForTestWithFilesystemBuildComponents,
|
||||
)
|
||||
@@ -88,12 +92,21 @@ func TestFileSystemDeps(t *testing.T) {
|
||||
|
||||
phony {
|
||||
name: "phony",
|
||||
required: ["libquz"],
|
||||
required: [
|
||||
"libquz",
|
||||
"myapp",
|
||||
],
|
||||
}
|
||||
|
||||
cc_library {
|
||||
name: "libquz",
|
||||
}
|
||||
|
||||
android_app {
|
||||
name: "myapp",
|
||||
platform_apis: true,
|
||||
installable: true,
|
||||
}
|
||||
`)
|
||||
|
||||
// produces "myfilesystem.img"
|
||||
@@ -101,6 +114,7 @@ func TestFileSystemDeps(t *testing.T) {
|
||||
|
||||
fs := result.ModuleForTests("myfilesystem", "android_common").Module().(*filesystem)
|
||||
expected := []string{
|
||||
"app/myapp/myapp.apk",
|
||||
"bin/foo",
|
||||
"lib/libbar.so",
|
||||
"lib64/libbar.so",
|
||||
|
Reference in New Issue
Block a user