Merge "Add some more properties to the bp2build APEX converter." am: 57dd3c40e8 am: 23c45bb446 am: b97add46c7 am: 422d4fa80b

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1778085

Change-Id: Ibe1606b7340872f9f964acffa14bdbf4792098d5
This commit is contained in:
Treehugger Robot
2021-07-27 03:35:55 +00:00
committed by Automerger Merge Worker
5 changed files with 139 additions and 9 deletions

View File

@@ -1104,6 +1104,8 @@ func AndroidTestHelperAppFactory() android.Module {
type AndroidAppCertificate struct {
android.ModuleBase
android.BazelModuleBase
properties AndroidAppCertificateProperties
Certificate Certificate
}
@@ -1119,6 +1121,7 @@ func AndroidAppCertificateFactory() android.Module {
module := &AndroidAppCertificate{}
module.AddProperties(&module.properties)
android.InitAndroidModule(module)
android.InitBazelModule(module)
return module
}