Chromium Code Reviews| Index: Tools/Scripts/webkitpy/layout_tests/port/base.py |
| diff --git a/Tools/Scripts/webkitpy/layout_tests/port/base.py b/Tools/Scripts/webkitpy/layout_tests/port/base.py |
| index d9c14f2431f2f96a05e0af354fbab1d8062e1c90..661c3f6c998eefdc6f8f94ff1a2f4dfede628866 100644 |
| --- a/Tools/Scripts/webkitpy/layout_tests/port/base.py |
| +++ b/Tools/Scripts/webkitpy/layout_tests/port/base.py |
| @@ -105,6 +105,9 @@ class Port(object): |
| ('yosemite', 'x86'), |
| ('xp', 'x86'), |
| ('win7', 'x86'), |
| + ('win8', 'x86'), |
| + ('win8', 'x86_64'), |
|
Dirk Pranke
2015/08/13 20:08:35
are we supporting both 32-bit and 64-bit win8 vers
joelo
2015/08/13 20:46:13
Ah good point, we will be. I meant to do it as a s
|
| + ('win10', 'x86'), |
| # FIXME: We handle 32bit Linux similarly to Mac retina above treating it |
| # as a different system for now. |
| ('linux32', 'x86'), |
| @@ -117,13 +120,13 @@ class Port(object): |
| ALL_BASELINE_VARIANTS = [ |
| 'mac-yosemite', 'mac-mavericks', 'mac-retina', 'mac-mountainlion', 'mac-lion', 'mac-snowleopard', |
| - 'win-win7', 'win-xp', |
| + 'win-win10', 'win-win8', 'win-win7', 'win-xp' |
| 'linux-trusty', 'linux-precise', 'linux-x86', |
| ] |
| CONFIGURATION_SPECIFIER_MACROS = { |
| 'mac': ['snowleopard', 'lion', 'mountainlion', 'retina', 'mavericks', 'yosemite'], |
| - 'win': ['xp', 'win7'], |
| + 'win': ['xp', 'win7', 'win8', 'win10'], |
| 'linux': ['linux32', 'precise', 'trusty'], |
| 'android': ['icecreamsandwich'], |
| } |