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

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

Issue 638573002: [webkitpy] Merge ChromiumBuildBot class into the BuildBot class. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 | « no previous file | Tools/Scripts/webkitpy/common/host_mock.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/common/host.py
diff --git a/Tools/Scripts/webkitpy/common/host.py b/Tools/Scripts/webkitpy/common/host.py
index 1fadc0398ac1614623fe17ba99d273cea7bf9ece..bcce9d50046b3e0cac28235c2157fee5e49e0bd7 100644
--- a/Tools/Scripts/webkitpy/common/host.py
+++ b/Tools/Scripts/webkitpy/common/host.py
@@ -34,7 +34,6 @@ import sys
from webkitpy.common.checkout.scm.detection import SCMDetector
from webkitpy.common.memoized import memoized
from webkitpy.common.net import buildbot, web
-from webkitpy.common.net.buildbot.chromiumbuildbot import ChromiumBuildBot
from webkitpy.common.system.systemhost import SystemHost
from webkitpy.layout_tests.port.factory import PortFactory
@@ -135,12 +134,3 @@ class Host(SystemHost):
if sys.platform == "win32":
self._engage_awesome_windows_hacks()
return SCMDetector(self.filesystem, self.executive).detect_scm_system(path)
-
- def buildbot_for_builder_name(self, name):
- if self.port_factory.get_from_builder_name(name).is_chromium():
- return self.chromium_buildbot()
- return self.buildbot
-
- @memoized
- def chromium_buildbot(self):
- return ChromiumBuildBot()
« no previous file with comments | « no previous file | Tools/Scripts/webkitpy/common/host_mock.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698