From affbaed3be26b284c98c67294db3616d9d76dc87 Mon Sep 17 00:00:00 2001 From: Ulya Trafimovich Date: Tue, 13 Apr 2021 15:55:08 +0100 Subject: [PATCH] Regroup conditions related to LOCAL_ENFORCE_USES_LIBRARIES. No functional changes. Bug: 132357300 Test: lunch aosp_cf_x86_64_phone-userdebug && m Change-Id: Ia43ac9306c40df5bec525ae1b245add57f568ee5 --- core/dex_preopt_odex_install.mk | 39 +++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/core/dex_preopt_odex_install.mk b/core/dex_preopt_odex_install.mk index 6b05d0d66..c6cc60d4e 100644 --- a/core/dex_preopt_odex_install.mk +++ b/core/dex_preopt_odex_install.mk @@ -31,9 +31,8 @@ ifeq (false,$(LOCAL_DEX_PREOPT)) LOCAL_DEX_PREOPT := endif -# Disable checks and preopt for tests. +# Disable preopt for tests. ifneq (,$(filter $(LOCAL_MODULE_TAGS),tests)) - LOCAL_ENFORCE_USES_LIBRARIES := false LOCAL_DEX_PREOPT := endif @@ -52,25 +51,12 @@ ifneq (true,$(WITH_DEXPREOPT)) LOCAL_DEX_PREOPT := endif -# Disable checks if dexpreopt is globally disabled. -# Without dexpreopt the check is not necessary, and although it is good to have, -# it is difficult to maintain on non-linux build platforms where dexpreopt is -# generally disabled (the check may fail due to various unrelated reasons, such -# as a failure to get manifest from an APK). -ifneq (true,$(WITH_DEXPREOPT)) - LOCAL_ENFORCE_USES_LIBRARIES := false -endif -ifeq (true,$(WITH_DEXPREOPT_BOOT_IMG_AND_SYSTEM_SERVER_ONLY)) - LOCAL_ENFORCE_USES_LIBRARIES := false -endif - ifdef LOCAL_UNINSTALLABLE_MODULE LOCAL_DEX_PREOPT := endif -# Disable checks and preopt if the app contains no java code. +# Disable preopt if the app contains no java code. ifeq (,$(strip $(built_dex)$(my_prebuilt_src_file)$(LOCAL_SOONG_DEX_JAR))) - LOCAL_ENFORCE_USES_LIBRARIES := false LOCAL_DEX_PREOPT := endif @@ -219,6 +205,27 @@ ifndef my_manifest_or_apk endif endif +# Disable the check for tests. +ifneq (,$(filter $(LOCAL_MODULE_TAGS),tests)) + LOCAL_ENFORCE_USES_LIBRARIES := false +endif + +# Disable the check if the app contains no java code. +ifeq (,$(strip $(built_dex)$(my_prebuilt_src_file)$(LOCAL_SOONG_DEX_JAR))) + LOCAL_ENFORCE_USES_LIBRARIES := false +endif + +# Disable checks if dexpreopt is globally disabled. +# Without dexpreopt the check is not necessary, and although it is good to have, +# it is difficult to maintain on non-linux build platforms where dexpreopt is +# generally disabled (the check may fail due to various unrelated reasons, such +# as a failure to get manifest from an APK). +ifneq (true,$(WITH_DEXPREOPT)) + LOCAL_ENFORCE_USES_LIBRARIES := false +else ifeq (true,$(WITH_DEXPREOPT_BOOT_IMG_AND_SYSTEM_SERVER_ONLY)) + LOCAL_ENFORCE_USES_LIBRARIES := false +endif + # Verify LOCAL_USES_LIBRARIES/LOCAL_OPTIONAL_USES_LIBRARIES # If LOCAL_ENFORCE_USES_LIBRARIES is not set, default to true if either of LOCAL_USES_LIBRARIES or # LOCAL_OPTIONAL_USES_LIBRARIES are specified.