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

Unified Diff: configs/chromium/master/master_source_cfg.py

Issue 648353002: Remove Skia's forked buildbot code (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Address comment Created 6 years, 2 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
« no previous file with comments | « configs/chromium/master/master_mac_latest_cfg.py ('k') | configs/chromium/master/public_html/announce.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: configs/chromium/master/master_source_cfg.py
diff --git a/configs/chromium/master/master_source_cfg.py b/configs/chromium/master/master_source_cfg.py
deleted file mode 100644
index 121b80ea1fe0aa712dceff22403df10949aac76a..0000000000000000000000000000000000000000
--- a/configs/chromium/master/master_source_cfg.py
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from buildbot.changes import svnpoller
-
-from master import build_utils
-
-def ChromeTreeFileSplitter(path):
- """split_file for the 'src' project in the trunk."""
-
- # Exclude .DEPS.git from triggering builds on chrome.
- if path == 'src/.DEPS.git':
- return None
-
- # List of projects we are interested in. The project names must exactly
- # match paths in the Subversion repository, relative to the 'path' URL
- # argument. build_utils.SplitPath() will use them as branch names to
- # kick off the Schedulers for different projects.
- projects = ['src']
- return build_utils.SplitPath(projects, path)
-
-def WebkitFileSplitter(path):
- """split_file for webkit.org repository."""
- projects = ['trunk']
- return build_utils.SplitPath(projects, path)
-
-
-def Update(config, active_master, c):
- # Polls config.Master.trunk_url for changes
- chromium_url = "http://src.chromium.org/viewvc/chrome?view=rev&revision=%s"
- #webkit_url = "http://trac.webkit.org/changeset/%s"
- cr_poller = svnpoller.SVNPoller(svnurl=config.Master.trunk_url,
- split_file=ChromeTreeFileSplitter,
- pollinterval=30,
- revlinktmpl=chromium_url)
- c['change_source'].append(cr_poller)
-
- #webkit_poller = svnpoller.SVNPoller(svnurl = config.Master.webkit_root_url,
- # split_file=WebkitFileSplitter,
- # pollinterval=30,
- # revlinktmpl=webkit_url)
- #c['change_source'].append(webkit_poller)
« no previous file with comments | « configs/chromium/master/master_mac_latest_cfg.py ('k') | configs/chromium/master/public_html/announce.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698