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 27 matching lines...) Expand all Loading... |
38 # produced by Clang on Linux is small enough. | 38 # produced by Clang on Linux is small enough. |
39 F('asan_rel', linux().ChromiumASANFactory( | 39 F('asan_rel', linux().ChromiumASANFactory( |
40 slave_type='Builder', | 40 slave_type='Builder', |
41 options=[ | 41 options=[ |
42 '--compiler=goma-clang', | 42 '--compiler=goma-clang', |
43 'base_unittests', | 43 'base_unittests', |
44 'browser_tests', | 44 'browser_tests', |
45 'cacheinvalidation_unittests', | 45 'cacheinvalidation_unittests', |
46 'content_unittests', | 46 'content_unittests', |
47 'crypto_unittests', | 47 'crypto_unittests', |
48 'gfx_unittests', | |
49 'googleurl_unittests', | 48 'googleurl_unittests', |
50 'gpu_unittests', | 49 'gpu_unittests', |
51 'ipc_tests', | 50 'ipc_tests', |
52 'jingle_unittests', | 51 'jingle_unittests', |
53 'media_unittests', | 52 'media_unittests', |
54 'net_unittests', | 53 'net_unittests', |
55 'printing_unittests', | 54 'printing_unittests', |
56 'remoting_unittests', | 55 'remoting_unittests', |
57 'safe_browsing_tests', | 56 'safe_browsing_tests', |
58 'sql_unittests', | 57 'sql_unittests', |
59 'sync_unit_tests', | 58 'sync_unit_tests', |
| 59 'ui_unittests', |
60 'unit_tests', | 60 'unit_tests', |
61 ], | 61 ], |
62 factory_properties={ | 62 factory_properties={ |
63 'gclient_env': {'GYP_DEFINES': | 63 'gclient_env': {'GYP_DEFINES': |
64 ('asan=1 ' | 64 ('asan=1 ' |
65 'linux_use_tcmalloc=0 ')}, | 65 'linux_use_tcmalloc=0 ')}, |
66 'trigger': 'linux_asan_rel_trigger' })) | 66 'trigger': 'linux_asan_rel_trigger' })) |
67 | 67 |
68 # | 68 # |
69 # Linux ASAN Rel testers | 69 # Linux ASAN Rel testers |
(...skipping 24 matching lines...) Expand all Loading... |
94 'browser_tests', | 94 'browser_tests', |
95 'googleurl', | 95 'googleurl', |
96 'media', | 96 'media', |
97 'printing', | 97 'printing', |
98 'remoting', | 98 'remoting', |
99 ], | 99 ], |
100 factory_properties={'asan': True})) | 100 factory_properties={'asan': True})) |
101 | 101 |
102 def Update(config, active_master, c): | 102 def Update(config, active_master, c): |
103 return helper.Update(c) | 103 return helper.Update(c) |
OLD | NEW |