Skip to content
Snippets Groups Projects
Commit b49f5cf8 authored by Ivan Krasin's avatar Ivan Krasin Committed by Android Git Automerger
Browse files

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

* commit '9aa41303':
  asan: update condition to work with multiple SANITIZE_TARGET values.
parents 33f36369 9aa41303
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment