Merge "Add sh_binary dependencies to primary abi of the target" into main
This commit is contained in:
commit
88c21f567f
2 changed files with 7 additions and 4 deletions
10
apex/apex.go
10
apex/apex.go
|
@ -842,10 +842,12 @@ func (a *apexBundle) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|||
}
|
||||
|
||||
addDependenciesForNativeModules(ctx, deps, target, imageVariation)
|
||||
ctx.AddFarVariationDependencies([]blueprint.Variation{
|
||||
{Mutator: "os", Variation: target.OsVariation()},
|
||||
{Mutator: "arch", Variation: target.ArchVariation()},
|
||||
}, shBinaryTag, a.properties.Sh_binaries...)
|
||||
if isPrimaryAbi {
|
||||
ctx.AddFarVariationDependencies([]blueprint.Variation{
|
||||
{Mutator: "os", Variation: target.OsVariation()},
|
||||
{Mutator: "arch", Variation: target.ArchVariation()},
|
||||
}, shBinaryTag, a.properties.Sh_binaries...)
|
||||
}
|
||||
}
|
||||
|
||||
// Common-arch dependencies come next
|
||||
|
|
|
@ -5046,6 +5046,7 @@ func TestApexWithShBinary(t *testing.T) {
|
|||
key: "myapex.key",
|
||||
sh_binaries: ["myscript"],
|
||||
updatable: false,
|
||||
compile_multilib: "both",
|
||||
}
|
||||
|
||||
apex_key {
|
||||
|
|
Loading…
Reference in a new issue