diff options
author | Anton Hansson <hansson@google.com> | 2018-11-07 16:09:35 +0000 |
---|---|---|
committer | Davide Garberi <dade.garberi@gmail.com> | 2021-10-19 15:09:38 +0200 |
commit | 74a8152875b01d7b97923175d2b822edf21b6aa6 (patch) | |
tree | 8e561b3dfcbe4d7a7d0db48e17e39504a399c420 | |
parent | 2517ba531e1ba67705bcbd4df91be55c1e12f546 (diff) |
msm8996-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 | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index d45f7d4..cff94c1 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -108,14 +108,6 @@ DEVICE_SPECIFIC_CAMERA_PATH := $(VENDOR_PATH)/camera # Charger BOARD_CHARGER_DISABLE_INIT_BLANK := true -# Dex -ifeq ($(HOST_OS),linux) - ifneq ($(TARGET_BUILD_VARIANT),eng) - WITH_DEXPREOPT ?= true - endif -endif -WITH_DEXPREOPT_BOOT_IMG_AND_SYSTEM_SERVER_ONLY ?= true - # Display TARGET_USES_C2D_COMPOSITION := true TARGET_USES_GRALLOC1 := true |