am 9aa41303: asan: update condition to work with multiple SANITIZE_TARGET values.

* commit '9aa413036bde2c80c25b381bd685ab05f8390127':
  asan: update condition to work with multiple SANITIZE_TARGET values.
This commit is contained in:
Ivan Krasin 2015-09-19 19:52:05 +00:00 committed by Android Git Automerger
commit b49f5cf83f

View File

@ -157,7 +157,7 @@ LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
include $(BUILD_SYSTEM)/base_rules.mk
all_fc_files := file_contexts
ifeq (address,$(strip $(SANITIZE_TARGET)))
ifneq ($(filter address,$(SANITIZE_TARGET)),)
all_fc_files := $(all_fc_files) file_contexts_asan
endif
all_fc_files := $(call build_policy, $(all_fc_files))