forked from openkylin/platform_build
Merged and dist lists of unused methods from R8
Merge all the proguard_usage.zip files produced by the R8 rules and dist the result. Bug: 151857441 Test: m TARGET_BUILD_APPS=DocumentsUI dist Change-Id: I7e6d73241478016093a203dc7bd86407ab86a4ac
This commit is contained in:
parent
14350c575f
commit
a9b9e6e5ff
|
@ -4892,6 +4892,31 @@ $(PROGUARD_DICT_ZIP): $(SOONG_ZIP)
|
||||||
sed -e 's/\(.*\)\/proguard_dictionary/\0\n\1\/classes.jar/' > $(PRIVATE_LIST_FILE)
|
sed -e 's/\(.*\)\/proguard_dictionary/\0\n\1\/classes.jar/' > $(PRIVATE_LIST_FILE)
|
||||||
$(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(OUT_DIR)/.. -l $(PRIVATE_LIST_FILE)
|
$(SOONG_ZIP) --ignore_missing_files -d -o $@ -C $(OUT_DIR)/.. -l $(PRIVATE_LIST_FILE)
|
||||||
|
|
||||||
|
#------------------------------------------------------------------
|
||||||
|
# A zip of Proguard usage files.
|
||||||
|
#
|
||||||
|
PROGUARD_USAGE_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-usage-$(FILE_NAME_TAG).zip
|
||||||
|
# For apps_only build we'll establish the dependency later in build/make/core/main.mk.
|
||||||
|
ifeq (,$(TARGET_BUILD_UNBUNDLED))
|
||||||
|
$(PROGUARD_USAGE_ZIP): \
|
||||||
|
$(INSTALLED_SYSTEMIMAGE_TARGET) \
|
||||||
|
$(INSTALLED_RAMDISK_TARGET) \
|
||||||
|
$(INSTALLED_BOOTIMAGE_TARGET) \
|
||||||
|
$(INSTALLED_USERDATAIMAGE_TARGET) \
|
||||||
|
$(INSTALLED_VENDORIMAGE_TARGET) \
|
||||||
|
$(INSTALLED_PRODUCTIMAGE_TARGET) \
|
||||||
|
$(INSTALLED_SYSTEM_EXTIMAGE_TARGET) \
|
||||||
|
$(INSTALLED_ODMIMAGE_TARGET) \
|
||||||
|
$(INSTALLED_VENDOR_DLKMIMAGE_TARGET) \
|
||||||
|
$(INSTALLED_ODM_DLKMIMAGE_TARGET) \
|
||||||
|
$(updater_dep)
|
||||||
|
endif
|
||||||
|
$(PROGUARD_USAGE_ZIP): PRIVATE_LIST_FILE := $(call intermediates-dir-for,PACKAGING,proguard_usage)/filelist
|
||||||
|
$(PROGUARD_USAGE_ZIP): $(MERGE_ZIPS)
|
||||||
|
@echo "Packaging Proguard usage files."
|
||||||
|
mkdir -p $(dir $@) $(TARGET_OUT_COMMON_INTERMEDIATES)/APPS $(dir $(PRIVATE_LIST_FILE))
|
||||||
|
find $(TARGET_OUT_COMMON_INTERMEDIATES)/APPS -name proguard_usage.zip > $(PRIVATE_LIST_FILE)
|
||||||
|
$(MERGE_ZIPS) $@ @$(PRIVATE_LIST_FILE)
|
||||||
|
|
||||||
ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS))
|
ifeq (true,$(PRODUCT_USE_DYNAMIC_PARTITIONS))
|
||||||
|
|
||||||
|
|
|
@ -275,6 +275,7 @@ LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR :=
|
||||||
LOCAL_SOONG_LINK_TYPE :=
|
LOCAL_SOONG_LINK_TYPE :=
|
||||||
LOCAL_SOONG_LINT_REPORTS :=
|
LOCAL_SOONG_LINT_REPORTS :=
|
||||||
LOCAL_SOONG_PROGUARD_DICT :=
|
LOCAL_SOONG_PROGUARD_DICT :=
|
||||||
|
LOCAL_SOONG_PROGUARD_USAGE_ZIP :=
|
||||||
LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE :=
|
LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE :=
|
||||||
LOCAL_SOONG_DEVICE_RRO_DIRS :=
|
LOCAL_SOONG_DEVICE_RRO_DIRS :=
|
||||||
LOCAL_SOONG_PRODUCT_RRO_DIRS :=
|
LOCAL_SOONG_PRODUCT_RRO_DIRS :=
|
||||||
|
|
|
@ -1666,6 +1666,9 @@ ifneq ($(TARGET_BUILD_APPS),)
|
||||||
$(PROGUARD_DICT_ZIP) : $(apps_only_installed_files)
|
$(PROGUARD_DICT_ZIP) : $(apps_only_installed_files)
|
||||||
$(call dist-for-goals,apps_only, $(PROGUARD_DICT_ZIP))
|
$(call dist-for-goals,apps_only, $(PROGUARD_DICT_ZIP))
|
||||||
|
|
||||||
|
$(PROGUARD_USAGE_ZIP) : $(apps_only_installed_files)
|
||||||
|
$(call dist-for-goals,apps_only, $(PROGUARD_USAGE_ZIP))
|
||||||
|
|
||||||
$(SYMBOLS_ZIP) : $(apps_only_installed_files)
|
$(SYMBOLS_ZIP) : $(apps_only_installed_files)
|
||||||
$(call dist-for-goals,apps_only, $(SYMBOLS_ZIP))
|
$(call dist-for-goals,apps_only, $(SYMBOLS_ZIP))
|
||||||
|
|
||||||
|
@ -1694,6 +1697,7 @@ else ifeq (,$(TARGET_BUILD_UNBUNDLED))
|
||||||
$(BUILT_OTATOOLS_PACKAGE) \
|
$(BUILT_OTATOOLS_PACKAGE) \
|
||||||
$(SYMBOLS_ZIP) \
|
$(SYMBOLS_ZIP) \
|
||||||
$(PROGUARD_DICT_ZIP) \
|
$(PROGUARD_DICT_ZIP) \
|
||||||
|
$(PROGUARD_USAGE_ZIP) \
|
||||||
$(COVERAGE_ZIP) \
|
$(COVERAGE_ZIP) \
|
||||||
$(APPCOMPAT_ZIP) \
|
$(APPCOMPAT_ZIP) \
|
||||||
$(INSTALLED_FILES_FILE) \
|
$(INSTALLED_FILES_FILE) \
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
# LOCAL_SOONG_HEADER_JAR
|
# LOCAL_SOONG_HEADER_JAR
|
||||||
# LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR
|
# LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR
|
||||||
# LOCAL_SOONG_PROGUARD_DICT
|
# LOCAL_SOONG_PROGUARD_DICT
|
||||||
|
# LOCAL_SOONG_PROGUARD_USAGE
|
||||||
# LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE
|
# LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE
|
||||||
# LOCAL_SOONG_RRO_DIRS
|
# LOCAL_SOONG_RRO_DIRS
|
||||||
# LOCAL_SOONG_JNI_LIBS_$(TARGET_ARCH)
|
# LOCAL_SOONG_JNI_LIBS_$(TARGET_ARCH)
|
||||||
|
@ -85,6 +86,13 @@ ifdef LOCAL_SOONG_PROGUARD_DICT
|
||||||
$(intermediates.COMMON)/proguard_dictionary)
|
$(intermediates.COMMON)/proguard_dictionary)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifdef LOCAL_SOONG_PROGUARD_USAGE_ZIP
|
||||||
|
$(eval $(call copy-one-file,$(LOCAL_SOONG_PROGUARD_USAGE_ZIP),\
|
||||||
|
$(intermediates.COMMON)/proguard_usage.zip))
|
||||||
|
$(call add-dependency,$(LOCAL_BUILT_MODULE),\
|
||||||
|
$(intermediates.COMMON)/proguard_usage.zip)
|
||||||
|
endif
|
||||||
|
|
||||||
ifdef LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE
|
ifdef LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE
|
||||||
resource_export_package := $(intermediates.COMMON)/package-export.apk
|
resource_export_package := $(intermediates.COMMON)/package-export.apk
|
||||||
resource_export_stamp := $(intermediates.COMMON)/src/R.stamp
|
resource_export_stamp := $(intermediates.COMMON)/src/R.stamp
|
||||||
|
|
|
@ -58,6 +58,14 @@ ifdef LOCAL_SOONG_PROGUARD_DICT
|
||||||
$(intermediates.COMMON)/proguard_dictionary)
|
$(intermediates.COMMON)/proguard_dictionary)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifdef LOCAL_SOONG_PROGUARD_USAGE
|
||||||
|
$(eval $(call copy-one-file,$(LOCAL_SOONG_PROGUARD_USAGE_ZIP),\
|
||||||
|
$(intermediates.COMMON)/proguard_usage.zip))
|
||||||
|
$(call add-dependency,$(LOCAL_BUILT_MODULE),\
|
||||||
|
$(intermediates.COMMON)/proguard_usage.zip)
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
ifdef LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE
|
ifdef LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE
|
||||||
my_res_package := $(intermediates.COMMON)/package-res.apk
|
my_res_package := $(intermediates.COMMON)/package-res.apk
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue