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

Side by Side Diff: scripts/tools/buildbot_tool_templates/master_source_cfg.py

Issue 761253003: Add a new buildbot-tool generator for master configs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: add buildbot-tool, turn files into actual templates Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This file is used by scripts/tools/buildbot-tool to generate master configs.
agable 2014/12/09 21:13:24 I'm not convinced of the need for a master_source_
Dirk Pranke 2014/12/09 21:32:01 OK. I tend to agree, but I wasn't sure if it would
6
5 from master import gitiles_poller 7 from master import gitiles_poller
6 8
7 9
8 def Update(config, active_master, c): 10 def Update(config, active_master, c):
9 master_poller = gitiles_poller.GitilesPoller( 11 master_poller = gitiles_poller.GitilesPoller(
10 'https://chromium.googlesource.com/external/mojo') 12 '%(git_repo_url)s')
11 13
12 c['change_source'].append(master_poller) 14 c['change_source'].append(master_poller)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698