diff options
Diffstat (limited to 'apex/apex.go')
-rw-r--r-- | apex/apex.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apex/apex.go b/apex/apex.go index a9c8afce7..f6fecb5aa 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -1964,6 +1964,11 @@ func (a *apexBundle) ProcessBazelQueryResponse(ctx android.ModuleContext) { } a.outputFile = a.outputApexFile + if len(outputs.TidyFiles) > 0 { + tidyFiles := android.PathsForBazelOut(ctx, outputs.TidyFiles) + a.outputFile = android.AttachValidationActions(ctx, a.outputFile, tidyFiles) + } + // TODO(b/257829940): These are used by the apex_keys_text singleton; would probably be a clearer // interface if these were set in a provider rather than the module itself a.publicKeyFile = android.PathForBazelOut(ctx, outputs.BundleKeyInfo[0]) |