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
commit acc5448f2b
1 changed files with 5 additions and 0 deletions

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
}