Merge "Produce mappings of hashes to elf symbols and r8 dictionaries" am: 229fb33e39
am: 47e2aed61d
am: 25681b47af
Original change: https://android-review.googlesource.com/c/platform/build/+/2035523 Change-Id: I6a9fd470c2bece57a6be2eec7be4156a59ff63bb Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -3174,6 +3174,50 @@ done \
|
||||
fi
|
||||
endef
|
||||
|
||||
# Copy an unstripped binary to the symbols directory while also extracting
|
||||
# a hash mapping to the mapping directory.
|
||||
# $(1): unstripped intermediates file
|
||||
# $(2): path in symbols directory
|
||||
define copy-unstripped-elf-file-with-mapping
|
||||
$(call _copy-symbols-file-with-mapping,$(1),$(2),\
|
||||
elf,$(patsubst $(TARGET_OUT_UNSTRIPPED)/%,$(call intermediates-dir-for,PACKAGING,elf_symbol_mapping)/%,$(2).textproto))
|
||||
endef
|
||||
|
||||
# Copy an R8 dictionary to the packaging directory while also extracting
|
||||
# a hash mapping to the mapping directory.
|
||||
# $(1): unstripped intermediates file
|
||||
# $(2): path in packaging directory
|
||||
# $(3): path in mappings packaging directory
|
||||
define copy-r8-dictionary-file-with-mapping
|
||||
$(call _copy-symbols-file-with-mapping,$(1),$(2),r8,$(3))
|
||||
endef
|
||||
|
||||
# Copy an unstripped binary or R8 dictionary to the symbols directory
|
||||
# while also extracting a hash mapping to the mapping directory.
|
||||
# $(1): unstripped intermediates file
|
||||
# $(2): path in symbols directory
|
||||
# $(3): file type (elf or r8)
|
||||
# $(4): path in the mappings directory
|
||||
define _copy-symbols-file-with-mapping
|
||||
$(2): .KATI_IMPLICIT_OUTPUTS := $(4)
|
||||
$(2): $(SYMBOLS_MAP)
|
||||
$(2): $(1)
|
||||
@echo "Copy symbols with mapping: $$@"
|
||||
$$(copy-file-to-target)
|
||||
$(SYMBOLS_MAP) -$(strip $(3)) $(2) -write_if_changed $(4)
|
||||
.KATI_RESTAT: $(2)
|
||||
endef
|
||||
|
||||
# Returns the directory to copy proguard dictionaries into
|
||||
define local-proguard-dictionary-directory
|
||||
$(call intermediates-dir-for,PACKAGING,proguard_dictionary)/out/target/common/obj/$(LOCAL_MODULE_CLASS)/$(LOCAL_MODULE)_intermediates
|
||||
endef
|
||||
|
||||
# Returns the directory to copy proguard dictionary mappings into
|
||||
define local-proguard-dictionary-mapping-directory
|
||||
$(call intermediates-dir-for,PACKAGING,proguard_dictionary_mapping)/out/target/common/obj/$(LOCAL_MODULE_CLASS)/$(LOCAL_MODULE)_intermediates
|
||||
endef
|
||||
|
||||
|
||||
###########################################################
|
||||
## Commands to call R8
|
||||
|
Reference in New Issue
Block a user