Merge "Do not create ABI dumps for NDK stub libraries"
diff --git a/cc/cc.go b/cc/cc.go
index d1b97b4..022e350 100644
--- a/cc/cc.go
+++ b/cc/cc.go
@@ -1113,7 +1113,7 @@
 		// 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
 	}