| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
|
| index c55f94e743cf279c3f3581ebdf0230136ad27b4b..0996e20557ae8ac4c8564b39c796a148dbb6561a 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
|
| @@ -52,6 +52,7 @@ class LinuxPort(base.Port):
|
| DEFAULT_BUILD_DIRECTORIES = ('out',)
|
|
|
| BUILD_REQUIREMENTS_URL = 'https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_instructions.md'
|
| +
|
| @classmethod
|
| def determine_full_port_name(cls, host, options, port_name):
|
| if port_name.endswith('linux'):
|
| @@ -60,7 +61,6 @@ class LinuxPort(base.Port):
|
| return port_name + '-' + version
|
| return port_name
|
|
|
| -
|
| def __init__(self, host, port_name, **kwargs):
|
| super(LinuxPort, self).__init__(host, port_name, **kwargs)
|
| self._version = port_name[port_name.index('linux-') + len('linux-'):]
|
|
|