forked from openkylin/platform_build
Build: Add sanitized app_process
Add sanitized app_process module to PRODUCT_PACKAGES when building with SANITIZE_LITE=true Bug: 33224213 Test: m SANITIZE_TARGET=address SANITIZE_LITE=true && ls $OUT/system/bin/asan Change-Id: Ic67976f1b897b638d569ec6f42d5a8d59f8a9285
This commit is contained in:
parent
e69f15c9dc
commit
a35d92e431
|
@ -129,6 +129,13 @@ PRODUCT_PACKAGES += \
|
|||
vold \
|
||||
wm
|
||||
|
||||
# In SANITIZE_LITE, we have a specialized modules that are sanitized.
|
||||
ifeq ($(SANITIZE_LITE),true)
|
||||
PRODUCT_PACKAGES += \
|
||||
app_process__asan \
|
||||
|
||||
endif
|
||||
|
||||
# Packages included only for eng or userdebug builds, previously debug tagged
|
||||
PRODUCT_PACKAGES_DEBUG := \
|
||||
perfprofd
|
||||
|
|
Loading…
Reference in New Issue