Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 DEPS = [ | 5 DEPS = [ |
| 6 'bot_update', | 6 'bot_update', |
| 7 'chromium', | 7 'chromium', |
| 8 'chromium_tests', | 8 'chromium_tests', |
| 9 'gclient', | 9 'gclient', |
| 10 'isolate', | 10 'isolate', |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 145 'chromium_config_kwargs': { | 145 'chromium_config_kwargs': { |
| 146 'BUILD_CONFIG': 'Debug', | 146 'BUILD_CONFIG': 'Debug', |
| 147 'TARGET_BITS': 64, | 147 'TARGET_BITS': 64, |
| 148 }, | 148 }, |
| 149 'chromium_config': 'chromium_chromeos', | 149 'chromium_config': 'chromium_chromeos', |
| 150 'compile_only': False, | 150 'compile_only': False, |
| 151 'testing': { | 151 'testing': { |
| 152 'platform': 'linux', | 152 'platform': 'linux', |
| 153 }, | 153 }, |
| 154 }, | 154 }, |
| 155 'linux_chromium_chromeos_compile_dbg': { | |
|
Paweł Hajdan Jr.
2014/10/31 10:03:50
Please use base_on_main_waterfall infrastructure h
dnj
2014/10/31 16:49:50
Done. That's a great addition!
| |
| 156 'add_telemetry_tests': False, | |
| 157 'chromium_config_kwargs': { | |
| 158 'BUILD_CONFIG': 'Debug', | |
| 159 'TARGET_BITS': 64, | |
| 160 }, | |
| 161 'chromium_config': 'chromium_chromeos', | |
| 162 'compile_only': True, | |
| 163 'testing': { | |
| 164 'platform': 'linux', | |
| 165 }, | |
| 166 }, | |
| 155 'linux_chromium_chromeos_rel': { | 167 'linux_chromium_chromeos_rel': { |
| 156 'add_telemetry_tests': False, | 168 'add_telemetry_tests': False, |
| 157 'chromium_config_kwargs': { | 169 'chromium_config_kwargs': { |
| 158 'BUILD_CONFIG': 'Release', | 170 'BUILD_CONFIG': 'Release', |
| 159 'TARGET_BITS': 64, | 171 'TARGET_BITS': 64, |
| 160 }, | 172 }, |
| 161 'enable_swarming': True, | 173 'enable_swarming': True, |
| 162 'chromium_config': 'chromium_chromeos', | 174 'chromium_config': 'chromium_chromeos', |
| 163 'compile_only': False, | 175 'compile_only': False, |
| 164 'testing': { | 176 'testing': { |
| 165 'platform': 'linux', | 177 'platform': 'linux', |
| 166 }, | 178 }, |
| 167 }, | 179 }, |
| 180 'linux_chromium_chromeos_compile_rel': { | |
| 181 'add_telemetry_tests': False, | |
| 182 'chromium_config_kwargs': { | |
| 183 'BUILD_CONFIG': 'Release', | |
| 184 'TARGET_BITS': 64, | |
| 185 }, | |
| 186 'chromium_config': 'chromium_chromeos', | |
| 187 'compile_only': True, | |
| 188 'testing': { | |
| 189 'platform': 'linux', | |
| 190 }, | |
| 191 }, | |
| 168 'linux_chromium_chromeos_ozone_rel': { | 192 'linux_chromium_chromeos_ozone_rel': { |
| 169 'add_telemetry_tests': False, | 193 'add_telemetry_tests': False, |
| 170 'chromium_config_kwargs': { | 194 'chromium_config_kwargs': { |
| 171 'BUILD_CONFIG': 'Release', | 195 'BUILD_CONFIG': 'Release', |
| 172 'TARGET_BITS': 64, | 196 'TARGET_BITS': 64, |
| 173 }, | 197 }, |
| 174 'chromium_config': 'chromium_chromeos_ozone', | 198 'chromium_config': 'chromium_chromeos_ozone', |
| 175 'compile_only': False, | 199 'compile_only': False, |
| 176 'testing': { | 200 'testing': { |
| 177 'platform': 'linux', | 201 'platform': 'linux', |
| (...skipping 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1511 'test': 'base_tests', | 1535 'test': 'base_tests', |
| 1512 'args': ['--gtest-filter: *NaCl*.*'], | 1536 'args': ['--gtest-filter: *NaCl*.*'], |
| 1513 }, | 1537 }, |
| 1514 ], | 1538 ], |
| 1515 }) | 1539 }) |
| 1516 ) + | 1540 ) + |
| 1517 api.override_step_data( | 1541 api.override_step_data( |
| 1518 'analyze', | 1542 'analyze', |
| 1519 api.json.output({'invalid_targets': 'invalid target'})) | 1543 api.json.output({'invalid_targets': 'invalid target'})) |
| 1520 ) | 1544 ) |
| OLD | NEW |