diff options
Diffstat (limited to 'apex/builder.go')
-rw-r--r-- | apex/builder.go | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/apex/builder.go b/apex/builder.go index ad673d656..acfb8c577 100644 --- a/apex/builder.go +++ b/apex/builder.go @@ -373,14 +373,7 @@ func (a *apexBundle) buildBundleConfig(ctx android.ModuleContext) android.Output panic(fmt.Errorf("error while marshalling to %q: %#v", output, err)) } - ctx.Build(pctx, android.BuildParams{ - Rule: android.WriteFile, - Output: output, - Description: "Bundle Config " + output.String(), - Args: map[string]string{ - "content": string(j), - }, - }) + android.WriteFileRule(ctx, output, string(j)) return output.OutputPath } |