| 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):
|
|
|