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

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

Issue 13473017: CheckCallDie: add option to suppress successful output (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: :/ Created 7 years, 9 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 | « build/android/gyp/javac.py ('k') | build/android/gyp/push_libraries.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/process_resources.py
diff --git a/build/android/process_resources.py b/build/android/gyp/process_resources.py
similarity index 97%
rename from build/android/process_resources.py
rename to build/android/gyp/process_resources.py
index a39ac1a8393ab13c75b800abd7e42a68426dc741..40f1017ce5cf92df9a7d8164812d17b5556e4230 100755
--- a/build/android/process_resources.py
+++ b/build/android/gyp/process_resources.py
@@ -10,7 +10,7 @@ import optparse
import os
import shlex
-from pylib import build_utils
+from util import build_utils
def ParseArgs():
"""Parses command line options.
@@ -87,7 +87,7 @@ def main():
'crunch',
'-S', options.crunch_input_dir,
'-C', options.crunch_output_dir]
- build_utils.CheckCallDie(aapt_cmd)
+ build_utils.CheckCallDie(aapt_cmd, suppress_output=True)
if options.stamp:
build_utils.Touch(options.stamp)
« no previous file with comments | « build/android/gyp/javac.py ('k') | build/android/gyp/push_libraries.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698