From bbca4dde0cd3755f97f0d00f0330b0469a88c4da Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Wed, 20 Aug 2014 13:04:49 +0000 Subject: [PATCH] Pass --verbose to gclient sync of Chromium In r6938 the switch to using Chromium's Git repo was deployed. However this fails on the bots since their timeout for steps without output is 1200 seconds, which is not enough to checkout the large Chromium Git repo. Adding --verbose will print more output, thus getting a longer timeout that should be enough for the runhooks step to complete. BUG=2863, chromium:339647 TEST=None TBR=phoglund@webrtc.org Review URL: https://webrtc-codereview.appspot.com/15209004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6939 4adac7df-926f-26a2-2b94-8c16560cd09d --- sync_chromium.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync_chromium.py b/sync_chromium.py index ab40c378e8..0a63f42975 100755 --- a/sync_chromium.py +++ b/sync_chromium.py @@ -53,7 +53,7 @@ def main(): env['GYP_CHROMIUM_NO_ACTION'] = '1' gclient_cmd = 'gclient.bat' if sys.platform.startswith('win') else 'gclient' args = [ - gclient_cmd, 'sync', '--no-history', '--force', '--revision', + gclient_cmd, 'sync', '--no-history', '--force', '--verbose', '--revision', 'src@'+opts.target_revision] target_os_list = get_target_os_list() if target_os_list: