Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 1173403006: Add webkitpy platform support for Mac 10.10 Yosemite. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 ('snowleopard', 'x86'), 94 ('snowleopard', 'x86'),
95 ('lion', 'x86'), 95 ('lion', 'x86'),
96 96
97 # FIXME: We treat Retina (High-DPI) devices as if they are running 97 # FIXME: We treat Retina (High-DPI) devices as if they are running
98 # a different operating system version. This isn't accurate, but will wo rk until 98 # a different operating system version. This isn't accurate, but will wo rk until
99 # we need to test and support baselines across multiple O/S versions. 99 # we need to test and support baselines across multiple O/S versions.
100 ('retina', 'x86'), 100 ('retina', 'x86'),
101 101
102 ('mountainlion', 'x86'), 102 ('mountainlion', 'x86'),
103 ('mavericks', 'x86'), 103 ('mavericks', 'x86'),
104 ('yosemite', 'x86'),
104 ('xp', 'x86'), 105 ('xp', 'x86'),
105 ('win7', 'x86'), 106 ('win7', 'x86'),
106 ('lucid', 'x86'), 107 ('lucid', 'x86'),
107 ('lucid', 'x86_64'), 108 ('lucid', 'x86_64'),
108 # FIXME: Technically this should be 'arm', but adding a third architectu re type breaks TestConfigurationConverter. 109 # FIXME: Technically this should be 'arm', but adding a third architectu re type breaks TestConfigurationConverter.
109 # If we need this to be 'arm' in the future, then we first have to fix T estConfigurationConverter. 110 # If we need this to be 'arm' in the future, then we first have to fix T estConfigurationConverter.
110 ('icecreamsandwich', 'x86'), 111 ('icecreamsandwich', 'x86'),
111 ) 112 )
112 113
113 ALL_BASELINE_VARIANTS = [ 114 ALL_BASELINE_VARIANTS = [
114 'mac-mavericks', 'mac-mountainlion', 'mac-retina', 'mac-lion', 'mac-snow leopard', 115 'mac-yosemite', 'mac-mavericks', 'mac-mountainlion', 'mac-retina', 'mac- lion', 'mac-snowleopard',
Dirk Pranke 2015/06/18 17:23:03 nit: same comments about retina ordering.
115 'win-win7', 'win-xp', 116 'win-win7', 'win-xp',
116 'linux-x86_64', 'linux-x86', 117 'linux-x86_64', 'linux-x86',
117 ] 118 ]
118 119
119 CONFIGURATION_SPECIFIER_MACROS = { 120 CONFIGURATION_SPECIFIER_MACROS = {
120 'mac': ['snowleopard', 'lion', 'retina', 'mountainlion', 'mavericks'], 121 'mac': ['snowleopard', 'lion', 'retina', 'mountainlion', 'mavericks', 'y osemite'],
121 'win': ['xp', 'win7'], 122 'win': ['xp', 'win7'],
122 'linux': ['lucid'], 123 'linux': ['lucid'],
123 'android': ['icecreamsandwich'], 124 'android': ['icecreamsandwich'],
124 } 125 }
125 126
126 DEFAULT_BUILD_DIRECTORIES = ('out',) 127 DEFAULT_BUILD_DIRECTORIES = ('out',)
127 128
128 # overridden in subclasses. 129 # overridden in subclasses.
129 FALLBACK_PATHS = {} 130 FALLBACK_PATHS = {}
130 131
(...skipping 1637 matching lines...) Expand 10 before | Expand all | Expand 10 after
1768 class PhysicalTestSuite(object): 1769 class PhysicalTestSuite(object):
1769 def __init__(self, base, args, reference_args=None): 1770 def __init__(self, base, args, reference_args=None):
1770 self.name = base 1771 self.name = base
1771 self.base = base 1772 self.base = base
1772 self.args = args 1773 self.args = args
1773 self.reference_args = args if reference_args is None else reference_args 1774 self.reference_args = args if reference_args is None else reference_args
1774 self.tests = set() 1775 self.tests = set()
1775 1776
1776 def __repr__(self): 1777 def __repr__(self):
1777 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base, self.args, self.reference_args) 1778 return "PhysicalTestSuite('%s', '%s', %s, %s)" % (self.name, self.base, self.args, self.reference_args)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698