Do not check ABI for coverage variants

Bug: 153119422
Test: make NATIVE_COVERAGE=true out/target/product/generic_x86/lsdump_paths.txt
Change-Id: I1cfa1526436d0587b801bd222f1037f743c0528d
This commit is contained in:
Hsin-Yi Chen 2020-04-07 21:42:19 +08:00
parent b54015fa54
commit f81bb657d3

View file

@ -1194,6 +1194,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
}