| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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) |
| OLD | NEW |