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

Side by Side Diff: Tools/Scripts/webkitpy/layout_tests/port/builders.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) 2011 Google Inc. All rights reserved. 1 # Copyright (C) 2011 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 "WebKit Linux": {"port_name": "linux-x86_64", "specifiers": ['Linux', 'Relea se']}, 47 "WebKit Linux": {"port_name": "linux-x86_64", "specifiers": ['Linux', 'Relea se']},
48 "WebKit Linux 32": {"port_name": "linux-x86", "specifiers": ['Linux', 'Relea se']}, 48 "WebKit Linux 32": {"port_name": "linux-x86", "specifiers": ['Linux', 'Relea se']},
49 "WebKit Linux (dbg)": {"port_name": "linux-x86_64", "specifiers": ['Linux', 'Debug']}, 49 "WebKit Linux (dbg)": {"port_name": "linux-x86_64", "specifiers": ['Linux', 'Debug']},
50 "WebKit Mac10.6": {"port_name": "mac-snowleopard", "specifiers": ['SnowLeopa rd', 'Release']}, 50 "WebKit Mac10.6": {"port_name": "mac-snowleopard", "specifiers": ['SnowLeopa rd', 'Release']},
51 "WebKit Mac10.6 (dbg)": {"port_name": "mac-snowleopard", "specifiers": ['Sno wLeopard', 'Debug']}, 51 "WebKit Mac10.6 (dbg)": {"port_name": "mac-snowleopard", "specifiers": ['Sno wLeopard', 'Debug']},
52 "WebKit Mac10.7": {"port_name": "mac-lion", "specifiers": ['Lion', 'Release' ]}, 52 "WebKit Mac10.7": {"port_name": "mac-lion", "specifiers": ['Lion', 'Release' ]},
53 "WebKit Mac10.7 (dbg)": {"port_name": "mac-lion", "specifiers": ['Lion', 'De bug']}, 53 "WebKit Mac10.7 (dbg)": {"port_name": "mac-lion", "specifiers": ['Lion', 'De bug']},
54 "WebKit Mac10.8": {"port_name": "mac-mountainlion", "specifiers": ['Mountain Lion', 'Release']}, 54 "WebKit Mac10.8": {"port_name": "mac-mountainlion", "specifiers": ['Mountain Lion', 'Release']},
55 "WebKit Mac10.9 (retina)": {"port_name": "mac-retina", "specifiers": ['Retin a', 'Release']}, 55 "WebKit Mac10.9 (retina)": {"port_name": "mac-retina", "specifiers": ['Retin a', 'Release']},
56 "WebKit Mac10.9": {"port_name": "mac-mavericks", "specifiers": ['Mavericks', 'Release']}, 56 "WebKit Mac10.9": {"port_name": "mac-mavericks", "specifiers": ['Mavericks', 'Release']},
57 "WebKit Mac10.10": {"port_name": "mac-yosemite", "specifiers": ['Yosemite', 'Release']},
57 "WebKit Android (Nexus4)": {"port_name": "android", "specifiers": ['Android' , 'Release']}, 58 "WebKit Android (Nexus4)": {"port_name": "android", "specifiers": ['Android' , 'Release']},
58 } 59 }
59 60
60 61
61 # Mapping from port name to the deps builder of the same os: 62 # Mapping from port name to the deps builder of the same os:
62 _deps_builders = { 63 _deps_builders = {
63 "linux-x86": "WebKit Linux (deps)", 64 "linux-x86": "WebKit Linux (deps)",
64 "linux-x86_64": "WebKit Linux (deps)", 65 "linux-x86_64": "WebKit Linux (deps)",
65 "win-xp": "WebKit XP (deps)", 66 "win-xp": "WebKit XP (deps)",
66 "win-win7": "WebKit XP (deps)", 67 "win-win7": "WebKit XP (deps)",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 return builder_name 113 return builder_name
113 return debug_builder_name 114 return debug_builder_name
114 115
115 116
116 def builder_path_for_port_name(port_name): 117 def builder_path_for_port_name(port_name):
117 builder_path_from_name(builder_name_for_port_name(port_name)) 118 builder_path_from_name(builder_name_for_port_name(port_name))
118 119
119 120
120 def deps_builder_name_for_port_name(target_port_name): 121 def deps_builder_name_for_port_name(target_port_name):
121 return _deps_builders.get(target_port_name, None) 122 return _deps_builders.get(target_port_name, None)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698