Merge "Do not check ABI for coverage variants" am: acc5448f2b

Change-Id: Iedf40c8ac59318d131254a2689525948f9764c39
This commit is contained in:
Treehugger Robot
2020-04-20 04:10:55 +00:00
committed by Automerger Merge Worker

View File

@@ -1195,6 +1195,11 @@ func (ctx *moduleContextImpl) shouldCreateSourceAbiDump() bool {
return false
}
// Coverage builds have extra symbols.
if ctx.mod.isCoverageVariant() {
return false
}
if ctx.ctx.Fuchsia() {
return false
}