forked from openkylin/platform_build
[make] Zero and pattern initialization of heap memory.
Bug: 155227507 Test: build with and without MALLOC_PATTERN_FILL_CONTENTS, MALLOC_ZERO_CONTENTS Change-Id: If6a7345411553c582ed713cfe661ce69e524de0f
This commit is contained in:
parent
b5e650a119
commit
701cbae7e5
|
@ -132,6 +132,8 @@ $(call add_json_bool, BoardVndkRuntimeDisable, $(BOARD_VNDK_RUNTIME_DI
|
||||||
$(call add_json_list, DeviceSystemSdkVersions, $(BOARD_SYSTEMSDK_VERSIONS))
|
$(call add_json_list, DeviceSystemSdkVersions, $(BOARD_SYSTEMSDK_VERSIONS))
|
||||||
$(call add_json_list, Platform_systemsdk_versions, $(PLATFORM_SYSTEMSDK_VERSIONS))
|
$(call add_json_list, Platform_systemsdk_versions, $(PLATFORM_SYSTEMSDK_VERSIONS))
|
||||||
$(call add_json_bool, Malloc_not_svelte, $(call invert_bool,$(filter true,$(MALLOC_SVELTE))))
|
$(call add_json_bool, Malloc_not_svelte, $(call invert_bool,$(filter true,$(MALLOC_SVELTE))))
|
||||||
|
$(call add_json_bool, Malloc_zero_contents, $(MALLOC_ZERO_CONTENTS))
|
||||||
|
$(call add_json_bool, Malloc_pattern_fill_contents, $(MALLOC_PATTERN_FILL_CONTENTS))
|
||||||
$(call add_json_str, Override_rs_driver, $(OVERRIDE_RS_DRIVER))
|
$(call add_json_str, Override_rs_driver, $(OVERRIDE_RS_DRIVER))
|
||||||
|
|
||||||
$(call add_json_bool, UncompressPrivAppDex, $(call invert_bool,$(filter true,$(DONT_UNCOMPRESS_PRIV_APPS_DEXS))))
|
$(call add_json_bool, UncompressPrivAppDex, $(call invert_bool,$(filter true,$(DONT_UNCOMPRESS_PRIV_APPS_DEXS))))
|
||||||
|
|
Loading…
Reference in New Issue