| 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 4f756d39d7bca3e4bf8daf241529e4969a5e06d2..90264e96254c9da4090b4dd43c8a81ad48cb007f 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| @@ -105,7 +105,6 @@ class Port(object):
|
| ('yosemite', 'x86'),
|
| ('xp', 'x86'),
|
| ('win7', 'x86'),
|
| - ('win8', 'x86'),
|
| ('win10', 'x86'),
|
| # FIXME: We handle 32bit Linux similarly to Mac retina above treating it
|
| # as a different system for now.
|
| @@ -119,13 +118,13 @@ class Port(object):
|
|
|
| ALL_BASELINE_VARIANTS = [
|
| 'mac-yosemite', 'mac-mavericks', 'mac-retina', 'mac-mountainlion', 'mac-lion', 'mac-snowleopard',
|
| - 'win-win10', 'win-win8', 'win-win7', 'win-xp'
|
| + 'win-win10', 'win-win7', 'win-xp'
|
| 'linux-trusty', 'linux-precise', 'linux-x86',
|
| ]
|
|
|
| CONFIGURATION_SPECIFIER_MACROS = {
|
| 'mac': ['snowleopard', 'lion', 'mountainlion', 'retina', 'mavericks', 'yosemite'],
|
| - 'win': ['xp', 'win7', 'win8', 'win10'],
|
| + 'win': ['xp', 'win7', 'win10'],
|
| 'linux': ['linux32', 'precise', 'trusty'],
|
| 'android': ['icecreamsandwich'],
|
| }
|
|
|