aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-04-20 23:46:34 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-04-20 23:46:34 +0000
commit8c1abddf2fa8c77acb50a542e9fd229c72213110 (patch)
treeb0da3163ca73e0df6b858ab40f1f2a2c7ca7e2d4
parentc42483d8139d2277218240047369419c79ee78bf (diff)
parent06efd1a9e13f16d8227a30fbcc21d557896a2c2b (diff)
downloadsoong-8c1abddf2fa8c77acb50a542e9fd229c72213110.tar.gz
Merge "Flag off abidw tasks." am: 03e6e00e60 am: f06eb4f259 am: 06efd1a9e1
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2552910 Change-Id: I5e2a424070eaa113d7c84dc625e4a6c758e7c8c1 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--cc/ndk_library.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/cc/ndk_library.go b/cc/ndk_library.go
index a82436135..f8a355950 100644
--- a/cc/ndk_library.go
+++ b/cc/ndk_library.go
@@ -342,7 +342,14 @@ func canDumpAbi(config android.Config) bool {
if android.InList("hwaddress", config.SanitizeDevice()) {
return false
}
- return true
+ // 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
}
// Feature flag to disable diffing against prebuilts.