| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 }, | 266 }, |
| 267 | 267 |
| 268 'debug_static_bot': { | 268 'debug_static_bot': { |
| 269 'mixins': ['debug', 'static', 'minimal_symbols', 'goma'], | 269 'mixins': ['debug', 'static', 'minimal_symbols', 'goma'], |
| 270 }, | 270 }, |
| 271 | 271 |
| 272 'debug_trybot': { | 272 'debug_trybot': { |
| 273 'mixins': ['debug_bot_minimal_symbols'], | 273 'mixins': ['debug_bot_minimal_symbols'], |
| 274 }, | 274 }, |
| 275 | 275 |
| 276 # TODO(zforman): This doesn't do anything now, find out if it can |
| 277 # be removed, and remove it. |
| 276 'deterministic': { | 278 'deterministic': { |
| 277 'gn_args': 'error', | 279 'gn_args': 'error', |
| 278 'gyp_defines': 'dont_embed_build_metadata=1', | |
| 279 }, | 280 }, |
| 280 | 281 |
| 281 'disable_nacl': { | 282 'disable_nacl': { |
| 282 'gn_args': 'enable_nacl=false', | 283 'gn_args': 'enable_nacl=false', |
| 283 'gyp_defines': 'disable_nacl=1', | 284 'gyp_defines': 'disable_nacl=1', |
| 284 }, | 285 }, |
| 285 | 286 |
| 286 'embedded': { | 287 'embedded': { |
| 287 'gn_args': 'error', | 288 'gn_args': 'error', |
| 288 'gyp_defines': 'embedded=1', | 289 'gyp_defines': 'embedded=1', |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 'win8_chromium_gn_upload': 'gn_release_bot_minimal_symbols_x86', | 796 'win8_chromium_gn_upload': 'gn_release_bot_minimal_symbols_x86', |
| 796 'win_clang_x64_dbg': 'win_clang_debug_bot', | 797 'win_clang_x64_dbg': 'win_clang_debug_bot', |
| 797 }, | 798 }, |
| 798 'tryserver.v8': { | 799 'tryserver.v8': { |
| 799 'v8_linux_chromium_gn_rel': 'gn_release_trybot', | 800 'v8_linux_chromium_gn_rel': 'gn_release_trybot', |
| 800 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot', | 801 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot', |
| 801 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64', | 802 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64', |
| 802 }, | 803 }, |
| 803 }, | 804 }, |
| 804 } | 805 } |
| OLD | NEW |