Merge "Support missing a shared library variant."
This commit is contained in:
commit
9acd7c3d36
1 changed files with 5 additions and 2 deletions
7
cc/cc.go
7
cc/cc.go
|
@ -1266,8 +1266,11 @@ func orderStaticModuleDeps(module LinkableInterface, staticDeps []LinkableInterf
|
||||||
allTransitiveDeps := make(map[android.Path][]android.Path, len(staticDeps))
|
allTransitiveDeps := make(map[android.Path][]android.Path, len(staticDeps))
|
||||||
staticDepFiles := []android.Path{}
|
staticDepFiles := []android.Path{}
|
||||||
for _, dep := range staticDeps {
|
for _, dep := range staticDeps {
|
||||||
allTransitiveDeps[dep.OutputFile().Path()] = dep.GetDepsInLinkOrder()
|
// The OutputFile may not be valid for a variant not present, and the AllowMissingDependencies flag is set.
|
||||||
staticDepFiles = append(staticDepFiles, dep.OutputFile().Path())
|
if dep.OutputFile().Valid() {
|
||||||
|
allTransitiveDeps[dep.OutputFile().Path()] = dep.GetDepsInLinkOrder()
|
||||||
|
staticDepFiles = append(staticDepFiles, dep.OutputFile().Path())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
sharedDepFiles := []android.Path{}
|
sharedDepFiles := []android.Path{}
|
||||||
for _, sharedDep := range sharedDeps {
|
for _, sharedDep := range sharedDeps {
|
||||||
|
|
Loading…
Reference in a new issue