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 |
11 import re | 11 import re |
12 import subprocess | 12 import subprocess |
13 import sys | 13 import sys |
14 | 14 |
15 | 15 |
16 # Directories that will be scanned by cpplint by the presubmit script. | 16 # Directories that will be scanned by cpplint by the presubmit script. |
17 CPPLINT_DIRS = [ | 17 CPPLINT_DIRS = [ |
18 'webrtc/api', | 18 'webrtc/api', |
19 'webrtc/audio', | 19 'webrtc/audio', |
20 'webrtc/call', | 20 'webrtc/call', |
21 'webrtc/common_audio', | |
22 'webrtc/common_video', | 21 'webrtc/common_video', |
23 'webrtc/examples', | 22 'webrtc/examples', |
24 'webrtc/modules/audio_mixer', | 23 'webrtc/modules/audio_mixer', |
25 'webrtc/modules/bitrate_controller', | 24 'webrtc/modules/bitrate_controller', |
26 'webrtc/modules/congestion_controller', | 25 'webrtc/modules/congestion_controller', |
27 'webrtc/modules/pacing', | 26 'webrtc/modules/pacing', |
28 'webrtc/modules/remote_bitrate_estimator', | 27 'webrtc/modules/remote_bitrate_estimator', |
29 'webrtc/modules/rtp_rtcp', | 28 'webrtc/modules/rtp_rtcp', |
30 'webrtc/modules/video_coding', | 29 'webrtc/modules/video_coding', |
31 'webrtc/modules/video_processing', | 30 'webrtc/modules/video_processing', |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 input_api, output_api)) | 560 input_api, output_api)) |
562 results.extend(input_api.canned_checks.CheckChangeHasDescription( | 561 results.extend(input_api.canned_checks.CheckChangeHasDescription( |
563 input_api, output_api)) | 562 input_api, output_api)) |
564 results.extend(_CheckChangeHasBugField(input_api, output_api)) | 563 results.extend(_CheckChangeHasBugField(input_api, output_api)) |
565 results.extend(input_api.canned_checks.CheckChangeHasTestField( | 564 results.extend(input_api.canned_checks.CheckChangeHasTestField( |
566 input_api, output_api)) | 565 input_api, output_api)) |
567 results.extend(input_api.canned_checks.CheckTreeIsOpen( | 566 results.extend(input_api.canned_checks.CheckTreeIsOpen( |
568 input_api, output_api, | 567 input_api, output_api, |
569 json_url='http://webrtc-status.appspot.com/current?format=json')) | 568 json_url='http://webrtc-status.appspot.com/current?format=json')) |
570 return results | 569 return results |
OLD | NEW |