am 7ec4c228: am e80ec0c5: Merge "libutils: Enable LOCAL_SANITIZE := integer"

* commit '7ec4c228ee9d50d16306331abacb607bc70fadd8':
  libutils: Enable LOCAL_SANITIZE := integer
This commit is contained in:
Nick Kralevich 2015-08-24 21:51:14 +00:00 committed by Android Git Automerger
commit b37862e498

View file

@ -92,6 +92,8 @@ LOCAL_SHARED_LIBRARIES := \
libdl libdl
LOCAL_MODULE := libutils LOCAL_MODULE := libutils
LOCAL_CLANG := true
LOCAL_SANITIZE := integer
include $(BUILD_STATIC_LIBRARY) include $(BUILD_STATIC_LIBRARY)
# For the device, shared # For the device, shared
@ -106,6 +108,8 @@ LOCAL_SHARED_LIBRARIES := \
liblog liblog
LOCAL_CFLAGS := -Werror LOCAL_CFLAGS := -Werror
LOCAL_CLANG := true
LOCAL_SANITIZE := integer
include $(BUILD_SHARED_LIBRARY) include $(BUILD_SHARED_LIBRARY)