| OLD | NEW |
| 1 # Copyright (C) 2010 Google Inc. All rights reserved. | 1 # Copyright (C) 2010 Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | 28 |
| 29 import logging | 29 import logging |
| 30 | 30 |
| 31 from webkitpy.common.webkit_finder import WebKitFinder | 31 from webkitpy.common.webkit_finder import WebKitFinder |
| 32 from webkitpy.layout_tests.breakpad.dump_reader_multipart import DumpReaderLinux | 32 from webkitpy.layout_tests.breakpad.dump_reader_multipart import DumpReaderLinux |
| 33 from webkitpy.layout_tests.models import test_run_results | 33 from webkitpy.layout_tests.models import test_run_results |
| 34 from webkitpy.layout_tests.port import base | 34 from webkitpy.layout_tests.port import base |
| 35 from webkitpy.layout_tests.port import win | 35 from webkitpy.layout_tests.port import win |
| 36 from webkitpy.layout_tests.port import config | |
| 37 | 36 |
| 38 | 37 |
| 39 _log = logging.getLogger(__name__) | 38 _log = logging.getLogger(__name__) |
| 40 | 39 |
| 41 | 40 |
| 42 class LinuxPort(base.Port): | 41 class LinuxPort(base.Port): |
| 43 port_name = 'linux' | 42 port_name = 'linux' |
| 44 | 43 |
| 45 SUPPORTED_VERSIONS = ('precise', 'trusty') | 44 SUPPORTED_VERSIONS = ('precise', 'trusty') |
| 46 | 45 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 118 |
| 120 def _wdiff_missing_message(self): | 119 def _wdiff_missing_message(self): |
| 121 return 'wdiff is not installed; please install using "sudo apt-get insta
ll wdiff"' | 120 return 'wdiff is not installed; please install using "sudo apt-get insta
ll wdiff"' |
| 122 | 121 |
| 123 def _path_to_driver(self, target=None): | 122 def _path_to_driver(self, target=None): |
| 124 binary_name = self.driver_name() | 123 binary_name = self.driver_name() |
| 125 return self._build_path_with_target(target, binary_name) | 124 return self._build_path_with_target(target, binary_name) |
| 126 | 125 |
| 127 def _path_to_helper(self): | 126 def _path_to_helper(self): |
| 128 return None | 127 return None |
| OLD | NEW |