blob: 6c61b0da379adcff73f921ef393a656fd5eee699 [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 },
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000017 'all_webrtc': {
fischman@webrtc.org37ff69d2012-11-15 22:21:20 +000018 # NOTE: if you like this you might like webrtc-reviews@webrtc.org!
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000019 'filepath': 'webrtc/.*',
niklase@google.comd15469e2011-09-16 07:04:56 +000020 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000021 'root_files': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000022 # webrtc/build/ and non-recursive contents of ./ and webrtc/
23 'filepath': '^[^/]*$|webrtc/[^/]*$|webrtc/build/.*',
andrew@webrtc.org87d49792011-09-28 15:04:36 +000024 },
andrew@webrtc.orgdfbebb92011-10-27 22:33:27 +000025 'documented_interfaces': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000026 'filepath': 'webrtc/[^/]*\.h$|'\
andrew@webrtc.org56a00762012-11-14 01:27:31 +000027 'webrtc/voice_engine/include/.*',
andrew@webrtc.orgdfbebb92011-10-27 22:33:27 +000028 },
andrew@webrtc.org498ae782011-12-06 19:48:05 +000029 'build_files': {
andrew@webrtc.orgca583bf2011-12-06 19:53:48 +000030 'filepath': '\.gyp$|\.gypi$|Android\.mk$',
andrew@webrtc.org498ae782011-12-06 19:48:05 +000031 },
leozwang@webrtc.orged716e42011-12-15 23:29:10 +000032 'java_files': {
33 'filepath': '\.java$|\.xml$',
34 },
niklase@google.comd15469e2011-09-16 07:04:56 +000035 'video_engine': {
mflodman@webrtc.org0d7ab0a2014-06-10 13:59:37 +000036 'filepath': 'webrtc/video_engine/.*|'\
37 'webrtc/video/.*',
niklase@google.comd15469e2011-09-16 07:04:56 +000038 },
39 'voice_engine': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000040 'filepath': 'webrtc/voice_engine/.*',
niklase@google.comd15469e2011-09-16 07:04:56 +000041 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000042 'common_audio': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000043 'filepath': 'webrtc/common_audio/.*',
andrew@webrtc.org87d49792011-09-28 15:04:36 +000044 },
mikhal@webrtc.org1682f712013-02-19 18:31:20 +000045 'common_video': {
46 'filepath': 'webrtc/common_video/.*',
47 },
niklase@google.comd15469e2011-09-16 07:04:56 +000048 'video_capture': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000049 'filepath': 'webrtc/modules/video_capture/.*',
niklase@google.comd15469e2011-09-16 07:04:56 +000050 },
51 'video_render': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000052 'filepath': 'webrtc/modules/video_render/.*',
niklase@google.comd15469e2011-09-16 07:04:56 +000053 },
54 'audio_device': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000055 'filepath': 'webrtc/modules/audio_device/.*',
niklase@google.comd15469e2011-09-16 07:04:56 +000056 },
tina.legrand@webrtc.orge126dbb2011-09-16 08:02:21 +000057 'audio_coding': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000058 'filepath': 'webrtc/modules/audio_coding/.*',
tina.legrand@webrtc.orge126dbb2011-09-16 08:02:21 +000059 },
andrew@webrtc.org72fe2442012-01-30 21:57:43 +000060 'neteq': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000061 'filepath': 'webrtc/modules/audio_coding/neteq/.*',
niklase@google.comd15469e2011-09-16 07:04:56 +000062 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000063 'audio_processing': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000064 'filepath': 'webrtc/modules/audio_processing/.*',
andrew@webrtc.org87d49792011-09-28 15:04:36 +000065 },
stefan@webrtc.orgdba7a3a2011-09-19 07:50:48 +000066 'video_coding': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000067 'filepath': 'webrtc/modules/video_coding/.*',
stefan@webrtc.orgdba7a3a2011-09-19 07:50:48 +000068 },
mikhal@webrtc.org1682f712013-02-19 18:31:20 +000069 'video_processing': {
70 'filepath': 'webrtc/modules/video_processing/.*',
71 },
stefan@webrtc.orgd613c202013-03-15 09:39:59 +000072 'bitrate_controller': {
73 'filepath': 'webrtc/modules/bitrate_controller/.*'
74 },
75 'remote_bitrate_estimator': {
76 'filepath': 'webrtc/modules/remote_bitrate_estimator/.*'
77 },
mflodman@webrtc.org0d7ab0a2014-06-10 13:59:37 +000078 'pacing': {
79 'filepath': 'webrtc/modules/pacing/.*'
80 },
niklase@google.comd15469e2011-09-16 07:04:56 +000081 'rtp_rtcp': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000082 'filepath': 'webrtc/modules/rtp_rtcp/.*'
niklase@google.comd15469e2011-09-16 07:04:56 +000083 },
84 'system_wrappers': {
mflodman@webrtc.org1be46fc2012-11-01 08:09:09 +000085 'filepath': 'webrtc/system_wrappers/.*',
niklase@google.comd15469e2011-09-16 07:04:56 +000086 },
87 },
88
89 'WATCHLISTS': {
90 'this_file': [''],
mflodman@webrtc.org1be0a782014-12-22 12:49:14 +000091 'all_webrtc': ['tterriberry@mozilla.com'],
andrew@webrtc.org87d49792011-09-28 15:04:36 +000092 'root_files': ['andrew@webrtc.org',
fischman@webrtc.org5a602d72013-05-17 17:20:04 +000093 'niklas.enbom@webrtc.org',
fischman@webrtc.org728bc0f2013-10-25 19:20:02 +000094 'yujie.mao@webrtc.org',
95 'qiang.lu@intel.com'],
niklas.enbom@webrtc.org35ac9832012-01-10 12:14:04 +000096 'documented_interfaces': ['interface-changes@webrtc.org',
97 'rwolff@gocast.it'],
aluebs@webrtc.orgf5bdd542014-09-11 10:11:43 +000098 'common_audio': ['aluebs@webrtc.org',
99 'andrew@webrtc.org',
100 'bjornv@webrtc.org'],
andresp@webrtc.org72d0b0c2013-04-30 22:20:53 +0000101 'video_engine': ['andresp@webrtc.org',
102 'mflodman@webrtc.org',
stefan@webrtc.orgd613c202013-03-15 09:39:59 +0000103 'perkj@webrtc.org',
fischman@webrtc.org5a602d72013-05-17 17:20:04 +0000104 'stefan@webrtc.org',
yujie.mao@webrtc.org510dfad2013-07-03 01:13:18 +0000105 'yujie.mao@webrtc.org'],
Henrik Lundinf019efa2015-06-05 09:07:52 +0200106 'voice_engine': ['henrika@webrtc.org',
107 'henrik.lundin@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +0000108 'video_capture': ['mflodman@webrtc.org',
leozwang@webrtc.orga404d1d2013-05-10 22:46:55 +0000109 'perkj@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +0000110 'video_render': ['mflodman@webrtc.org',
leozwang@webrtc.orga404d1d2013-05-10 22:46:55 +0000111 'perkj@webrtc.org'],
112 'audio_device': ['henrika@webrtc.org'],
henrik.lundin@webrtc.orgaed31fe2014-05-20 16:05:47 +0000113 'audio_coding': ['tina.legrand@webrtc.org',
kwiberg@webrtc.orgf2e4a992014-06-03 10:01:39 +0000114 'henrik.lundin@webrtc.org',
115 'kwiberg@webrtc.org'],
andrew@webrtc.org72fe2442012-01-30 21:57:43 +0000116 'neteq': ['henrik.lundin@webrtc.org'],
aluebs@webrtc.orgf5bdd542014-09-11 10:11:43 +0000117 'audio_processing': ['aluebs@webrtc.org',
118 'andrew@webrtc.org',
kwiberg@webrtc.orgf2e4a992014-06-03 10:01:39 +0000119 'bjornv@webrtc.org',
Henrik Lundinf019efa2015-06-05 09:07:52 +0200120 'kwiberg@webrtc.org',
121 'henrik.lundin@webrtc.org'],
mikhal@webrtc.org1682f712013-02-19 18:31:20 +0000122 'video_coding': ['stefan@webrtc.org',
mflodman@webrtc.org0d7ab0a2014-06-10 13:59:37 +0000123 'mflodman@webrtc.org'],
kjellander@webrtc.orgb96ea2a2014-08-26 06:12:08 +0000124 'video_processing': ['stefan@webrtc.org'],
mflodman@webrtc.org0d7ab0a2014-06-10 13:59:37 +0000125 'bitrate_controller': ['stefan@webrtc.org',
126 'mflodman@webrtc.org'],
127 'remote_bitrate_estimator': ['stefan@webrtc.org',
128 'mflodman@webrtc.org'],
129 'pacing': ['stefan@webrtc.org',
130 'mflodman@webrtc.org'],
pwestin@webrtc.org11330b02011-10-20 17:54:20 +0000131 'rtp_rtcp': ['mflodman@webrtc.org',
stefan@webrtc.orgd613c202013-03-15 09:39:59 +0000132 'stefan@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +0000133 'system_wrappers': ['mflodman@webrtc.org',
andrew@webrtc.org87d49792011-09-28 15:04:36 +0000134 'henrika@webrtc.org',
leozwang@webrtc.orga404d1d2013-05-10 22:46:55 +0000135 'andrew@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +0000136 },
137}