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

Side by Side Diff: masters/master.chromium.mac/master_source_cfg.py

Issue 66953010: Added an iOS Device ninja build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 1 month 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 from common import chromium_utils 5 from common import chromium_utils
6 6
7 from master import build_utils 7 from master import build_utils
8 8
9 from buildbot.changes import svnpoller 9 from buildbot.changes import svnpoller
10 10
(...skipping 12 matching lines...) Expand all
23 return build_utils.SplitPath(projects, path) 23 return build_utils.SplitPath(projects, path)
24 24
25 def Update(config, active_master, c): 25 def Update(config, active_master, c):
26 # Polls config.Master.trunk_url for changes 26 # Polls config.Master.trunk_url for changes
27 viewvc_url = "http://src.chromium.org/viewvc/chrome?view=rev&revision=%s" 27 viewvc_url = "http://src.chromium.org/viewvc/chrome?view=rev&revision=%s"
28 poller = svnpoller.SVNPoller(svnurl=config.Master.trunk_url, 28 poller = svnpoller.SVNPoller(svnurl=config.Master.trunk_url,
29 svnbin=chromium_utils.SVN_BIN, 29 svnbin=chromium_utils.SVN_BIN,
30 split_file=ChromeTreeFileSplitter, 30 split_file=ChromeTreeFileSplitter,
31 pollinterval=10, 31 pollinterval=10,
32 revlinktmpl=viewvc_url) 32 revlinktmpl=viewvc_url)
33 c['change_source'].append(poller) 33 # c['change_source'].append(poller)
Vadim Sh. 2013/11/21 22:33:02 Just double-checking: is this intentional?
pgervais 2013/11/21 22:46:33 Good catch. No, this is not intentional. It slippe
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698