| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 # | 3 # |
| 4 # Use of this source code is governed by a BSD-style license | 4 # Use of this source code is governed by a BSD-style license |
| 5 # that can be found in the LICENSE file in the root of the source | 5 # that can be found in the LICENSE file in the root of the source |
| 6 # tree. An additional intellectual property rights grant can be found | 6 # tree. An additional intellectual property rights grant can be found |
| 7 # in the file PATENTS. All contributing project authors may | 7 # in the file PATENTS. All contributing project authors may |
| 8 # be found in the AUTHORS file in the root of the source tree. | 8 # be found in the AUTHORS file in the root of the source tree. |
| 9 | 9 |
| 10 # These modules come from scripts, which must be in the PYTHONPATH. | 10 # These modules come from scripts, which must be in the PYTHONPATH. |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 options=ninja_options, | 185 options=ninja_options, |
| 186 tests=tests) | 186 tests=tests) |
| 187 } | 187 } |
| 188 | 188 |
| 189 b_linux_memcheck = { | 189 b_linux_memcheck = { |
| 190 'name': 'linux_memcheck', | 190 'name': 'linux_memcheck', |
| 191 'factory': linux().WebRTCFactory( | 191 'factory': linux().WebRTCFactory( |
| 192 target='Release', | 192 target='Release', |
| 193 slave_type='Trybot', | 193 slave_type='Trybot', |
| 194 options=ninja_options, | 194 options=ninja_options, |
| 195 tests=tests, | 195 tests=['memcheck_' + test for test in tests], |
| 196 factory_properties={ | 196 factory_properties={ |
| 197 'needs_valgrind': True, | 197 'needs_valgrind': True, |
| 198 'gclient_env': {'GYP_DEFINES': 'build_for_tool=memcheck'}, | 198 'gclient_env': {'GYP_DEFINES': 'build_for_tool=memcheck'}, |
| 199 }) | 199 }) |
| 200 } | 200 } |
| 201 | 201 |
| 202 b_linux_tsan = { | 202 b_linux_tsan = { |
| 203 'name': 'linux_tsan', | 203 'name': 'linux_tsan', |
| 204 'factory': linux().WebRTCFactory( | 204 'factory': linux().WebRTCFactory( |
| 205 target='Release', | 205 target='Release', |
| 206 slave_type='Trybot', | 206 slave_type='Trybot', |
| 207 options=ninja_options, | 207 options=ninja_options, |
| 208 tests=tests, | 208 tests=['tsan_' + test for test in tests], |
| 209 factory_properties={ | 209 factory_properties={ |
| 210 'needs_valgrind': True, | 210 'needs_valgrind': True, |
| 211 'gclient_env': {'GYP_DEFINES': 'build_for_tool=tsan'}, | 211 'gclient_env': {'GYP_DEFINES': 'build_for_tool=tsan'}, |
| 212 }) | 212 }) |
| 213 } | 213 } |
| 214 | 214 |
| 215 b_linux_asan = { | 215 b_linux_asan = { |
| 216 'name': 'linux_asan', | 216 'name': 'linux_asan', |
| 217 'factory': linux().WebRTCFactory( | 217 'factory': linux().WebRTCFactory( |
| 218 target='Release', | 218 target='Release', |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 c['buildCacheSize'] = 100 | 354 c['buildCacheSize'] = 100 |
| 355 | 355 |
| 356 ####### PROJECT IDENTITY | 356 ####### PROJECT IDENTITY |
| 357 | 357 |
| 358 # The 'projectURL' string will be used to provide a link | 358 # The 'projectURL' string will be used to provide a link |
| 359 # from buildbot HTML pages to your project's home page. | 359 # from buildbot HTML pages to your project's home page. |
| 360 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 360 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 361 | 361 |
| 362 # Buildbot master url: | 362 # Buildbot master url: |
| 363 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.webrtc/' | 363 c['buildbotURL'] = 'http://build.chromium.org/p/tryserver.webrtc/' |
| OLD | NEW |