From b32c0009a30098efbfb59a533bf3b213a3bbfb24 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Tue, 16 Jun 2015 16:04:01 -0700 Subject: [PATCH] Remove LOCAL_ADDRESS_SANITIZER. I've migrated all users of this to the new option now, so we can drop this. Dropping `SANITIZE_HOST := true` will have to wait until the build server configs have been updated. Change-Id: I591436e197a6c6c079a6cd6a2decb702b574cd71 --- core/config_sanitizers.mk | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/core/config_sanitizers.mk b/core/config_sanitizers.mk index bb1869515..9cff6ea33 100644 --- a/core/config_sanitizers.mk +++ b/core/config_sanitizers.mk @@ -4,17 +4,6 @@ my_sanitize := $(strip $(LOCAL_SANITIZE)) -# Keep compatibility for LOCAL_ADDRESS_SANITIZER until all targets have moved to -# `LOCAL_SANITIZE := address`. -ifeq ($(strip $(LOCAL_ADDRESS_SANITIZER)),true) - my_sanitize += address -endif - -# And `LOCAL_SANITIZE := never`. -ifeq ($(strip $(LOCAL_ADDRESS_SANITIZER)),false) - my_sanitize := never -endif - # Don't apply sanitizers to NDK code. ifdef LOCAL_SDK_VERSION my_sanitize := never -- 2.11.0