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

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

Issue 218493009: WebRTC+libyuv: switch to use_allocator GYP variable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Made all bots use release_extra_cflags=-g 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 F('linux_asan_factory', linux().WebRTCFactory( 135 F('linux_asan_factory', linux().WebRTCFactory(
136 target='Release', 136 target='Release',
137 options=['--compiler=goma-clang'], 137 options=['--compiler=goma-clang'],
138 tests=tests, 138 tests=tests,
139 factory_properties={ 139 factory_properties={
140 'asan': True, 140 'asan': True,
141 'sharded_tests': tests, 141 'sharded_tests': tests,
142 'force_isolated': True, 142 'force_isolated': True,
143 'gclient_env': { 143 'gclient_env': {
144 'GYP_DEFINES': ('asan=1 release_extra_cflags=-g ' 144 'GYP_DEFINES': ('asan=1 release_extra_cflags=-g '
145 'linux_use_tcmalloc=0 ')}, 145 'use_allocator=none ')},
146 })) 146 }))
147 147
148 B('Linux64 Release [large tests]', 'linux_largetests_factory', 148 B('Linux64 Release [large tests]', 'linux_largetests_factory',
149 'compile|baremetal', scheduler) 149 'compile|baremetal', scheduler)
150 F('linux_largetests_factory', linux().WebRTCFactory( 150 F('linux_largetests_factory', linux().WebRTCFactory(
151 target='Release', 151 target='Release',
152 options=options, 152 options=options,
153 tests=baremetal_tests, 153 tests=baremetal_tests,
154 factory_properties={ 154 factory_properties={
155 'virtual_webcam': True, 155 'virtual_webcam': True,
(...skipping 20 matching lines...) Expand all
176 target='Debug', 176 target='Debug',
177 options=options, 177 options=options,
178 tests=tests, 178 tests=tests,
179 factory_properties={ 179 factory_properties={
180 'gclient_env': {'GYP_DEFINES': 'chromeos=1'}, 180 'gclient_env': {'GYP_DEFINES': 'chromeos=1'},
181 })) 181 }))
182 182
183 183
184 def Update(c): 184 def Update(c):
185 helper.Update(c) 185 helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.client.webrtc.fyi/master_linux_cfg.py ('k') | masters/master.client.webrtc/master_mac_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698