diff --git a/cc/cc.go b/cc/cc.go index b1c8dee50..1826f5299 100644 --- a/cc/cc.go +++ b/cc/cc.go @@ -666,6 +666,10 @@ func (c *Module) bootstrap() bool { } func (c *Module) nativeCoverage() bool { + // Bug: http://b/137883967 - native-bridge modules do not currently work with coverage + if c.Target().NativeBridge == android.NativeBridgeEnabled { + return false + } return c.linker != nil && c.linker.nativeCoverage() }