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 webrtc_factory | 6 from master.factory import webrtc_factory |
7 | 7 |
8 defaults = {} | 8 defaults = {} |
9 | 9 |
10 | 10 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 'show_perf_results': True, | 94 'show_perf_results': True, |
95 'expectations': True, | 95 'expectations': True, |
96 'perf_id': 'webrtc-win-large-tests', | 96 'perf_id': 'webrtc-win-large-tests', |
97 'perf_config': {'a_default_rev': 'r_webrtc_rev'}, | 97 'perf_config': {'a_default_rev': 'r_webrtc_rev'}, |
98 'perf_measuring_tests': ['vie_auto_test', | 98 'perf_measuring_tests': ['vie_auto_test', |
99 'webrtc_perf_tests'], | 99 'webrtc_perf_tests'], |
100 'custom_cmd_line_tests': ['vie_auto_test', | 100 'custom_cmd_line_tests': ['vie_auto_test', |
101 'voe_auto_test'], | 101 'voe_auto_test'], |
102 })) | 102 })) |
103 | 103 |
| 104 B('Win SyzyASan', 'win_asan_factory', 'compile|testers|windows', scheduler) |
| 105 F('win_asan_factory', win().WebRTCFactory( |
| 106 target='Release', |
| 107 options=options, |
| 108 tests=tests, |
| 109 factory_properties={ |
| 110 'asan': True, |
| 111 'gclient_env': { |
| 112 'GYP_DEFINES': ('syzyasan=1 win_z7=1 chromium_win_pch=0 ' |
| 113 'component=static_library'), |
| 114 'GYP_USE_SEPARATE_MSPDBSRV': '1', |
| 115 }, |
| 116 })) |
104 | 117 |
105 def Update(c): | 118 def Update(c): |
106 helper.Update(c) | 119 helper.Update(c) |
OLD | NEW |