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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 # | 25 # |
26 # Triggerable scheduler for the rel asan builder | 26 # Triggerable scheduler for the rel asan builder |
27 # | 27 # |
28 T('mac_asan_rel_trigger') | 28 T('mac_asan_rel_trigger') |
29 | 29 |
30 mac_asan_options = [ | 30 mac_asan_options = [ |
31 'base_unittests', | 31 'base_unittests', |
32 'browser_tests', | 32 'browser_tests', |
33 'cacheinvalidation_unittests', | 33 'cacheinvalidation_unittests', |
| 34 'components_unittests', |
34 'content_browsertests', | 35 'content_browsertests', |
35 'content_unittests', | 36 'content_unittests', |
36 'crypto_unittests', | 37 'crypto_unittests', |
37 'googleurl_unittests', | 38 'googleurl_unittests', |
38 'interactive_ui_tests', | 39 'interactive_ui_tests', |
39 'ipc_tests', | 40 'ipc_tests', |
40 'jingle_unittests', | 41 'jingle_unittests', |
41 'media_unittests', | 42 'media_unittests', |
42 'net_unittests', | 43 'net_unittests', |
43 'ppapi_unittests', | 44 'ppapi_unittests', |
44 'printing_unittests', | 45 'printing_unittests', |
45 'remoting_unittests', | 46 'remoting_unittests', |
46 'sql_unittests', | 47 'sql_unittests', |
47 'ui_unittests', | 48 'ui_unittests', |
48 ] | 49 ] |
49 | 50 |
50 mac_asan_tests_1 = [ | 51 mac_asan_tests_1 = [ |
51 'base', | 52 'base', |
52 'browser_tests', | 53 'browser_tests', |
53 'cacheinvalidation', | 54 'cacheinvalidation', |
| 55 'components_unittests', |
54 'content_unittests', | 56 'content_unittests', |
55 'content_browsertests', | 57 'content_browsertests', |
56 'crypto', | 58 'crypto', |
57 'googleurl', | 59 'googleurl', |
58 'jingle', | 60 'jingle', |
59 'media', | 61 'media', |
60 'ppapi_unittests', | 62 'ppapi_unittests', |
61 'printing', | 63 'printing', |
62 'remoting', | 64 'remoting', |
63 'unit_ipc', | 65 'unit_ipc', |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 build_url=mac_asan_archive, | 139 build_url=mac_asan_archive, |
138 tests=mac_asan_tests_3, | 140 tests=mac_asan_tests_3, |
139 factory_properties={ | 141 factory_properties={ |
140 'asan': True, | 142 'asan': True, |
141 'browser_total_shards': '3', | 143 'browser_total_shards': '3', |
142 'browser_shard_index': '3', | 144 'browser_shard_index': '3', |
143 })) | 145 })) |
144 | 146 |
145 def Update(config, active_master, c): | 147 def Update(config, active_master, c): |
146 return helper.Update(c) | 148 return helper.Update(c) |
OLD | NEW |