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

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/config/builders.py

Issue 2102873002: Change specifier string of WebKit Mac10.11 builders to "Mac10.11". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2016, Google Inc. All rights reserved. 1 # Copyright (c) 2016, 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 "WebKit Mac10.9": { 54 "WebKit Mac10.9": {
55 "port_name": "mac-mac10.9", 55 "port_name": "mac-mac10.9",
56 "specifiers": ['Mac10.9', 'Release'] 56 "specifiers": ['Mac10.9', 'Release']
57 }, 57 },
58 "WebKit Mac10.10": { 58 "WebKit Mac10.10": {
59 "port_name": "mac-mac10.10", 59 "port_name": "mac-mac10.10",
60 "specifiers": ['Mac10.10', 'Release'] 60 "specifiers": ['Mac10.10', 'Release']
61 }, 61 },
62 "WebKit Mac10.11": { 62 "WebKit Mac10.11": {
63 "port_name": "mac-mac10.11", 63 "port_name": "mac-mac10.11",
64 "specifiers": ['10.11', 'Release'] 64 "specifiers": ['Mac10.11', 'Release']
65 }, 65 },
66 "WebKit Mac10.11 (dbg)": { 66 "WebKit Mac10.11 (dbg)": {
67 "port_name": "mac-mac10.11", 67 "port_name": "mac-mac10.11",
68 "specifiers": ['10.11', 'Debug'] 68 "specifiers": ['Mac10.11', 'Debug']
69 }, 69 },
70 "WebKit Mac10.11 (retina)": { 70 "WebKit Mac10.11 (retina)": {
71 "port_name": "mac-retina", 71 "port_name": "mac-retina",
72 "specifiers": ['Retina', 'Release'] 72 "specifiers": ['Retina', 'Release']
73 }, 73 },
74 "WebKit Android (Nexus4)": { 74 "WebKit Android (Nexus4)": {
75 "port_name": "android", 75 "port_name": "android",
76 "specifiers": ['Android', 'Release'] 76 "specifiers": ['Android', 'Release']
77 }, 77 },
78 # TODO(qyearsley): Update this set of builders when new builders 78 # TODO(qyearsley): Update this set of builders when new builders
79 # are set up for layout test try jobs. http://crbug.com/474273. 79 # are set up for layout test try jobs. http://crbug.com/474273.
80 "linux_chromium_rel_ng": { 80 "linux_chromium_rel_ng": {
81 "port_name": "linux-precise", 81 "port_name": "linux-precise",
82 "specifiers": ['Precise', 'Release'], 82 "specifiers": ['Precise', 'Release'],
83 "is_try_bot": True, 83 "is_try_bot": True,
84 }, 84 },
85 "mac_chromium_rel_ng": { 85 "mac_chromium_rel_ng": {
86 "port_name": "mac-mac10.9", 86 "port_name": "mac-mac10.9",
87 "specifiers": ['Mac10.9', 'Release'], 87 "specifiers": ['Mac10.9', 'Release'],
88 "is_try_bot": True, 88 "is_try_bot": True,
89 }, 89 },
90 "win_chromium_rel_ng": { 90 "win_chromium_rel_ng": {
91 "port_name": "win-win7", 91 "port_name": "win-win7",
92 "specifiers": ['Win7', 'Release'], 92 "specifiers": ['Win7', 'Release'],
93 "is_try_bot": True, 93 "is_try_bot": True,
94 }, 94 },
95 } 95 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698