Chromium Code Reviews| Index: Tools/Scripts/webkitpy/layout_tests/port/factory.py |
| diff --git a/Tools/Scripts/webkitpy/layout_tests/port/factory.py b/Tools/Scripts/webkitpy/layout_tests/port/factory.py |
| index db2144ba2c03d6948db46d38da0bc8bcfef759ab..8a4cd626dfd6f3d80d912377ad0f75bedfc17a9f 100644 |
| --- a/Tools/Scripts/webkitpy/layout_tests/port/factory.py |
| +++ b/Tools/Scripts/webkitpy/layout_tests/port/factory.py |
| @@ -78,6 +78,7 @@ class PortFactory(object): |
| 'win.WinPort', |
| 'mock_drt.MockDRTPort', |
| 'test.TestPort', |
| + 'browser_test.BrowserTestPort', |
| ) |
| def __init__(self, host): |
| @@ -107,6 +108,7 @@ class PortFactory(object): |
| for port_class in self.PORT_CLASSES: |
| module_name, class_name = port_class.rsplit('.', 1) |
| module = __import__(module_name, globals(), locals(), [], -1) |
| + |
|
Dirk Pranke
2014/07/10 23:37:13
nit: delete the stray blank line?
ivandavid
2014/07/16 21:29:01
Done.
|
| cls = module.__dict__[class_name] |
| if port_name.startswith(cls.port_name): |
| port_name = cls.determine_full_port_name(self._host, options, port_name) |