Chromium Code Reviews| 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 |