Chromium Code Reviews| 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 28 matching lines...) Expand all Loading... | |
| 39 # Please do not add release_extra_cflags=-g here until the debug info section | 39 # Please do not add release_extra_cflags=-g here until the debug info section |
| 40 # produced by Clang on Linux is small enough. | 40 # produced by Clang on Linux is small enough. |
| 41 F('linux_asan_rel', linux().ChromiumASANFactory( | 41 F('linux_asan_rel', linux().ChromiumASANFactory( |
| 42 slave_type='Builder', | 42 slave_type='Builder', |
| 43 options=[ | 43 options=[ |
| 44 '--compiler=goma-clang', | 44 '--compiler=goma-clang', |
| 45 '--build-tool=ninja', | 45 '--build-tool=ninja', |
| 46 'base_unittests', | 46 'base_unittests', |
| 47 'browser_tests', | 47 'browser_tests', |
| 48 'cacheinvalidation_unittests', | 48 'cacheinvalidation_unittests', |
| 49 'components_unittests', | |
|
iannucci
2013/01/15 23:53:19
Hmm... weird. It doesn't look like content_browser
| |
| 49 'content_browsertests', | 50 'content_browsertests', |
| 50 'content_unittests', | 51 'content_unittests', |
| 51 'crypto_unittests', | 52 'crypto_unittests', |
| 52 'device_unittests', | 53 'device_unittests', |
| 53 'googleurl_unittests', | 54 'googleurl_unittests', |
| 54 'gpu_unittests', | 55 'gpu_unittests', |
| 55 'ipc_tests', | 56 'ipc_tests', |
| 56 'jingle_unittests', | 57 'jingle_unittests', |
| 57 'media_unittests', | 58 'media_unittests', |
| 58 'net_unittests', | 59 'net_unittests', |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 121 tests=[ | 122 tests=[ |
| 122 'browser_tests', | 123 'browser_tests', |
| 123 'content_browsertests', | 124 'content_browsertests', |
| 124 ], | 125 ], |
| 125 factory_properties={'asan': True, | 126 factory_properties={'asan': True, |
| 126 'browser_total_shards': 3, | 127 'browser_total_shards': 3, |
| 127 'browser_shard_index': 3 })) | 128 'browser_shard_index': 3 })) |
| 128 | 129 |
| 129 def Update(config, active_master, c): | 130 def Update(config, active_master, c): |
| 130 return helper.Update(c) | 131 return helper.Update(c) |
| OLD | NEW |