forked from chromium/-archived-chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WATCHLISTS
106 lines (102 loc) · 3.12 KB
/
WATCHLISTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Watchlist Rules
# Refer: http://dev.chromium.org/developers/contributing-code/watchlists
{
'WATCHLIST_DEFINITIONS': {
'this_file': {
'filepath': '^WATCHLISTS$',
},
'valgrind': {
'filepath': 'valgrind',
},
'purify': {
'filepath': 'purify',
},
'mac': {
'filepath': 'cocoa|\.mm$|(_mac|_posix)\.(cc|h)$',
},
'base': {
'filepath': 'base/.*',
},
'extension': {
'filepath': 'extension',
},
'views': {
# Applies to all files and subdirs within this directory.
'filepath': 'views/.*',
},
'browser': {
'filepath': 'chrome/browser/.*',
},
'download': {
'filepath': 'download|save_',
},
'history': {
'filepath': 'chrome/browser/history/.*',
},
'renderer': {
'filepath': 'chrome/browser/renderer_host/.*|chrome/renderer/.*|chrome/common/render.*',
},
'safe_browsing': {
'filepath': 'chrome/browser/safe_browsing/.*|chrome/browser/renderer_host/safe.*',
},
'tab_contents': {
'filepath': 'chrome/browser/tab_contents/.*',
},
'webkit': {
'filepath': 'webkit/.*',
},
'plugin': {
'filepath': 'chrome/browser/plugin.*|chrome/plugin/.*|chrome/common/plugin.*|webkit/glue/webplugin.*|webkit/glue/plugins/.*',
},
'worker': {
'filepath': 'chrome/browser/worker_host/.*|chrome/worker/.*|chrome/common/worker_messages.*|webkit/glue/webworker.*',
},
'net': {
'filepath': 'net/.*',
},
'installer': {
'filepath': 'chrome/installer/.*',
},
'importer': {
'filepath': '.*import.*',
},
'media': {
'filepath': 'media|Media|^third_party/ffmpeg/',
},
'ipc': {
'filepath': 'chrome/common/ipc.*',
},
'linux-sandboxing': {
'filepath': 'sandbox/linux/.*',
},
},
'WATCHLISTS': {
'this_file': ['[email protected]'],
'mac': ['[email protected]'],
'base': ['[email protected]'],
'views': ['[email protected]'],
'browser': ['[email protected]'],
'download': ['[email protected]'],
'history': ['[email protected]'],
'safe_browsing': ['[email protected]'],
'tab_contents': ['[email protected]'],
'webkit': ['[email protected]'],
'plugin': ['[email protected]', '[email protected]'],
'worker': ['[email protected]'],
'extension': ['[email protected]'],
'purify': ['[email protected]'],
'net': ['[email protected]', '[email protected]'],
'installer': ['[email protected]'],
'importer': ['[email protected]'],
'media': ['[email protected]', '[email protected]',
'ipc': ['[email protected]'],
'linux-sandboxing': ['[email protected]'],
},
}