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

Unified Diff: native_client_sdk/src/build_tools/build_updater.py

Issue 566713004: [NaCl SDK] Reduce spew from build_updater.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/build_updater.py
diff --git a/native_client_sdk/src/build_tools/build_updater.py b/native_client_sdk/src/build_tools/build_updater.py
index 2987e6477bfe27f940d846a8be59dea4c3b893ab..219e49a37874886baab95584699f5023395045fd 100755
--- a/native_client_sdk/src/build_tools/build_updater.py
+++ b/native_client_sdk/src/build_tools/build_updater.py
@@ -142,8 +142,6 @@ def BuildUpdater(out_dir, revision_number=None):
out_dir: The output directory.
revision_number: The revision number of this updater, as an integer. Or
None, to use the current Chrome revision."""
- buildbot_common.BuildStep('Create Updater')
Sam Clegg 2014/09/11 19:13:11 We don't want a build step for this?
binji 2014/09/11 19:17:14 Not in this script, it already has a build step wh
-
out_dir = os.path.abspath(out_dir)
# Build SDK directory
@@ -181,8 +179,11 @@ def main(args):
dest='out_dir', default=os.path.join(SRC_DIR, 'out'))
parser.add_option('-r', '--revision', help='revision number of this updater',
dest='revision', default=None)
+ parser.add_option('-v', '--verbose', help='verbose output')
options, args = parser.parse_args(args[1:])
+ buildbot_common.verbose = options.verbose
+
if options.revision:
options.revision = int(options.revision)
BuildUpdater(options.out_dir, options.revision)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698