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

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

Issue 2135393002: In builder config, change "is_try_bot" -> "is_try_builder". (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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_builder": 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_builder": 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_builder": 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