summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cc/ndk_library.go10
1 files changed, 2 insertions, 8 deletions
diff --git a/cc/ndk_library.go b/cc/ndk_library.go
index 56c57b94c..40bf218c1 100644
--- a/cc/ndk_library.go
+++ b/cc/ndk_library.go
@@ -334,18 +334,12 @@ func canDumpAbi(config android.Config) bool {
return false
}
// http://b/156513478
- // http://b/277624006
- // This step is expensive. We're not able to do anything with the outputs of
- // this step yet (canDiffAbi is flagged off because libabigail isn't able to
- // handle all our libraries), disable it. There's no sense in protecting
- // against checking in code that breaks abidw since by the time any of this
- // can be turned on we'll need to migrate to STG anyway.
- return false
+ return true
}
// Feature flag to disable diffing against prebuilts.
func canDiffAbi() bool {
- return false
+ return true
}
func (this *stubDecorator) dumpAbi(ctx ModuleContext, symbolList android.Path) {