Merge "Do not check ABI for coverage variants"

This commit is contained in:
Treehugger Robot
2020-04-20 03:50:03 +00:00
committed by Gerrit Code Review

View File

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