| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 'release': { | 96 'release': { |
| 97 'gn_args': 'is_debug=false', | 97 'gn_args': 'is_debug=false', |
| 98 'gyp_config': 'Release', | 98 'gyp_config': 'Release', |
| 99 }, | 99 }, |
| 100 | 100 |
| 101 'release_bot': { | 101 'release_bot': { |
| 102 'mixins': ['release', 'static', 'minimal_symbols', 'goma'], | 102 'mixins': ['release', 'static', 'minimal_symbols', 'goma'], |
| 103 }, | 103 }, |
| 104 | 104 |
| 105 'release_trybot': { | 105 'release_trybot': { |
| 106 'mixins': ['release_bot', 'dcheck_always_on', 'goma'] | 106 'mixins': ['release_bot', 'dcheck_always_on'] |
| 107 }, | 107 }, |
| 108 | 108 |
| 109 'shared': { | 109 'shared': { |
| 110 'gn_args': 'is_component_build=true', | 110 'gn_args': 'is_component_build=true', |
| 111 'gyp_defines': 'component=shared_library', | 111 'gyp_defines': 'component=shared_library', |
| 112 }, | 112 }, |
| 113 | 113 |
| 114 'static': { | 114 'static': { |
| 115 'gn_args': 'is_component_build=false', | 115 'gn_args': 'is_component_build=false', |
| 116 'gyp_defines': 'component=static_library', | 116 'gyp_defines': 'component=static_library', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'mac_chromium_gn_rel': 'gn_release_trybot', | 161 'mac_chromium_gn_rel': 'gn_release_trybot', |
| 162 'mac_chromium_gn_upload': 'gn_release_bot', | 162 'mac_chromium_gn_upload': 'gn_release_bot', |
| 163 }, | 163 }, |
| 164 'tryserver.chromium.win': { | 164 'tryserver.chromium.win': { |
| 165 'win8_chromium_gn_dbg': 'gn_debug_bot', | 165 'win8_chromium_gn_dbg': 'gn_debug_bot', |
| 166 'win8_chromium_gn_rel': 'gn_release_trybot', | 166 'win8_chromium_gn_rel': 'gn_release_trybot', |
| 167 'win8_chromium_gn_upload': 'gn_release_bot', | 167 'win8_chromium_gn_upload': 'gn_release_bot', |
| 168 }, | 168 }, |
| 169 }, | 169 }, |
| 170 } | 170 } |
| OLD | NEW |