Merge "Selectively add _asan flavor suffix." am: e5143608df

am: faea53a89b

Change-Id: I15293b3a98a54592027afd87f6b880a66ec340a3
This commit is contained in:
Vishwath Mohan 2017-05-10 00:20:01 +00:00 committed by android-build-merger
commit 8b4eaf5562
1 changed files with 6 additions and 1 deletions

View File

@ -191,11 +191,16 @@ endef
BUILDINFO_SH := build/tools/buildinfo.sh
# TARGET_BUILD_FLAVOR and ro.build.flavor are used only by the test harness to distinguish builds.
# TARGET_BUILD_FLAVOR and ro.build.flavor are used only by the test
# harness to distinguish builds. Only add _asan for a sanitized build
# if it isn't already a part of the flavor (via a dedicated lunch
# config for example).
TARGET_BUILD_FLAVOR := $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)
ifdef SANITIZE_TARGET
ifeq (,$(findstring _asan,$(TARGET_BUILD_FLAVOR)))
TARGET_BUILD_FLAVOR := $(TARGET_BUILD_FLAVOR)_asan
endif
endif
ifdef TARGET_SYSTEM_PROP
system_prop_file := $(TARGET_SYSTEM_PROP)