Store symbols.zip in apps_only build. automerge: a60fb49
automerge: a73b611
* commit 'a73b611e6b2a626b144170f15509e02f3318976e':
Store symbols.zip in apps_only build.
This commit is contained in:
commit
83cd45517d
2 changed files with 8 additions and 1 deletions
|
@ -1511,10 +1511,14 @@ endif
|
|||
name := $(name)-symbols-$(FILE_NAME_TAG)
|
||||
|
||||
SYMBOLS_ZIP := $(PRODUCT_OUT)/$(name).zip
|
||||
# For apps_only build we'll establish the dependency later in build/core/main.mk.
|
||||
ifndef TARGET_BUILD_APPS
|
||||
$(SYMBOLS_ZIP): $(INSTALLED_SYSTEMIMAGE) $(INSTALLED_BOOTIMAGE_TARGET)
|
||||
endif
|
||||
$(SYMBOLS_ZIP):
|
||||
@echo "Package symbols: $@"
|
||||
$(hide) rm -rf $@
|
||||
$(hide) mkdir -p $(dir $@)
|
||||
$(hide) mkdir -p $(dir $@) $(TARGET_OUT_UNSTRIPPED)
|
||||
$(hide) zip -qr $@ $(TARGET_OUT_UNSTRIPPED)
|
||||
|
||||
# -----------------------------------------------------------------
|
||||
|
|
|
@ -931,6 +931,9 @@ ifneq ($(TARGET_BUILD_APPS),)
|
|||
$(PROGUARD_DICT_ZIP) : $(apps_only_installed_files)
|
||||
$(call dist-for-goals,apps_only, $(PROGUARD_DICT_ZIP))
|
||||
|
||||
$(SYMBOLS_ZIP) : $(apps_only_installed_files)
|
||||
$(call dist-for-goals,apps_only, $(SYMBOLS_ZIP))
|
||||
|
||||
.PHONY: apps_only
|
||||
apps_only: $(unbundled_build_modules)
|
||||
|
||||
|
|
Loading…
Reference in a new issue