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

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

Issue 2556723007: Add WebKit Linux Trusty (dbg) to config/builders.py. (Closed)
Patch Set: Created 4 years 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 25 matching lines...) Expand all
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 Trusty": { 42 "WebKit Linux Trusty": {
43 "port_name": "linux-trusty", 43 "port_name": "linux-trusty",
44 "specifiers": ['Trusty', 'Release'] 44 "specifiers": ['Trusty', 'Release']
45 }, 45 },
46 "WebKit Linux Trusty (dbg)": {
47 "port_name": "linux-trusty",
48 "specifiers": ['Trusty', 'Debug']
49 },
46 "WebKit Mac10.9": { 50 "WebKit Mac10.9": {
47 "port_name": "mac-mac10.9", 51 "port_name": "mac-mac10.9",
48 "specifiers": ['Mac10.9', 'Release'] 52 "specifiers": ['Mac10.9', 'Release']
49 }, 53 },
50 "WebKit Mac10.10": { 54 "WebKit Mac10.10": {
51 "port_name": "mac-mac10.10", 55 "port_name": "mac-mac10.10",
52 "specifiers": ['Mac10.10', 'Release'] 56 "specifiers": ['Mac10.10', 'Release']
53 }, 57 },
54 "WebKit Mac10.11": { 58 "WebKit Mac10.11": {
55 "port_name": "mac-mac10.11", 59 "port_name": "mac-mac10.11",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "port_name": "win-win10", 105 "port_name": "win-win10",
102 "specifiers": ['Win10', 'Release'], 106 "specifiers": ['Win10', 'Release'],
103 "is_try_builder": True, 107 "is_try_builder": True,
104 }, 108 },
105 "android_blink_rel": { 109 "android_blink_rel": {
106 "port_name": "android", 110 "port_name": "android",
107 "specifiers": ['Android', 'Release'], 111 "specifiers": ['Android', 'Release'],
108 "is_try_builder": True, 112 "is_try_builder": True,
109 }, 113 },
110 } 114 }
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