OLD | NEW |
---|---|
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 |
mflodman
2015/12/17 13:05:39
Don't remove this.
| |
2 # | |
3 # Use of this source code is governed by a BSD-style license | 2 # 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 | 3 # 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 | 4 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 5 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 6 # be found in the AUTHORS file in the root of the source tree. |
8 | 7 |
9 import json | 8 import json |
10 import os | 9 import os |
11 import platform | 10 import platform |
12 import re | 11 import re |
13 import subprocess | 12 import subprocess |
14 import sys | 13 import sys |
15 | 14 |
16 | 15 |
17 # Directories that will be scanned by cpplint by the presubmit script. | 16 # Directories that will be scanned by cpplint by the presubmit script. |
18 CPPLINT_DIRS = [ | 17 CPPLINT_DIRS = [ |
19 'webrtc/audio', | 18 'webrtc/audio', |
20 'webrtc/call', | 19 'webrtc/call', |
21 'webrtc/common_video', | 20 'webrtc/common_video', |
22 'webrtc/examples', | 21 'webrtc/examples', |
23 'webrtc/modules/video_processing', | 22 'webrtc/modules/video_processing', |
23 'webrtc/modules/video_coding', | |
mflodman
2015/12/17 13:05:39
Alphabetic order.
philipel
2015/12/18 12:23:16
Done.
| |
24 'webrtc/sound', | 24 'webrtc/sound', |
25 'webrtc/tools', | 25 'webrtc/tools', |
26 'webrtc/video', | 26 'webrtc/video', |
27 ] | 27 ] |
28 | 28 |
29 # List of directories of "supported" native APIs. That means changes to headers | 29 # List of directories of "supported" native APIs. That means changes to headers |
30 # will be done in a compatible way following this scheme: | 30 # will be done in a compatible way following this scheme: |
31 # 1. Non-breaking changes are made. | 31 # 1. Non-breaking changes are made. |
32 # 2. The old APIs as marked as deprecated (with comments). | 32 # 2. The old APIs as marked as deprecated (with comments). |
33 # 3. Deprecation is announced to discuss-webrtc@googlegroups.com and | 33 # 3. Deprecation is announced to discuss-webrtc@googlegroups.com and |
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
461 for builder in masters[master]: | 461 for builder in masters[master]: |
462 if 'presubmit' in builder: | 462 if 'presubmit' in builder: |
463 # Do not trigger presubmit builders, since they're likely to fail | 463 # Do not trigger presubmit builders, since they're likely to fail |
464 # (e.g. OWNERS checks before finished code review), and we're running | 464 # (e.g. OWNERS checks before finished code review), and we're running |
465 # local presubmit anyway. | 465 # local presubmit anyway. |
466 pass | 466 pass |
467 else: | 467 else: |
468 try_config[master][builder] = ['defaulttests'] | 468 try_config[master][builder] = ['defaulttests'] |
469 | 469 |
470 return try_config | 470 return try_config |
OLD | NEW |