blob: 300032ac5589ee09313e9f4875ad95a30661c6ed [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 },
niklase@google.comd15469e2011-09-16 07:04:56 +000024 'video_engine': {
25 'filepath': 'src/video_engine/.*',
26 },
27 'voice_engine': {
28 'filepath': 'src/voice_engine/.*',
29 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000030 'common_audio': {
31 'filepath': 'src/common_audio/.*',
32 },
niklase@google.comd15469e2011-09-16 07:04:56 +000033 'video_capture': {
34 'filepath': 'src/modules/video_capture/.*',
35 },
36 'video_render': {
37 'filepath': 'src/modules/video_render/.*',
38 },
39 'audio_device': {
40 'filepath': 'src/modules/audio_device/.*',
41 },
tina.legrand@webrtc.orge126dbb2011-09-16 08:02:21 +000042 'audio_coding': {
43 'filepath': 'src/modules/audio_coding/.*',
44 },
niklase@google.comd15469e2011-09-16 07:04:56 +000045 'NetEQ': {
46 'filepath': 'src/modules/audio_coding/NetEQ/.*',
47 },
andrew@webrtc.org87d49792011-09-28 15:04:36 +000048 'audio_processing': {
49 'filepath': 'src/modules/audio_processing/.*',
50 },
niklase@google.comd15469e2011-09-16 07:04:56 +000051 'video_codecs': {
52 'filepath': 'src/modules/video_coding/codecs/.*',
53 },
stefan@webrtc.orgdba7a3a2011-09-19 07:50:48 +000054 'video_coding': {
55 'filepath': 'src/modules/video_coding/.*',
56 },
niklase@google.comd15469e2011-09-16 07:04:56 +000057 'rtp_rtcp': {
58 'filepath': 'src/modules/rtp_rtcp/.*'
59 },
60 'system_wrappers': {
61 'filepath': 'src/system_wrappers/.*',
62 },
63 },
64
65 'WATCHLISTS': {
66 'this_file': [''],
67 'all_src': ['tterriberry@mozilla.com',
68 'giles@mozilla.com'],
andrew@webrtc.org87d49792011-09-28 15:04:36 +000069 'root_files': ['andrew@webrtc.org',
70 'niklas.enbom@webrtc.org'],
71 'common_audio': ['bjornv@webrtc.org',
72 'andrew@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000073 'video_engine': ['mflodman@webrtc.org',
74 'perkj@webrtc.org'],
75 'voice_engine': ['henrika@webrtc.org'],
76 'video_capture': ['mflodman@webrtc.org',
77 'perkj@webrtc.org'],
78 'video_render': ['mflodman@webrtc.org',
79 'perkj@webrtc.org'],
80 'audio_device': ['henrika@webrtc.org'],
tina.legrand@webrtc.orge126dbb2011-09-16 08:02:21 +000081 'audio_coding': ['tina.legrand@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000082 'NetEQ': ['henrik.lundin@webrtc.org'],
andrew@webrtc.org87d49792011-09-28 15:04:36 +000083 'audio_processing': ['andrew@webrtc.org',
84 'bjornv@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000085 'video_codecs': ['henrik.lundin@webrtc.org'],
stefan@webrtc.orgdba7a3a2011-09-19 07:50:48 +000086 'video_coding': ['stefan@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000087 'rtp_rtcp': ['mflodman@webrtc.org'],
88 'system_wrappers': ['mflodman@webrtc.org',
andrew@webrtc.org87d49792011-09-28 15:04:36 +000089 'henrika@webrtc.org',
90 'andrew@webrtc.org'],
niklase@google.comd15469e2011-09-16 07:04:56 +000091 },
92}