aboutsummaryrefslogtreecommitdiffstats
path: root/apex/apex.go
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2019-04-23 18:00:10 +0900
committerJiyong Park <jiyong@google.com>2019-04-23 18:03:16 +0900
commita41f12a6fa05a030b426fe68dc0f5d6203a73c79 (patch)
tree3cacf82a1dc971788c5c1ac076c934d7693e1cca /apex/apex.go
parentefcdd3b4bd676dcdffa3f926c8434c213726b749 (diff)
downloadbuild_soong-a41f12a6fa05a030b426fe68dc0f5d6203a73c79.tar.gz
build_soong-a41f12a6fa05a030b426fe68dc0f5d6203a73c79.tar.bz2
build_soong-a41f12a6fa05a030b426fe68dc0f5d6203a73c79.zip
Prebuilt APEXes are recoreded in apexkeys.txt
apexkeys.txt now correctly lists prebuilt APEXes with keys specified as PRESIGNED. This change also fixes a bug that non-installable APEXes are listed in the file. Bug: 131130235 Test: m out/soong/apexkeys.txt and check that com.android.apex.cts.shim.apex is listed there with PRESIGNED keys. Change-Id: Ib6d391a82864714743a1cc59cd655bea917b5073
Diffstat (limited to 'apex/apex.go')
-rw-r--r--apex/apex.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/apex/apex.go b/apex/apex.go
index 004de86c..178927da 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -1362,11 +1362,15 @@ func (p *Prebuilt) Srcs() android.Paths {
return android.Paths{p.outputApex}
}
+func (p *Prebuilt) InstallFilename() string {
+ return proptools.StringDefault(p.properties.Filename, p.BaseModuleName()+imageApexSuffix)
+}
+
func (p *Prebuilt) GenerateAndroidBuildActions(ctx android.ModuleContext) {
// TODO(jungjw): Check the key validity.
p.inputApex = p.Prebuilt().SingleSourcePath(ctx)
p.installDir = android.PathForModuleInstall(ctx, "apex")
- p.installFilename = proptools.StringDefault(p.properties.Filename, ctx.ModuleName()+imageApexSuffix)
+ p.installFilename = p.InstallFilename()
if !strings.HasSuffix(p.installFilename, imageApexSuffix) {
ctx.ModuleErrorf("filename should end in %s for prebuilt_apex", imageApexSuffix)
}