commit | a22f30e0c932ec85df72e808ae3e595fe0220e0f | [log] [tgz] |
---|---|---|
author | Hsin-Yi Chen <hsinyichen@google.com> | Mon Jan 20 02:11:16 2020 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Jan 20 02:11:16 2020 +0000 |
tree | f2cee598e004835b9e99e2bb037d9fcadcb7173c | |
parent | 5fdf5d4b3ef854a2265475ff26054e510c039fba [diff] | |
parent | d2451683d9f4fbeba60d9bf984fcd105d5e5a15d [diff] |
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 }