diff options
author | 2025-02-25 13:06:35 -0800 | |
---|---|---|
committer | 2025-02-25 13:06:35 -0800 | |
commit | ba620cb24e2b35cd053151c36b54005d73aafd4c (patch) | |
tree | 8ea5668091d4bcad4dec9388cd3dd9e8ff49f185 | |
parent | 9d851d8ff3b1756e3a645dbb3c37de28cbcbbbea (diff) | |
parent | a7a6cf63bdb2e5fe04daffc840fc84e82dc8193f (diff) |
Merge "Filter out framework and ext in uses library tag propagation in make" into main
-rw-r--r-- | core/dex_preopt_odex_install.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dex_preopt_odex_install.mk b/core/dex_preopt_odex_install.mk index e7086b7e4e..6fe9d38a36 100644 --- a/core/dex_preopt_odex_install.mk +++ b/core/dex_preopt_odex_install.mk @@ -152,7 +152,7 @@ my_dexpreopt_libs_all := $(sort $(my_dexpreopt_libs) $(my_dexpreopt_libs_compat) # this dexpreopt.config is generated. So it's necessary to add file-level # dependencies between dexpreopt.config files. my_dexpreopt_dep_configs := $(foreach lib, \ - $(filter-out $(my_dexpreopt_libs_compat),$(LOCAL_USES_LIBRARIES) $(my_filtered_optional_uses_libraries)), \ + $(filter-out $(my_dexpreopt_libs_compat) $(FRAMEWORK_LIBRARIES),$(LOCAL_USES_LIBRARIES) $(my_filtered_optional_uses_libraries)), \ $(call intermediates-dir-for,JAVA_LIBRARIES,$(lib),,)/dexpreopt.config) # 1: SDK version |