diff options
author | Anton Hansson <hansson@google.com> | 2018-11-07 16:09:35 +0000 |
---|---|---|
committer | Michael Bestas <mkbestas@lineageos.org> | 2020-12-27 15:11:53 +0200 |
commit | 6cf619ff590565d7fa59d4fd0a0536774e33f2ed (patch) | |
tree | 845c33206c9f75144792f84689753fb49c9ca713 | |
parent | 5ba3dcbf66a369c3f76b679aff2a40e09cf2bff0 (diff) |
sdm660-common: Remove obsolete dex settings
This block is completely redundant because..
- WITH_DEXPREOPT := true is the default
- WITH_DEXPREOPT_PIC is never read
- DEX_PREOPT_DEFAULT := nostripping has no effect when the
BOARD_USES_SYSTEM_OTHER_ODEX flag is set to true
Test: make
Change-Id: I618a1e395ca1a14555cd50eef1a4f1aa079b553d
-rw-r--r-- | BoardConfigCommon.mk | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index e35d959..3a77e10 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -93,16 +93,6 @@ TARGET_ENABLE_MEDIADRM_64 := true # DT2W TARGET_TAP_TO_WAKE_NODE := "/sys/touchpanel/double_tap" -# Enable dexpreopt to speed boot time -ifeq ($(HOST_OS),linux) - ifneq ($(TARGET_BUILD_VARIANT),eng) - ifeq ($(WITH_DEXPREOPT),) - WITH_DEXPREOPT := true - WITH_DEXPREOPT_BOOT_IMG_AND_SYSTEM_SERVER_ONLY := true - endif - endif -endif - # FM ifeq ($(BOARD_HAVE_QCOM_FM),true) AUDIO_FEATURE_ENABLED_FM_POWER_OPT := true |