Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: PRESUBMIT.py

Issue 1497733002: Add webrtc/base to deprecated APIs. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 platform 11 import platform
12 import re 12 import re
13 import subprocess 13 import subprocess
14 import sys 14 import sys
15 15
16 16
17 # Directories that will be scanned by cpplint by the presubmit script. 17 # Directories that will be scanned by cpplint by the presubmit script.
18 CPPLINT_DIRS = [ 18 CPPLINT_DIRS = [
19 'webrtc/audio', 19 'webrtc/audio',
20 'webrtc/call', 20 'webrtc/call',
21 'webrtc/video_engine', 21 'webrtc/video_engine',
22 ] 22 ]
23 23
24 NATIVE_API_DIRS = ( 24 NATIVE_API_DIRS = (
25 'talk/app/webrtc', 25 'talk/app/webrtc',
26 'webrtc', 26 'webrtc',
27 'webrtc/base', # DEPRECATED (will go away).
kwiberg-webrtc 2015/12/03 13:44:27 What does DEPRECATED mean? That webrtc/base is goi
phoglund 2015/12/03 13:58:55 I guess what we want to say here is "don't depend
kjellander_webrtc 2015/12/03 14:03:53 I guess it could be phrased differently, but I mea
kwiberg-webrtc 2015/12/03 14:52:28 OK, sounds good. Perhaps a comment on line 24 that
kjellander_webrtc 2015/12/03 15:12:34 You're right. I added a descriptive comment now an
27 'webrtc/common_audio/include', # DEPRECATED (will go away). 28 'webrtc/common_audio/include', # DEPRECATED (will go away).
28 'webrtc/modules/audio_coding/include', 29 'webrtc/modules/audio_coding/include',
29 'webrtc/modules/audio_conference_mixer/include', # DEPRECATED (will go away). 30 'webrtc/modules/audio_conference_mixer/include', # DEPRECATED (will go away).
30 'webrtc/modules/audio_device/include', 31 'webrtc/modules/audio_device/include',
31 'webrtc/modules/audio_processing/include', 32 'webrtc/modules/audio_processing/include',
32 'webrtc/modules/bitrate_controller/include', 33 'webrtc/modules/bitrate_controller/include',
33 'webrtc/modules/include', 34 'webrtc/modules/include',
34 'webrtc/modules/remote_bitrate_estimator/include', 35 'webrtc/modules/remote_bitrate_estimator/include',
35 'webrtc/modules/rtp_rtcp/include', 36 'webrtc/modules/rtp_rtcp/include',
36 'webrtc/modules/rtp_rtcp/source', # DEPRECATED (will go away). 37 'webrtc/modules/rtp_rtcp/source', # DEPRECATED (will go away).
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 for builder in masters[master]: 448 for builder in masters[master]:
448 if 'presubmit' in builder: 449 if 'presubmit' in builder:
449 # Do not trigger presubmit builders, since they're likely to fail 450 # Do not trigger presubmit builders, since they're likely to fail
450 # (e.g. OWNERS checks before finished code review), and we're running 451 # (e.g. OWNERS checks before finished code review), and we're running
451 # local presubmit anyway. 452 # local presubmit anyway.
452 pass 453 pass
453 else: 454 else:
454 try_config[master][builder] = ['defaulttests'] 455 try_config[master][builder] = ['defaulttests']
455 456
456 return try_config 457 return try_config
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698