am f9f83ed1
: Merge "emulator: Enable dex-preoptimization"
* commit 'f9f83ed19e83313ffaf542b148886bcb860ca12e': emulator: Enable dex-preoptimization
This commit is contained in:
commit
4b227c708c
2 changed files with 11 additions and 0 deletions
|
@ -30,3 +30,9 @@ USE_CAMERA_STUB := true
|
|||
|
||||
# Set /system/bin/sh to mksh, not ash, to test the transition.
|
||||
TARGET_SHELL := mksh
|
||||
|
||||
# Enable dex-preoptimization to speed up the first boot sequence
|
||||
# of an SDK AVD. Note that this operation only works on Linux for now
|
||||
ifeq ($(HOST_OS),linux)
|
||||
WITH_DEXPREOPT := true
|
||||
endif
|
||||
|
|
|
@ -21,3 +21,8 @@ USE_CAMERA_STUB := true
|
|||
# Set /system/bin/sh to mksh, not ash, to test the transition.
|
||||
TARGET_SHELL := mksh
|
||||
|
||||
# Enable dex-preoptimization to speed up the first boot sequence
|
||||
# of an SDK AVD. Note that this operation only works on Linux for now
|
||||
ifeq ($(HOST_OS),linux)
|
||||
WITH_DEXPREOPT := true
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue