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

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

Issue 1939843002: Replace webkitpy standalone builders functions with instantiable class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved builders out of port, updated comment 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/host_mock.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..b4e35576aa58ed649aa6929dfc11a486142d36b3 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
@@ -35,6 +35,7 @@ from webkitpy.common.checkout.scm.detection import SCMDetector
from webkitpy.common.memoized import memoized
from webkitpy.common.net import buildbot, web
from webkitpy.common.system.systemhost import SystemHost
+from webkitpy.layout_tests.builders import Builders
from webkitpy.layout_tests.port.factory import PortFactory
@@ -60,6 +61,8 @@ class Host(SystemHost):
self._engage_awesome_locale_hacks()
+ self.builders = Builders()
+
# We call this from the Host constructor, as it's one of the
# earliest calls made for all webkitpy-based programs.
def _engage_awesome_locale_hacks(self):
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/common/host_mock.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698