aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/module.go2
-rw-r--r--genrule/genrule.go6
2 files changed, 4 insertions, 4 deletions
diff --git a/common/module.go b/common/module.go
index bdaeb7aa..c22f000e 100644
--- a/common/module.go
+++ b/common/module.go
@@ -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(),
})
}
}
diff --git a/genrule/genrule.go b/genrule/genrule.go
index b5543570..8291d5b8 100644
--- a/genrule/genrule.go
+++ b/genrule/genrule.go
@@ -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)
}
}
}