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

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

Issue 2347293003: Rename any builder with prefix 'WebKit Linux' to 'WebKit Linux Precise' (Closed)
Patch Set: Update more recent addition to WebKit Precise Created 4 years, 2 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
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 21 matching lines...) Expand all
32 "specifiers": ['Win7', 'Release'] 32 "specifiers": ['Win7', 'Release']
33 }, 33 },
34 "WebKit Win7 (dbg)": { 34 "WebKit Win7 (dbg)": {
35 "port_name": "win-win7", 35 "port_name": "win-win7",
36 "specifiers": ['Win7', 'Debug'] 36 "specifiers": ['Win7', 'Debug']
37 }, 37 },
38 "WebKit Win10": { 38 "WebKit Win10": {
39 "port_name": "win-win10", 39 "port_name": "win-win10",
40 "specifiers": ['Win10', 'Release'] 40 "specifiers": ['Win10', 'Release']
41 }, 41 },
42 "WebKit Linux": { # FIXME: Rename this. http://crbug.com/613305. 42 "WebKit Linux Precise": {
43 "port_name": "linux-precise", 43 "port_name": "linux-precise",
44 "specifiers": ['Precise', 'Release'] 44 "specifiers": ['Precise', 'Release']
45 }, 45 },
46 "WebKit Linux Trusty": { 46 "WebKit Linux Trusty": {
47 "port_name": "linux-trusty", 47 "port_name": "linux-trusty",
48 "specifiers": ['Trusty', 'Release'] 48 "specifiers": ['Trusty', 'Release']
49 }, 49 },
50 "WebKit Linux (dbg)": { 50 "WebKit Linux Precise (dbg)": {
51 "port_name": "linux-precise", 51 "port_name": "linux-precise",
52 "specifiers": ['Precise', 'Debug'] 52 "specifiers": ['Precise', 'Debug']
53 }, 53 },
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']
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 "port_name": "win-win10", 114 "port_name": "win-win10",
115 "specifiers": ['Win10', 'Release'], 115 "specifiers": ['Win10', 'Release'],
116 "is_try_builder": True, 116 "is_try_builder": True,
117 }, 117 },
118 "android_blink_rel": { 118 "android_blink_rel": {
119 "port_name": "android", 119 "port_name": "android",
120 "specifiers": ['Android', 'Release'], 120 "specifiers": ['Android', 'Release'],
121 "is_try_builder": True, 121 "is_try_builder": True,
122 }, 122 },
123 } 123 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698