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

Unified Diff: scripts/slave/recipe_modules/auto_bisect/api.py

Issue 940123005: Adding ability to bisect recipe to bisect into dependency repos. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@hax
Patch Set: Missing docstring Created 5 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
Index: scripts/slave/recipe_modules/auto_bisect/api.py
diff --git a/scripts/slave/recipe_modules/auto_bisect/api.py b/scripts/slave/recipe_modules/auto_bisect/api.py
index e4384d8ba0f8285ccd759a26ee50fe054763a375..9da6efab9aa44c4698b58ea0a6579f6f2657f7d2 100644
--- a/scripts/slave/recipe_modules/auto_bisect/api.py
+++ b/scripts/slave/recipe_modules/auto_bisect/api.py
@@ -21,6 +21,7 @@ class AutoBisectApi(recipe_api.RecipeApi):
RESULTS_GS_DIR = 'bisect-results'
GS_RESULTS_URL = 'gs://%s/%s/' % (BUCKET, RESULTS_GS_DIR)
SVN_REPO_URL = 'svn://svn.chromium.org/chrome-try/try-perf'
+ BOT_EMAIL = 'chrome_bot@chromium.org'
qyearsley 2015/03/10 23:20:48 Note: Just looking at the names, I can't tell what
RobertoCN 2015/03/13 20:55:58 Done.
def __init__(self, *args, **kwargs):
super(AutoBisectApi, self).__init__(*args, **kwargs)

Powered by Google App Engine
This is Rietveld 408576698