Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Side by Side Diff: masters/master.client.webrtc/master_win_cfg.py

Issue 220453004: WebRTC: Move TSan v2 and SyzyASan bots to main build+try masters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebased Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « masters/master.client.webrtc/master_linux_cfg.py ('k') | masters/master.client.webrtc/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698