OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 master import master_config | 5 from master import master_config |
6 from master.factory import chromium_factory | 6 from master.factory import chromium_factory |
7 | 7 |
8 defaults = {} | 8 defaults = {} |
9 | 9 |
10 helper = master_config.Helper(defaults) | 10 helper = master_config.Helper(defaults) |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 # Linux Dbg Clang bot | 215 # Linux Dbg Clang bot |
216 # | 216 # |
217 | 217 |
218 B('Linux Clang (dbg)', 'dbg_linux_clang', 'compile', 'linux_dbg', | 218 B('Linux Clang (dbg)', 'dbg_linux_clang', 'compile', 'linux_dbg', |
219 notify_on_missing=True) | 219 notify_on_missing=True) |
220 F('dbg_linux_clang', linux().ChromiumFactory( | 220 F('dbg_linux_clang', linux().ChromiumFactory( |
221 target='Debug', | 221 target='Debug', |
222 options=['--build-tool=make', '--compiler=goma-clang'], | 222 options=['--build-tool=make', '--compiler=goma-clang'], |
223 tests=['base', 'gfx', 'unit', 'crypto'], | 223 tests=['base', 'gfx', 'unit', 'crypto'], |
224 factory_properties={ | 224 factory_properties={ |
225 'gclient_env': { | 225 'gclient_env': { |
226 'GYP_DEFINES':'clang=1 clang_use_chrome_plugins=1 fastbuild=1' | 226 'GYP_DEFINES': |
| 227 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 tests_run=noop', |
227 }})) | 228 }})) |
228 | 229 |
229 | 230 |
230 def Update(config, active_master, c): | 231 def Update(config, active_master, c): |
231 return helper.Update(c) | 232 return helper.Update(c) |
OLD | NEW |