Merge "Do not create ABI dumps for NDK stub libraries"

This commit is contained in:
Hsin-Yi Chen
2020-01-20 02:11:16 +00:00
committed by Gerrit Code Review

View File

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