blob: 66afb9d435d559239e779cb8857f85447f903081 [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 },
niklase@google.comd15469e2011-09-16 07:04:56 +000029 'video_engine': {
30 'filepath': 'src/video_engine/.*',
31 },
32 'voice_engine': {
33 'filepath': 'src/voice_engine/.*',
34 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000035 'common_audio': {
36 'filepath': 'src/common_audio/.*',
37 },
niklase@google.comd15469e2011-09-16 07:04:56 +000038 'video_capture': {
39 'filepath': 'src/modules/video_capture/.*',
40 },
41 'video_render': {
42 'filepath': 'src/modules/video_render/.*',
43 },
44 'audio_device': {
45 'filepath': 'src/modules/audio_device/.*',
46 },
tina.legrand@webrtc.orge126dbb2011-09-16 08:02:21 +000047 'audio_coding': {
48 'filepath': 'src/modules/audio_coding/.*',
49 },
niklase@google.comd15469e2011-09-16 07:04:56 +000050 'NetEQ': {
51 'filepath': 'src/modules/audio_coding/NetEQ/.*',
52 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000053 'audio_processing': {
54 'filepath': 'src/modules/audio_processing/.*',
55 },
niklase@google.comd15469e2011-09-16 07:04:56 +000056 'video_codecs': {
57 'filepath': 'src/modules/video_coding/codecs/.*',
58 },
stefan@webrtc.orgdba7a3a2011-09-19 07:50:48 +000059 'video_coding': {
60 'filepath': 'src/modules/video_coding/.*',
61 },
niklase@google.comd15469e2011-09-16 07:04:56 +000062 'rtp_rtcp': {
63 'filepath': 'src/modules/rtp_rtcp/.*'
64 },
65 'system_wrappers': {
66 'filepath': 'src/system_wrappers/.*',
67 },
68 },
69
70 'WATCHLISTS': {
71 'this_file': [''],
72 'all_src': ['tterriberry@mozilla.com',
73 'giles@mozilla.com'],
andrew@webrtc.org87d49792011-09-28 15:04:36 +000074 'root_files': ['andrew@webrtc.org',
75 'niklas.enbom@webrtc.org'],
andrew@webrtc.orgdfbebb92011-10-27 22:33:27 +000076 'documented_interfaces': ['amyfong@webrtc.org'],
andrew@webrtc.org87d49792011-09-28 15:04:36 +000077 'common_audio': ['bjornv@webrtc.org',
78 'andrew@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000079 'video_engine': ['mflodman@webrtc.org',
80 'perkj@webrtc.org'],
81 'voice_engine': ['henrika@webrtc.org'],
82 'video_capture': ['mflodman@webrtc.org',
83 'perkj@webrtc.org'],
84 'video_render': ['mflodman@webrtc.org',
85 'perkj@webrtc.org'],
86 'audio_device': ['henrika@webrtc.org'],
tina.legrand@webrtc.orge126dbb2011-09-16 08:02:21 +000087 'audio_coding': ['tina.legrand@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000088 'NetEQ': ['henrik.lundin@webrtc.org'],
andrew@webrtc.org87d49792011-09-28 15:04:36 +000089 'audio_processing': ['andrew@webrtc.org',
90 'bjornv@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000091 'video_codecs': ['henrik.lundin@webrtc.org'],
stefan@webrtc.orgdba7a3a2011-09-19 07:50:48 +000092 'video_coding': ['stefan@webrtc.org'],
pwestin@webrtc.org11330b02011-10-20 17:54:20 +000093 'rtp_rtcp': ['mflodman@webrtc.org',
94 'pwestin@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000095 'system_wrappers': ['mflodman@webrtc.org',
andrew@webrtc.org87d49792011-09-28 15:04:36 +000096 'henrika@webrtc.org',
97 'andrew@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000098 },
99}