Merge "Add some more properties to the bp2build APEX converter."

This commit is contained in:
Treehugger Robot
2021-07-27 02:17:51 +00:00
committed by Gerrit Code Review
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
}