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

Unified Diff: Tools/Scripts/webkitpy/common/host.py

Issue 17639006: Remove committer list, bugzilla, watchlist code and transitive closure of stuff. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: merge on top of thakis' change in r153020 Created 7 years, 6 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: Tools/Scripts/webkitpy/common/host.py
diff --git a/Tools/Scripts/webkitpy/common/host.py b/Tools/Scripts/webkitpy/common/host.py
index 7dd5ad02450cfee99583e8e51a79ed922317996f..9b62d86148e866ec59c2cc5cb0b1951cc76b36c0 100644
--- a/Tools/Scripts/webkitpy/common/host.py
+++ b/Tools/Scripts/webkitpy/common/host.py
@@ -34,10 +34,9 @@ import sys
from webkitpy.common.checkout import Checkout
from webkitpy.common.checkout.scm.detection import SCMDetector
from webkitpy.common.memoized import memoized
-from webkitpy.common.net import bugzilla, buildbot, web
+from webkitpy.common.net import buildbot, web
from webkitpy.common.net.buildbot.chromiumbuildbot import ChromiumBuildBot
from webkitpy.common.system.systemhost import SystemHost
-from webkitpy.common.watchlist.watchlistloader import WatchListLoader
from webkitpy.layout_tests.port.factory import PortFactory
@@ -54,7 +53,6 @@ class Host(SystemHost):
self._checkout = None
# Everything below this line is WebKit-specific and belongs on a higher-level object.
- self.bugs = bugzilla.Bugzilla()
self.buildbot = buildbot.BuildBot()
# FIXME: Unfortunately Port objects are currently the central-dispatch objects of the NRWT world.
@@ -146,7 +144,3 @@ class Host(SystemHost):
@memoized
def chromium_buildbot(self):
return ChromiumBuildBot()
-
- @memoized
- def watch_list(self):
- return WatchListLoader(self.filesystem).load()
« no previous file with comments | « Tools/Scripts/webkitpy/common/config/contributionareas_unittest.py ('k') | Tools/Scripts/webkitpy/common/host_mock.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698