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
24
context.go
24
context.go
|
@ -3757,33 +3757,31 @@ func (c *Context) AllTargets() (map[string]string, error) {
|
|||
}
|
||||
|
||||
targets := map[string]string{}
|
||||
|
||||
// Collect all the module build targets.
|
||||
for _, module := range c.moduleInfo {
|
||||
for _, buildDef := range module.actionDefs.buildDefs {
|
||||
var collectTargets = func(actionDefs localBuildActions) error {
|
||||
for _, buildDef := range actionDefs.buildDefs {
|
||||
ruleName := buildDef.Rule.fullName(c.pkgNames)
|
||||
for _, output := range append(buildDef.Outputs, buildDef.ImplicitOutputs...) {
|
||||
outputValue, err := output.Eval(c.globalVariables)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
return err
|
||||
}
|
||||
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.
|
||||
for _, info := range c.singletonInfo {
|
||||
for _, buildDef := range info.actionDefs.buildDefs {
|
||||
ruleName := buildDef.Rule.fullName(c.pkgNames)
|
||||
for _, output := range append(buildDef.Outputs, buildDef.ImplicitOutputs...) {
|
||||
outputValue, err := output.Eval(c.globalVariables)
|
||||
if err != nil {
|
||||
if err := collectTargets(info.actionDefs); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
targets[outputValue] = ruleName
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return targets, nil
|
||||
|
|
Loading…
Reference in a new issue