Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Unified Diff: build/android/gyp/util/proguard_util.py

Issue 2619273002: Android: Stop generating proguard dump.txt (Closed)
Patch Set: Android: Stop generating proguard dump.txt Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/config/android/internal_rules.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/util/proguard_util.py
diff --git a/build/android/gyp/util/proguard_util.py b/build/android/gyp/util/proguard_util.py
index 1027a684c96d1e32d443f32fb5754645a53628ce..547a7646f72dc905fc1b5851c4dd9347019b1b0c 100644
--- a/build/android/gyp/util/proguard_util.py
+++ b/build/android/gyp/util/proguard_util.py
@@ -129,7 +129,6 @@ class ProguardCmdBuilder(object):
# The output jar must be specified after inputs.
cmd += [
'-outjars', self._outjar,
- '-dump', self._outjar + '.dump',
'-printseeds', self._outjar + '.seeds',
'-printusage', self._outjar + '.usage',
'-printmapping', self._outjar + '.mapping',
@@ -158,7 +157,6 @@ class ProguardCmdBuilder(object):
# Proguard will skip writing these files if they would be empty. Create
# empty versions of them all now so that they are updated as the build
# expects.
- open(self._outjar + '.dump', 'w').close()
open(self._outjar + '.seeds', 'w').close()
open(self._outjar + '.usage', 'w').close()
open(self._outjar + '.mapping', 'w').close()
« no previous file with comments | « no previous file | build/config/android/internal_rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698