diff options
author | Ying Wang <wangying@google.com> | 2013-08-23 17:11:29 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-08-23 17:11:29 +0000 |
commit | 8709497ed82800f399e99516df59afdb1bae8472 (patch) | |
tree | 1712442faa0cc5ea167485d3620ac94a488074b5 /core | |
parent | afd7457adf844692b5de8f8d7eefedcc10dc7da1 (diff) | |
parent | df8b48449a0a607249d05aa420e41d0b3470ed63 (diff) | |
download | build-8709497ed82800f399e99516df59afdb1bae8472.zip build-8709497ed82800f399e99516df59afdb1bae8472.tar.gz build-8709497ed82800f399e99516df59afdb1bae8472.tar.bz2 |
Merge "Revert "Collect and store proguard obfuscation dictionary files."" into jb-mr2-dev
Diffstat (limited to 'core')
-rw-r--r-- | core/Makefile | 18 | ||||
-rw-r--r-- | core/main.mk | 3 |
2 files changed, 0 insertions, 21 deletions
diff --git a/core/Makefile b/core/Makefile index 43dcf51..55ab6a5 100644 --- a/core/Makefile +++ b/core/Makefile @@ -1391,24 +1391,6 @@ $(EMMA_META_ZIP) : endif # EMMA_INSTRUMENT=true -#------------------------------------------------------------------ -# A zip of Proguard obfuscation dictionary files. -# Only for apps_only build. -# -ifdef TARGET_BUILD_APPS -PROGUARD_DICT_ZIP := $(PRODUCT_OUT)/proguard-dict-$(FILE_NAME_TAG).zip -# the dependency will be set up later in build/core/main.mk. -$(PROGUARD_DICT_ZIP) : - @echo "Packaging proguard obfuscation dictionary files." - $(hide) dict_files="$(TARGET_OUT_COMMON_INTERMEDIATES)/APPS/*/proguard_dictionary"; \ - if [ -n "$$dict_files" ]; then \ - zip $@ $$dict_files; \ - else \ - touch $@; \ - fi - -endif # TARGET_BUILD_APPS - # ----------------------------------------------------------------- # dalvik something .PHONY: dalvikfiles diff --git a/core/main.mk b/core/main.mk index 3af4306..282d9c3 100644 --- a/core/main.mk +++ b/core/main.mk @@ -819,9 +819,6 @@ ifneq ($(TARGET_BUILD_APPS),) $(call dist-for-goals,apps_only, $(EMMA_META_ZIP)) endif - $(PROGUARD_DICT_ZIP) : $(apps_only_installed_files) - $(call dist-for-goals,apps_only, $(PROGUARD_DICT_ZIP)) - .PHONY: apps_only apps_only: $(unbundled_build_modules) |