resolve merge conflicts of ff3341b
to stage-aosp-master
Change-Id: I1883410889b8e6c6505042fcebca6c8764e15e9a
This commit is contained in:
commit
e6350dfddd
2 changed files with 6 additions and 0 deletions
|
@ -194,6 +194,7 @@ LOCAL_DPI_VARIANTS:=
|
|||
LOCAL_DPI_FILE_STEM:=
|
||||
LOCAL_SANITIZE:=
|
||||
LOCAL_SANITIZE_RECOVER:=
|
||||
LOCAL_NOSANITIZE:=
|
||||
LOCAL_DATA_BINDING:=
|
||||
LOCAL_DBUS_PROXY_PREFIX:=
|
||||
LOCAL_INIT_RC:=
|
||||
|
|
|
@ -34,6 +34,11 @@ ifeq ($(LOCAL_SANITIZE),never)
|
|||
my_sanitize :=
|
||||
endif
|
||||
|
||||
my_nosanitize = $(strip $(LOCAL_NOSANITIZE))
|
||||
ifneq ($(my_nosanitize),)
|
||||
my_sanitize := $(filter-out $(my_nosanitize),$(my_sanitize))
|
||||
endif
|
||||
|
||||
# TSAN is not supported on 32-bit architectures. For non-multilib cases, make
|
||||
# its use an error. For multilib cases, don't use it for the 32-bit case.
|
||||
ifneq ($(filter thread,$(my_sanitize)),)
|
||||
|
|
Loading…
Reference in a new issue