Merge changes from topic "revert-2646423-HDQXAAHWBW" into main am: e298d42044

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2768071

Change-Id: I3efb286e8e011c2fb5ad2d3f6c4706be44e67d83
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Dwayne Barry 2023-10-02 22:07:13 +00:00 committed by Automerger Merge Worker
commit 0df7036509

View file

@ -334,12 +334,18 @@ func canDumpAbi(config android.Config) bool {
return false
}
// http://b/156513478
return true
// 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.
func canDiffAbi() bool {
return true
return false
}
func (this *stubDecorator) dumpAbi(ctx ModuleContext, symbolList android.Path) {