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

Unified Diff: gcl.py

Issue 503068: Make breakpad, gcl and presubmit_support dependencies optional (Closed)
Patch Set: Fix spurious error Created 11 years 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 | gclient_utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcl.py
diff --git a/gcl.py b/gcl.py
index 61efad5663f71b93ffaa752a2bae42d07ab7786f..625931f9e48daef651b70013583039c82f24513d 100755
--- a/gcl.py
+++ b/gcl.py
@@ -881,6 +881,18 @@ def TryChange(change_info, args, swallow_exception):
return path
trychange_args = []
+ settings = {
+ 'port': GetCodeReviewSetting('TRYSERVER_HTTP_PORT'),
+ 'host': GetCodeReviewSetting('TRYSERVER_HTTP_HOST'),
+ 'svn_repo': GetCodeReviewSetting('TRYSERVER_SVN_URL'),
+ 'project': GetCodeReviewSetting('TRYSERVER_PROJECT'),
+ 'root': GetCodeReviewSetting('TRYSERVER_ROOT'),
+ 'patchlevel': GetCodeReviewSetting('TRYSERVER_PATCHLEVEL'),
+ }
+ for (k, v) in settings.iteritems():
+ if v:
+ trychange_args.extend(['--' + k, v])
+
gclient_root = FindGclientRootDir(GetRepositoryRoot())
if gclient_root:
trychange_args.extend(['--root', PathDifference(gclient_root,
« no previous file with comments | « no previous file | gclient_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698