cosmetic: readability
Test: run `m nothing` Bug: NA Change-Id: Id58635cc949f07e5263ad67b0e78c66d19abba40
This commit is contained in:
parent
3e334cfed2
commit
4cff07db25
1 changed files with 12 additions and 14 deletions
26
context.go
26
context.go
|
@ -3757,32 +3757,30 @@ func (c *Context) AllTargets() (map[string]string, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
targets := map[string]string{}
|
targets := map[string]string{}
|
||||||
|
var collectTargets = func(actionDefs localBuildActions) error {
|
||||||
// Collect all the module build targets.
|
for _, buildDef := range actionDefs.buildDefs {
|
||||||
for _, module := range c.moduleInfo {
|
|
||||||
for _, buildDef := range module.actionDefs.buildDefs {
|
|
||||||
ruleName := buildDef.Rule.fullName(c.pkgNames)
|
ruleName := buildDef.Rule.fullName(c.pkgNames)
|
||||||
for _, output := range append(buildDef.Outputs, buildDef.ImplicitOutputs...) {
|
for _, output := range append(buildDef.Outputs, buildDef.ImplicitOutputs...) {
|
||||||
outputValue, err := output.Eval(c.globalVariables)
|
outputValue, err := output.Eval(c.globalVariables)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return err
|
||||||
}
|
}
|
||||||
targets[outputValue] = ruleName
|
targets[outputValue] = ruleName
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
// Collect all the module build targets.
|
||||||
|
for _, module := range c.moduleInfo {
|
||||||
|
if err := collectTargets(module.actionDefs); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Collect all the singleton build targets.
|
// Collect all the singleton build targets.
|
||||||
for _, info := range c.singletonInfo {
|
for _, info := range c.singletonInfo {
|
||||||
for _, buildDef := range info.actionDefs.buildDefs {
|
if err := collectTargets(info.actionDefs); err != nil {
|
||||||
ruleName := buildDef.Rule.fullName(c.pkgNames)
|
return nil, err
|
||||||
for _, output := range append(buildDef.Outputs, buildDef.ImplicitOutputs...) {
|
|
||||||
outputValue, err := output.Eval(c.globalVariables)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
targets[outputValue] = ruleName
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue