blob: 01cb0bb171fde022d9c9ccec5aea183cfb258dbb [file] [log] [blame]
niklase@google.comd15469e2011-09-16 07:04:56 +00001# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2#
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
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9# Inspired by chromium.org:
10# http://dev.chromium.org/developers/contributing-code/watchlists
11
12{
13 'WATCHLIST_DEFINITIONS': {
14 'this_file': {
15 'filepath': '^WATCHLISTS$',
16 },
17 'all_src': {
18 'filepath': 'src/.*',
19 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000020 'root_files': {
21 # src/build/ and non-recursive contents of ./ and src/
22 'filepath': '^[^/]*$|src/[^/]*$|src/build/.*',
23 },
andrew@webrtc.orgdfbebb92011-10-27 22:33:27 +000024 'documented_interfaces': {
25 'filepath': 'src/[^/]*\.h$|'\
26 'src/video_engine/main/interface/.*|'\
27 'src/voice_engine/main/interface/.*',
28 },
andrew@webrtc.org498ae782011-12-06 19:48:05 +000029 'build_files': {
30 'filepath': '\.gyp$|\.gypi$|Android.mk$',
31 },
niklase@google.comd15469e2011-09-16 07:04:56 +000032 'video_engine': {
33 'filepath': 'src/video_engine/.*',
34 },
35 'voice_engine': {
36 'filepath': 'src/voice_engine/.*',
37 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000038 'common_audio': {
39 'filepath': 'src/common_audio/.*',
40 },
niklase@google.comd15469e2011-09-16 07:04:56 +000041 'video_capture': {
42 'filepath': 'src/modules/video_capture/.*',
43 },
44 'video_render': {
45 'filepath': 'src/modules/video_render/.*',
46 },
47 'audio_device': {
48 'filepath': 'src/modules/audio_device/.*',
49 },
tina.legrand@webrtc.orge126dbb2011-09-16 08:02:21 +000050 'audio_coding': {
51 'filepath': 'src/modules/audio_coding/.*',
52 },
niklase@google.comd15469e2011-09-16 07:04:56 +000053 'NetEQ': {
54 'filepath': 'src/modules/audio_coding/NetEQ/.*',
55 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000056 'audio_processing': {
57 'filepath': 'src/modules/audio_processing/.*',
58 },
niklase@google.comd15469e2011-09-16 07:04:56 +000059 'video_codecs': {
60 'filepath': 'src/modules/video_coding/codecs/.*',
61 },
stefan@webrtc.orgdba7a3a2011-09-19 07:50:48 +000062 'video_coding': {
63 'filepath': 'src/modules/video_coding/.*',
64 },
niklase@google.comd15469e2011-09-16 07:04:56 +000065 'rtp_rtcp': {
66 'filepath': 'src/modules/rtp_rtcp/.*'
67 },
68 'system_wrappers': {
69 'filepath': 'src/system_wrappers/.*',
70 },
71 },
72
73 'WATCHLISTS': {
74 'this_file': [''],
75 'all_src': ['tterriberry@mozilla.com',
76 'giles@mozilla.com'],
andrew@webrtc.org87d49792011-09-28 15:04:36 +000077 'root_files': ['andrew@webrtc.org',
78 'niklas.enbom@webrtc.org'],
andrew@webrtc.orgdfbebb92011-10-27 22:33:27 +000079 'documented_interfaces': ['amyfong@webrtc.org'],
andrew@webrtc.org498ae782011-12-06 19:48:05 +000080 'build_files': ['leozwang@webrtc.org'],
andrew@webrtc.org87d49792011-09-28 15:04:36 +000081 'common_audio': ['bjornv@webrtc.org',
82 'andrew@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000083 'video_engine': ['mflodman@webrtc.org',
84 'perkj@webrtc.org'],
85 'voice_engine': ['henrika@webrtc.org'],
86 'video_capture': ['mflodman@webrtc.org',
87 'perkj@webrtc.org'],
88 'video_render': ['mflodman@webrtc.org',
89 'perkj@webrtc.org'],
90 'audio_device': ['henrika@webrtc.org'],
tina.legrand@webrtc.orge126dbb2011-09-16 08:02:21 +000091 'audio_coding': ['tina.legrand@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000092 'NetEQ': ['henrik.lundin@webrtc.org'],
andrew@webrtc.org87d49792011-09-28 15:04:36 +000093 'audio_processing': ['andrew@webrtc.org',
94 'bjornv@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000095 'video_codecs': ['henrik.lundin@webrtc.org'],
stefan@webrtc.orgdba7a3a2011-09-19 07:50:48 +000096 'video_coding': ['stefan@webrtc.org'],
pwestin@webrtc.org11330b02011-10-20 17:54:20 +000097 'rtp_rtcp': ['mflodman@webrtc.org',
98 'pwestin@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000099 'system_wrappers': ['mflodman@webrtc.org',
andrew@webrtc.org87d49792011-09-28 15:04:36 +0000100 'henrika@webrtc.org',
101 'andrew@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +0000102 },
103}