Fix gofmt

Change-Id: Ib5e4db599a6dd858b3a1b1cdb75017b01eac4911
This commit is contained in:
Colin Cross
2015-12-17 16:33:43 -08:00
parent dd0dbe631e
commit 1604ecf5cc
2 changed files with 4 additions and 4 deletions

View File

@@ -595,7 +595,7 @@ func (c *buildTargetSingleton) GenerateBuildActions(ctx blueprint.SingletonConte
Implicits: dirModules[dir],
// HACK: checkbuild should be an optional build, but force it
// enabled for now in standalone builds
Optional: ctx.Config().(Config).EmbeddedInMake(),
Optional: ctx.Config().(Config).EmbeddedInMake(),
})
}
}

View File

@@ -86,9 +86,9 @@ func genruleDepsMutator(ctx common.AndroidBottomUpMutatorContext) {
if g, ok := ctx.Module().(*generator); ok {
if g.properties.Tool != "" {
ctx.AddFarVariationDependencies([]blueprint.Variation{
{"host_or_device", common.Host.String()},
{"host_type", common.CurrentHostType().String()},
}, g.properties.Tool)
{"host_or_device", common.Host.String()},
{"host_type", common.CurrentHostType().String()},
}, g.properties.Tool)
}
}
}