Merge "Do not create ABI dumps for NDK stub libraries" am: a22f30e0c9 am: 4ced3e137a

Change-Id: I5522ab39851b4e16b5913945d26db084a6457bf9
This commit is contained in:
Automerger Merge Worker
2020-01-20 02:29:28 +00:00

View File

@@ -1113,7 +1113,7 @@ func (ctx *moduleContextImpl) shouldCreateSourceAbiDump() bool {
// Host modules do not need ABI dumps. // Host modules do not need ABI dumps.
return false return false
} }
if ctx.isStubs() { if ctx.isStubs() || ctx.isNDKStubLibrary() {
// Stubs do not need ABI dumps. // Stubs do not need ABI dumps.
return false return false
} }