forked from yoavweiss/Blink
-
Notifications
You must be signed in to change notification settings - Fork 1
/
WATCHLISTS
143 lines (139 loc) · 5.34 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# Copyright (c) 2013 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
# IMPORTANT: The regular expression filepath is tested against each path using
# re.search, so it is not usually necessary to add .*.
{
'WATCHLIST_DEFINITIONS': {
'accessibility': {
'filepath': 'Source/WebCore/accessibility' \
'|LayoutTests/accessibility',
},
'animations': {
'filepath': 'Source/WebCore/page/animation' \
'|LayoutTests/fast/animation' \
'|LayoutTests/animation',
},
'bindings': {
'filepath': 'Source/bindings',
},
'test_runner': {
'filepath': 'Tools/DumpRenderTree/chromium/TestRunner',
},
'css': {
'filepath': 'Source/WebCore/css',
},
'devtools': {
'filepath': 'inspector|DevTools|devtools',
},
'loader': {
'filepath': 'Source/WebCore/loader',
},
'public_api': {
'filepath': 'Source/Platform/chromium/public' \
'|Source/WebKit/chromium/public' \
'|Tools/DumpRenderTree/chromium/TestRunner/public/',
},
'wtf': {
'filepath': 'Source/WTF',
},
'platform_graphics': {
'filepath': 'Source/WebCore/platform/graphics',
},
'platform': {
'filepath': 'Source/WebCore/platform' \
'|Source/Platform'
},
'svg': {
'filepath': 'Source/WebCore/svg|Source/WebCore/rendering/svg',
},
'indexed_db': {
'filepath': 'Source/modules/indexeddb/' \
'|Source/bindings/.*IDB' \
'|Source/bindings/.*SerializedScriptValue' \
'|Source/WebKit/chromium/.*IDB' \
'|Source/WebCore/platform/leveldb' \
'|LayoutTests/storage/indexeddb'
},
'rendering': {
'filepath': 'Source/WebCore/rendering'
},
"content_security_policy": {
'filepath': 'Source/WebCore/page/.*SecurityPolicy' \
'|Source/WebCore/dom/SecurityPolicyViolationEvent' \
'|LayoutTests/http/tests/security/contentSecurityPolicy'
},
"prerender": {
'filepath': 'Prerender' \
'|loader/LinkLoader' \
'|html/HTMLLinkElement'
},
'track': {
'filepath': 'Source/WebCore/html/track/' \
'|Source/WebCore/loader/TextTrack' \
'|Source/WebCore/html/HTMLMediaElement' \
'|Source/WebCore/html/shadow/MediaControl' \
'|Source/WebCore/css/mediaControl' \
'|LayoutTests/media/track/'
},
'media': {
'filepath': 'Source/WebCore/css/mediaControls.*' \
'|Source/WebCore/platform/graphics/.*Media.*' \
'|Source/WebCore/html/.*(Audio|Media|Video).*' \
'|Source/WebCore/html/shadow/MediaControl.*' \
'|Source/WebCore/rendering/RenderMedia.*' \
'|Source/modules/(encryptedmedia|mediasource)' \
'|Source/WebKit/chromium/.*Media.*' \
},
'fileapi': {
'filepath': 'Source/modules/filesystem/' \
'|Source/WebCore/fileapi/' \
'|Source/WebKit/chromium/.*File.*' \
'|Source/WebCore/platform/.*File.*' \
'|LayoutTests/fast/file'
},
'quota': {
'filepath': 'Source/modules/quota/' \
'|Source/WebKit/chromium/.*Quota.*'
},
},
'WATCHLISTS': {
'accessibility':['dmazzoni@chromium.org',
'aboxhall@chromium.org'],
'animations': ['dstockwell@chromium.org',
'steveblock@chromium.org',
'shans@chromium.org'],
'devtools': [ 'pfeldman+blink@chromium.org',
'aandrey+blink@chromium.org',
'alph+blink@chromium.org',
'apavlov+blink@chromium.org',
'loislo+blink@chromium.org',
'lushnikov+blink@chromium.org',
'vsevik+blink@chromium.org',
'yurys+blink@chromium.org',
'eustas+blink@chromium.org',
'caseq+blink@chromium.org'],
'bindings': [ 'abarth@chromium.org',
'japhet@chromium.org',
'haraken@chromium.org' ],
'loader': [ 'japhet@chromium.org', 'gavinp+loader@chromium.org' ],
'test_runner': [ 'jochen+watch@chromium.org' ],
'platform_graphics': [ 'jamesr@chromium.org', 'schenney@chromium.org' ],
'platform': [ 'forgerbr@gmail.com' ],
'svg': [ 'schenney@chromium.org', 'pdr@google.com', 'fmalita@chromium.org' ],
'css': [ 'alexis.menard@intel.com', 'apavlov+blink@chromium.org' ],
'public_api': [ 'abarth@chromum.org', 'jamesr@chromium.org' ],
'wtf': [ 'abarth@chromium.org', 'forgerbr@gmail.com' ],
'indexed_db': ['alecflett@chromium.org','dgrogan@chromium.org',
'jsbell@chromium.org'],
'rendering': [ 'jchaffraix+rendering@chromium.org' ],
'content_security_policy': [ 'mkwst+watchlist@chromium.org' ],
'prerender': [ 'gavinp+prerender@chromium.org' ],
'track': ['vcarbune@chromium.org'],
'media': [ 'feature-media-reviews@chromium.org' ],
'fileapi': [ 'kinuko@chromium.org' ],
'quota': [ 'kinuko@chromium.org' ],
},
}