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

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

Issue 1819613002: Flip remaining chromium_gn bots to the chromium recipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 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/chromium/api.py
diff --git a/scripts/slave/recipe_modules/chromium/api.py b/scripts/slave/recipe_modules/chromium/api.py
index a08d87f0de7ec467382ed55ba9e3f675de1394de..b7681e9334aac6a16f38deecd3b1ba334a517b47 100644
--- a/scripts/slave/recipe_modules/chromium/api.py
+++ b/scripts/slave/recipe_modules/chromium/api.py
@@ -138,18 +138,6 @@ class ChromiumApi(recipe_api.RecipeApi):
for c in bot_config.get('gclient_apply_config', []):
self.m.gclient.apply_config(c)
- if bot_config.get('set_component_rev'):
Dirk Pranke 2016/03/19 00:34:19 The coverage report complained that this was uncov
Paweł Hajdan Jr. 2016/03/19 00:56:28 Ah, configure_bot is not used by the chromium reci
Dirk Pranke 2016/03/19 01:00:54 I don't think I follow you here. Are you suggestin
Paweł Hajdan Jr. 2016/03/19 01:08:32 My rationale is because of v8 bots.
Michael Achenbach 2016/03/21 09:19:35 I'm ok with deleting this code. A similar piece of
- # If this is a component build and the main revision is e.g. blink,
- # webrtc, or v8, the custom deps revision of this component must be
- # dynamically set to either:
- # (1) 'revision' from the waterfall, or
- # (2) 'HEAD' for forced builds with unspecified 'revision'.
- # TODO(machenbach): If this method is used on testers it also needs case
- # (3) parent_got_revision.
- component_rev = self.m.properties.get('revision') or 'HEAD'
- dep = bot_config.get('set_component_rev')
- self.m.gclient.c.revisions[dep['name']] = dep['rev_str'] % component_rev
-
return (buildername, bot_config)
def compile(self, targets=None, name=None, force_clobber=False, out_dir=None,

Powered by Google App Engine
This is Rietveld 408576698