diff options
author | 2022-02-24 13:58:07 +0900 | |
---|---|---|
committer | 2022-02-24 13:59:45 +0900 | |
commit | a6d3667b670afd01d7e0c96df599ad5a1618f23b (patch) | |
tree | 4b02243ecb0d960a0f077fd3ce1d0d8e40198918 /apex/builder.go | |
parent | 315352e71c04e19a1350d7fcc0f7670743d1ec7b (diff) |
apex supports ".apex" tag
Tests can embed non-compressed .apex output with the tag.
Bug: 221024307
Test: soong test
Change-Id: Id4a239d1897237105a064cea8c97029f5b996a98
Diffstat (limited to 'apex/builder.go')
-rw-r--r-- | apex/builder.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apex/builder.go b/apex/builder.go index fc4bf8a22..183c21562 100644 --- a/apex/builder.go +++ b/apex/builder.go @@ -810,6 +810,9 @@ func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext) { Implicits: implicits, Args: args, }) + if suffix == imageApexSuffix { + a.outputApexFile = signedOutputFile + } a.outputFile = signedOutputFile if ctx.ModuleDir() != "system/apex/apexd/apexd_testdata" && a.testOnlyShouldForceCompression() { |