| OLD | NEW |
| 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import json | 9 import json |
| 10 import os | 10 import os |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 r'^google_apis[\\\/].*\.py$', | 266 r'^google_apis[\\\/].*\.py$', |
| 267 r'^net.*[\\\/].*\.py$', | 267 r'^net.*[\\\/].*\.py$', |
| 268 r'^out.*[\\\/].*\.py$', | 268 r'^out.*[\\\/].*\.py$', |
| 269 r'^testing[\\\/].*\.py$', | 269 r'^testing[\\\/].*\.py$', |
| 270 r'^third_party[\\\/].*\.py$', | 270 r'^third_party[\\\/].*\.py$', |
| 271 r'^tools[\\\/]find_depot_tools.py$', | 271 r'^tools[\\\/]find_depot_tools.py$', |
| 272 r'^tools[\\\/]clang[\\\/].*\.py$', | 272 r'^tools[\\\/]clang[\\\/].*\.py$', |
| 273 r'^tools[\\\/]generate_library_loader[\\\/].*\.py$', | 273 r'^tools[\\\/]generate_library_loader[\\\/].*\.py$', |
| 274 r'^tools[\\\/]gn[\\\/].*\.py$', | 274 r'^tools[\\\/]gn[\\\/].*\.py$', |
| 275 r'^tools[\\\/]gyp[\\\/].*\.py$', | 275 r'^tools[\\\/]gyp[\\\/].*\.py$', |
| 276 r'^tools[\\\/]isolate_driver.py$', |
| 276 r'^tools[\\\/]protoc_wrapper[\\\/].*\.py$', | 277 r'^tools[\\\/]protoc_wrapper[\\\/].*\.py$', |
| 277 r'^tools[\\\/]python[\\\/].*\.py$', | 278 r'^tools[\\\/]python[\\\/].*\.py$', |
| 278 r'^tools[\\\/]python_charts[\\\/]data[\\\/].*\.py$', | 279 r'^tools[\\\/]python_charts[\\\/]data[\\\/].*\.py$', |
| 279 r'^tools[\\\/]refactoring[\\\/].*\.py$', | 280 r'^tools[\\\/]refactoring[\\\/].*\.py$', |
| 280 r'^tools[\\\/]swarming_client[\\\/].*\.py$', | 281 r'^tools[\\\/]swarming_client[\\\/].*\.py$', |
| 281 r'^tools[\\\/]vim[\\\/].*\.py$', | 282 r'^tools[\\\/]vim[\\\/].*\.py$', |
| 282 # TODO(phoglund): should arguably be checked. | 283 # TODO(phoglund): should arguably be checked. |
| 283 r'^tools[\\\/]valgrind-webrtc[\\\/].*\.py$', | 284 r'^tools[\\\/]valgrind-webrtc[\\\/].*\.py$', |
| 284 r'^tools[\\\/]valgrind[\\\/].*\.py$', | 285 r'^tools[\\\/]valgrind[\\\/].*\.py$', |
| 285 r'^tools[\\\/]win[\\\/].*\.py$', | 286 r'^tools[\\\/]win[\\\/].*\.py$', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 for builder in masters[master]: | 356 for builder in masters[master]: |
| 356 if 'presubmit' in builder: | 357 if 'presubmit' in builder: |
| 357 # Do not trigger presubmit builders, since they're likely to fail | 358 # Do not trigger presubmit builders, since they're likely to fail |
| 358 # (e.g. OWNERS checks before finished code review), and we're running | 359 # (e.g. OWNERS checks before finished code review), and we're running |
| 359 # local presubmit anyway. | 360 # local presubmit anyway. |
| 360 pass | 361 pass |
| 361 else: | 362 else: |
| 362 try_config[master][builder] = ['defaulttests'] | 363 try_config[master][builder] = ['defaulttests'] |
| 363 | 364 |
| 364 return try_config | 365 return try_config |
| OLD | NEW |