Merge "Re-enable abi checking for hwasan builds." into main

This commit is contained in:
Elliott Hughes
2024-03-26 21:02:38 +00:00
committed by Gerrit Code Review

View File

@@ -325,13 +325,6 @@ func canDumpAbi(config android.Config) bool {
if runtime.GOOS == "darwin" {
return false
}
// abidw doesn't currently handle top-byte-ignore correctly. Disable ABI
// dumping for those configs while we wait for a fix. We'll still have ABI
// checking coverage from non-hwasan builds.
// http://b/190554910
if android.InList("hwaddress", config.SanitizeDevice()) {
return false
}
// http://b/156513478
return config.ReleaseNdkAbiMonitored()
}