Don't strip for eng builds.
bug: 72150787 Test: m Change-Id: Ifdd403dfecb440e32c4d0c00a7543820b2098359
This commit is contained in:
parent
57923be123
commit
ed6ee7b64d
|
@ -35,12 +35,14 @@ endif
|
||||||
# Conditional to building on linux, as dex2oat currently does not work on darwin.
|
# Conditional to building on linux, as dex2oat currently does not work on darwin.
|
||||||
ifeq ($(HOST_OS),linux)
|
ifeq ($(HOST_OS),linux)
|
||||||
WITH_DEXPREOPT ?= true
|
WITH_DEXPREOPT ?= true
|
||||||
# For an eng build only pre-opt the boot image and system server. This gives reasonable performance
|
|
||||||
# and still allows a simple workflow: building in frameworks/base and syncing.
|
|
||||||
ifeq (eng,$(TARGET_BUILD_VARIANT))
|
ifeq (eng,$(TARGET_BUILD_VARIANT))
|
||||||
|
# Don't strip for quick development turnarounds.
|
||||||
|
DEX_PREOPT_DEFAULT := nostripping
|
||||||
|
# For an eng build only pre-opt the boot image and system server. This gives reasonable performance
|
||||||
|
# and still allows a simple workflow: building in frameworks/base and syncing.
|
||||||
WITH_DEXPREOPT_BOOT_IMG_AND_SYSTEM_SERVER_ONLY ?= true
|
WITH_DEXPREOPT_BOOT_IMG_AND_SYSTEM_SERVER_ONLY ?= true
|
||||||
endif
|
endif
|
||||||
# Add mini-debug-info to the boot classpath unless explicitly asked not to.
|
# Add mini-debug-info to the boot classpath unless explicitly asked not to.
|
||||||
ifneq (false,$(WITH_DEXPREOPT_DEBUG_INFO))
|
ifneq (false,$(WITH_DEXPREOPT_DEBUG_INFO))
|
||||||
PRODUCT_DEX_PREOPT_BOOT_FLAGS += --generate-mini-debug-info
|
PRODUCT_DEX_PREOPT_BOOT_FLAGS += --generate-mini-debug-info
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue