Index: build/android/gyp/process_resources.py |
diff --git a/build/android/gyp/process_resources.py b/build/android/gyp/process_resources.py |
index cd7fbabbfe03edc264dcd5f2e903a7c5960066bc..bf1317554e798209838650852bce3a8e90fcbea6 100755 |
--- a/build/android/gyp/process_resources.py |
+++ b/build/android/gyp/process_resources.py |
@@ -104,7 +104,7 @@ def main(): |
package_command.append('--non-constant-id') |
if options.custom_package: |
package_command += ['--custom-package', options.custom_package] |
- build_utils.CheckCallDie(package_command) |
+ build_utils.CheckOutput(package_command) |
# Crunch image resources. This shrinks png files and is necessary for 9-patch |
# images to display correctly. |
@@ -113,7 +113,7 @@ def main(): |
'crunch', |
'-S', options.crunch_input_dir, |
'-C', options.crunch_output_dir] |
- build_utils.CheckCallDie(aapt_cmd, suppress_output=True, fail_if_stderr=True) |
+ build_utils.CheckOutput(aapt_cmd, fail_if_stderr=True) |
MoveImagesToNonMdpiFolders(options.crunch_output_dir) |