| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-mac-archive', | 9 'build_gs_bucket': 'chromium-mac-archive', |
| 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. | 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 steps.generate_gtest, | 95 steps.generate_gtest, |
| 96 steps.generate_script, | 96 steps.generate_script, |
| 97 steps.generate_isolated_script, | 97 steps.generate_isolated_script, |
| 98 ], | 98 ], |
| 99 'bot_type': 'tester', | 99 'bot_type': 'tester', |
| 100 'parent_buildername': 'Mac Builder', | 100 'parent_buildername': 'Mac Builder', |
| 101 'testing': { | 101 'testing': { |
| 102 'platform': 'mac', | 102 'platform': 'mac', |
| 103 }, | 103 }, |
| 104 }, | 104 }, |
| 105 'Mac GYP': { | |
| 106 'chromium_config': 'chromium', | |
| 107 'chromium_apply_config': ['mb', 'force_mac_toolchain'], | |
| 108 'gclient_config': 'chromium', | |
| 109 'chromium_config_kwargs': { | |
| 110 'BUILD_CONFIG': 'Release', | |
| 111 'TARGET_PLATFORM': 'mac', | |
| 112 }, | |
| 113 'test_generators': [ | |
| 114 steps.generate_gtest, | |
| 115 steps.generate_script, | |
| 116 steps.generate_isolated_script, | |
| 117 ], | |
| 118 'enable_swarming': True, | |
| 119 'checkout_dir': 'mac_gyp', | |
| 120 'testing': { | |
| 121 'platform': 'mac', | |
| 122 }, | |
| 123 }, | |
| 124 'Mac Builder (dbg)': { | 105 'Mac Builder (dbg)': { |
| 125 'chromium_config': 'chromium', | 106 'chromium_config': 'chromium', |
| 126 'chromium_apply_config': [ | 107 'chromium_apply_config': [ |
| 127 'mb', | 108 'mb', |
| 128 'ninja_confirm_noop', | 109 'ninja_confirm_noop', |
| 129 'force_mac_toolchain' | 110 'force_mac_toolchain' |
| 130 ], | 111 ], |
| 131 'gclient_config': 'chromium', | 112 'gclient_config': 'chromium', |
| 132 'chromium_config_kwargs': { | 113 'chromium_config_kwargs': { |
| 133 'BUILD_CONFIG': 'Debug', | 114 'BUILD_CONFIG': 'Debug', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 160 'bot_type': 'tester', | 141 'bot_type': 'tester', |
| 161 'parent_buildername': 'Mac Builder (dbg)', | 142 'parent_buildername': 'Mac Builder (dbg)', |
| 162 'testing': { | 143 'testing': { |
| 163 'platform': 'mac', | 144 'platform': 'mac', |
| 164 }, | 145 }, |
| 165 'enable_swarming': True, | 146 'enable_swarming': True, |
| 166 'swarming_dimensions': { | 147 'swarming_dimensions': { |
| 167 'os': 'Mac-10.9', | 148 'os': 'Mac-10.9', |
| 168 }, | 149 }, |
| 169 }, | 150 }, |
| 170 'Mac GYP (dbg)': { | |
| 171 'chromium_config': 'chromium', | |
| 172 'chromium_apply_config': ['mb', 'force_mac_toolchain'], | |
| 173 'gclient_config': 'chromium', | |
| 174 'chromium_config_kwargs': { | |
| 175 'BUILD_CONFIG': 'Debug', | |
| 176 'TARGET_PLATFORM': 'mac', | |
| 177 }, | |
| 178 'test_generators': [ | |
| 179 steps.generate_gtest, | |
| 180 steps.generate_script, | |
| 181 steps.generate_isolated_script, | |
| 182 ], | |
| 183 'enable_swarming': True, | |
| 184 'checkout_dir': 'mac_gyp', | |
| 185 'testing': { | |
| 186 'platform': 'mac', | |
| 187 }, | |
| 188 }, | |
| 189 }, | 151 }, |
| 190 } | 152 } |
| OLD | NEW |