| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 # This is the list of configs that you can pass to mb; each config | 6 # This is the list of configs that you can pass to mb; each config |
| 7 # represents a particular combination of GYP_DEFINES/gn args that | 7 # represents a particular combination of GYP_DEFINES/gn args that |
| 8 # we must support. A given config *may* be platform-specific but | 8 # we must support. A given config *may* be platform-specific but |
| 9 # is not necessarily so (i.e., we might have mac, win, and linux | 9 # is not necessarily so (i.e., we might have mac, win, and linux |
| 10 # bots all using the 'gn_release_bot' config). | 10 # bots all using the 'gn_release_bot' config). |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 'dev_gyp_release': ['gyp', 'release', 'shared'], | 23 'dev_gyp_release': ['gyp', 'release', 'shared'], |
| 24 'gn_release_bot': ['gn', 'release_bot'], | 24 'gn_release_bot': ['gn', 'release_bot'], |
| 25 'gn_release_bot_x86': ['gn', 'release_bot', 'x86'], | 25 'gn_release_bot_x86': ['gn', 'release_bot', 'x86'], |
| 26 'gn_release_trybot': ['gn', 'release_trybot'], | 26 'gn_release_trybot': ['gn', 'release_trybot'], |
| 27 'gn_release_trybot_x86': ['gn', 'release_trybot', 'x86'], | 27 'gn_release_trybot_x86': ['gn', 'release_trybot', 'x86'], |
| 28 'gn_debug_bot': ['gn', 'debug_bot'], | 28 'gn_debug_bot': ['gn', 'debug_bot'], |
| 29 'gn_debug_bot_x86': ['gn', 'debug_bot', 'x86'], | 29 'gn_debug_bot_x86': ['gn', 'debug_bot', 'x86'], |
| 30 'gn_debug_static_bot': ['gn', 'debug_static_bot'], | 30 'gn_debug_static_bot': ['gn', 'debug_static_bot'], |
| 31 'gn_debug_static_bot_x86': ['gn', 'debug_static_bot', 'x86'], | 31 'gn_debug_static_bot_x86': ['gn', 'debug_static_bot', 'x86'], |
| 32 'gyp_release_bot': ['gyp', 'release_bot'], | 32 'gyp_release_bot': ['gyp', 'release_bot'], |
| 33 # clang/win doesn't work with goma yet, so this can't use debug_bot: |
| 34 'win_clang_debug_bot': |
| 35 ['gn', 'clang', 'debug', 'shared', 'minimal_symbols'], |
| 33 }, | 36 }, |
| 34 | 37 |
| 35 # This is a list of configs that do not actually exist on any bot | 38 # This is a list of configs that do not actually exist on any bot |
| 36 # but are used so commonly by devs that we must support them. | 39 # but are used so commonly by devs that we must support them. |
| 37 'common_dev_configs': [ | 40 'common_dev_configs': [ |
| 38 'dev_gn_debug', | 41 'dev_gn_debug', |
| 39 'dev_gn_release', | 42 'dev_gn_release', |
| 40 'dev_gyp_debug', | 43 'dev_gyp_debug', |
| 41 'dev_gyp_release', | 44 'dev_gyp_release', |
| 42 ], | 45 ], |
| (...skipping 18 matching lines...) Expand all Loading... |
| 61 'android': { | 64 'android': { |
| 62 'gn_args': 'target_os="android"', | 65 'gn_args': 'target_os="android"', |
| 63 'gyp_defines': 'OS=android', | 66 'gyp_defines': 'OS=android', |
| 64 }, | 67 }, |
| 65 | 68 |
| 66 'chromeos': { | 69 'chromeos': { |
| 67 'gn_args': 'target_os="chromeos"', | 70 'gn_args': 'target_os="chromeos"', |
| 68 'gyp_defines': 'chromeos=1', | 71 'gyp_defines': 'chromeos=1', |
| 69 }, | 72 }, |
| 70 | 73 |
| 74 'clang': { |
| 75 'gn_args': 'is_clang=true', |
| 76 'gyp_defines': 'clang=1', |
| 77 }, |
| 78 |
| 71 'dcheck_always_on': { | 79 'dcheck_always_on': { |
| 72 'gn_args': 'dcheck_always_on=true', | 80 'gn_args': 'dcheck_always_on=true', |
| 73 'gyp_defines': 'dcheck_always_on=1', | 81 'gyp_defines': 'dcheck_always_on=1', |
| 74 }, | 82 }, |
| 75 | 83 |
| 76 'debug': { | 84 'debug': { |
| 77 'gn_args': 'is_debug=true', | 85 'gn_args': 'is_debug=true', |
| 78 'gyp_config': 'Debug', | 86 'gyp_config': 'Debug', |
| 79 }, | 87 }, |
| 80 | 88 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 'Win x64 GN (dbg)': 'gn_debug_bot', | 168 'Win x64 GN (dbg)': 'gn_debug_bot', |
| 161 'Win8 GN': 'gn_release_bot_x86', | 169 'Win8 GN': 'gn_release_bot_x86', |
| 162 'Win8 GN (dbg)': 'gn_debug_bot_x86', | 170 'Win8 GN (dbg)': 'gn_debug_bot_x86', |
| 163 }, | 171 }, |
| 164 'chromium.webkit': { | 172 'chromium.webkit': { |
| 165 'Android GN': 'android_gn_release_bot', | 173 'Android GN': 'android_gn_release_bot', |
| 166 'Android GN (dbg)': 'android_gn_debug_bot', | 174 'Android GN (dbg)': 'android_gn_debug_bot', |
| 167 'Linux GN': 'gn_release_bot', | 175 'Linux GN': 'gn_release_bot', |
| 168 'Linux GN (dbg)': 'gn_debug_bot' | 176 'Linux GN (dbg)': 'gn_debug_bot' |
| 169 }, | 177 }, |
| 178 'chromium.fyi': { |
| 179 'CrWinClang64(dbg)': 'win_clang_debug_bot', |
| 180 }, |
| 170 'chromium.webrtc.fyi': { | 181 'chromium.webrtc.fyi': { |
| 171 'Android GN': 'android_gn_release_bot', | 182 'Android GN': 'android_gn_release_bot', |
| 172 'Android GN (dbg)': 'android_gn_debug_bot', | 183 'Android GN (dbg)': 'android_gn_debug_bot', |
| 173 'Linux GN': 'gn_release_bot', | 184 'Linux GN': 'gn_release_bot', |
| 174 'Linux GN (dbg)': 'gn_debug_bot', | 185 'Linux GN (dbg)': 'gn_debug_bot', |
| 175 'Mac GN': 'gn_release_bot', | 186 'Mac GN': 'gn_release_bot', |
| 176 'Mac GN (dbg)': 'gn_debug_static_bot', | 187 'Mac GN (dbg)': 'gn_debug_static_bot', |
| 177 'Win GN': 'gn_release_bot_x86', | 188 'Win GN': 'gn_release_bot_x86', |
| 178 'Win GN (dbg)': 'gn_debug_static_bot_x86', | 189 'Win GN (dbg)': 'gn_debug_static_bot_x86', |
| 179 }, | 190 }, |
| (...skipping 29 matching lines...) Expand all Loading... |
| 209 'win8_chromium_gn_dbg': 'gn_debug_static_bot_x86', | 220 'win8_chromium_gn_dbg': 'gn_debug_static_bot_x86', |
| 210 'win8_chromium_gn_rel': 'gn_release_trybot_x86', | 221 'win8_chromium_gn_rel': 'gn_release_trybot_x86', |
| 211 'win8_chromium_gn_upload': 'gn_release_bot', | 222 'win8_chromium_gn_upload': 'gn_release_bot', |
| 212 }, | 223 }, |
| 213 'tryserver.v8': { | 224 'tryserver.v8': { |
| 214 'v8_linux_chromium_gn_rel': 'gn_release_trybot', | 225 'v8_linux_chromium_gn_rel': 'gn_release_trybot', |
| 215 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot', | 226 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot', |
| 216 }, | 227 }, |
| 217 }, | 228 }, |
| 218 } | 229 } |
| OLD | NEW |