Merge "Enable bloaty artifact for checkbuild"

This commit is contained in:
Thiébaud Weksteen 2021-02-26 07:44:59 +00:00 committed by Gerrit Code Review
commit 30e3e9d21d
1 changed files with 6 additions and 1 deletions

View File

@ -23,6 +23,7 @@ import (
)
const bloatyDescriptorExt = "bloaty.csv"
const protoFilename = "binary_sizes.pb"
var (
fileSizeMeasurerKey blueprint.ProviderKey
@ -87,6 +88,10 @@ func (singleton *sizesSingleton) GenerateBuildActions(ctx android.SingletonConte
ctx.Build(pctx, android.BuildParams{
Rule: bloatyMerger,
Inputs: android.SortedUniquePaths(deps),
Output: android.PathForOutput(ctx, "binary_sizes.pb"),
Output: android.PathForOutput(ctx, protoFilename),
})
}
func (singleton *sizesSingleton) MakeVars(ctx android.MakeVarsContext) {
ctx.DistForGoalWithFilename("checkbuild", android.PathForOutput(ctx, protoFilename), protoFilename)
}