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

am: a22f30e0c9

Change-Id: Iefed80a035f623cc0427de22a3aa025f271a3b43
This commit is contained in:
Hsin-Yi Chen
2020-01-19 18:16:35 -08:00
committed by android-build-merger

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
}