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

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

Issue 1953463002: Empty webkitpy/common/net/buildbot/__init__.py and update imports. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
index 1f47fd762995a4b7d507fc5676c9f8e963e4c8d2..ee47c8f7a106e97f9cf6ea7ff862a95d8dbd8541 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
@@ -33,7 +33,8 @@ 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.buildbot import BuildBot
Dirk Pranke 2016/05/05 23:51:44 we should move the buildbot files up into net and
qyearsley 2016/05/06 17:31:23 Done.
+from webkitpy.common.net import web
from webkitpy.common.system.systemhost import SystemHost
from webkitpy.layout_tests.port.factory import PortFactory
@@ -50,7 +51,7 @@ class Host(SystemHost):
self._scm = None
# Everything below this line is WebKit-specific and belongs on a higher-level object.
- self.buildbot = buildbot.BuildBot()
+ self.buildbot = BuildBot()
# FIXME: Unfortunately Port objects are currently the central-dispatch objects of the NRWT world.
# In order to instantiate a port correctly, we have to pass it at least an executive, user, scm, and filesystem
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698