Merge "Add apex name to description" am: 2fe818f8b0 am: 0c7a78cf82

Change-Id: I4eb7988d93b1e3f7bc549cd4d98edd1c441cd465
This commit is contained in:
Treehugger Robot
2020-02-15 01:04:13 +00:00

View File

@@ -1112,6 +1112,9 @@ func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext)
if !ctx.PrimaryArch() { if !ctx.PrimaryArch() {
suffix = append(suffix, ctx.Arch().ArchType.String()) suffix = append(suffix, ctx.Arch().ArchType.String())
} }
if apex, ok := m.module.(ApexModule); ok && !apex.IsForPlatform() {
suffix = append(suffix, apex.ApexName())
}
ctx.Variable(pctx, "moduleDesc", desc) ctx.Variable(pctx, "moduleDesc", desc)