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

Unified Diff: build/android/gyp/apk_obfuscate.py

Issue 1565433002: Fix up proguard output filtering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: non-capturing groups Created 4 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/android/gyp/proguard.py » ('j') | build/android/gyp/util/proguard_util.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/apk_obfuscate.py
diff --git a/build/android/gyp/apk_obfuscate.py b/build/android/gyp/apk_obfuscate.py
index 4a13cb1338555352afb4549865f73aafc67e1df3..f29f0910d479e96c7b31a10fdfbb5789a4d8f4c3 100755
--- a/build/android/gyp/apk_obfuscate.py
+++ b/build/android/gyp/apk_obfuscate.py
@@ -69,6 +69,8 @@ def ParseArgs(argv):
'These will not be obfuscated.')
parser.add_option('--multidex-configuration-path',
help='A JSON file containing multidex build configuration.')
+ parser.add_option('--verbose', '-v', action='store_true',
+ help='Print all proguard output')
(options, args) = parser.parse_args(argv)
@@ -118,7 +120,7 @@ def DoProguard(options):
configs.append(multidex_config)
proguard.configs(configs)
- proguard.CheckOutput()
+ proguard.CheckOutput(options.verbose)
def _PossibleMultidexConfig(options):
« no previous file with comments | « no previous file | build/android/gyp/proguard.py » ('j') | build/android/gyp/util/proguard_util.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698