summaryrefslogtreecommitdiff
path: root/WATCHLISTS
blob: f4f9fe5fe6c131a5087c08ad70732a296740ca95 (plain)
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
# 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/core/accessibility' \
                  '|LayoutTests/accessibility',
    },
    'animations': {
      'filepath': '[Aa]nimat|[Tt]ransition',
    },
    'audio': {
      'filepath': 'Source/platform/audio' \
                  '|Source/modules/webaudio',
    },
    'bidi': {
      'filepath': 'Source/platform/text/.*Bidi' \
                  '|Source/core/rendering/.*Bidi',
    },
    'bindings': {
      'filepath': 'Source/bindings',
    },
    'bluetooth': {
      'filepath': '[Bb]luetooth'
    },
    'test_runner': {
      'filepath': 'Tools/DumpRenderTree/chromium/TestRunner',
    },
    'canvas': {
      'filepath': 'Source/core/html/canvas/'
    },
    'clipboard': {
      'filepath': 'Source/core/clipboard' \
                  '|Source/core/page/.*Drag' \
                  '|Source/platform/.*Drag' \
                  '|Source/platform/clipboard' \
                  '|Source/web/.*Drag' \
                  '|public/platform/.*Drag' \
                  '|public/web/.*Drag',
    },
    'css': {
      'filepath': 'Source/core/css',
    },
    'custom_elements': {
      'filepath': 'Source/core/dom/CustomElement' \
                  '|Source/bindings/v8/.*CustomElement',
    },
    'devtools': {
      'filepath': 'inspector|DevTools|devtools',
    },
    'dom': {
      'filepath': 'Source/core/dom/'
    },
    'events': {
      'filepath': 'Source/core/page/.*Event' \
                  '|Source/core/dom/.*Event' \
                  '|Source/core/css/.*Event' \
                  '|Source/platform/.*Event'
    },
    'fetch': {
      'filepath': 'Source/core/fetch',
    },
    'filters': {
      'filepath': 'Source/platform/graphics/filters' \
                  '|Source/core/svg/graphics/filters'
    },
    'heap': {
      'filepath': 'Source/heap' \
                  '|Source/platform/heap',
    },
    'html': {
      'filepath': 'Source/core/html/'
    },
    'loader': {
      'filepath': 'Source/core/loader',
    },
    'owners': {
      'filepath': 'OWNERS',
    },
    'preloadScanner': {
      'filepath': 'Source/core/html/parser/HTMLPreloadScanner',
    },
    'public_api': {
      'filepath': 'public'
    },
    'serviceworkers' : {
      'filepath': 'Source/modules/serviceworkers' \
                  '|LayoutTests/http/tests/serviceworker'
    },
    'serviceworkers_tests' : {
      'filepath': 'LayoutTests/http/tests/serviceworker'
    },
    'sheriff_o_matic' : {
      'filepath': 'Tools/GardeningServer'
    },
    'spellcheck' : {
      'filepath':  'Source/core/editing/Editor' \
                   '|Source/core/editing/Spell' \
                   '|Source/core/editing/TextCheckingHelper' \
                   '|Source/platform/text/TextCheck' \
                   '|Source/web/EditorClientImpl' \
                   '|LayoutTests/editing/spelling' \
                   '|public/web/WebSpellCheckClient.h',
    },
    'workers': {
      'filepath': 'Source/core/workers',
    },
    'wtf': {
      'filepath': 'Source/wtf',
    },
    'platform_graphics': {
      'filepath': 'Source/platform/fonts' \
                  '|Source/platform/geometry' \
                  '|Source/platform/graphics'
    },
    'platform': {
      'filepath': 'Source/platform'
    },
    'svg': {
      'filepath': 'Source/core/svg|Source/core/rendering/svg',
    },
    'indexed_db': {
      'filepath': 'Source/modules/indexeddb/' \
                  '|Source/web/.*IDB' \
                  '|LayoutTests/storage/indexeddb' \
                  '|public/platform/.*IDB'
    },
    'rendering': {
      'filepath': 'Source/core/rendering'
    },
    'compositing': {
      'filepath': 'Source/core/rendering/compositing'
    },
    'layers': {
      'filepath': 'Source/core/page/scrolling/ScrollingCoordinator' \
                  '|Source/platform/graphics/GraphicsLayer' \
                  '|Source/core/rendering/RenderLayer'
    },
    "content_security_policy": {
      'filepath': 'Source/core/frame/csp' \
                  '|Source/core/events/SecurityPolicyViolationEvent' \
                  '|LayoutTests/http/tests/security/contentSecurityPolicy'
    },
    "prerender": {
      'filepath': 'Prerender' \
                  '|loader/LinkLoader' \
                  '|html/HTMLLinkElement'
    },
    'track': {
      'filepath': 'Source/core/html/track/' \
                  '|Source/core/loader/TextTrack' \
                  '|Source/core/html/HTMLMediaElement' \
                  '|Source/core/html/HTMLTrackElement' \
                  '|Source/core/html/shadow/MediaControl' \
                  '|Source/core/css/mediaControl' \
                  '|LayoutTests/media/track/'
    },
    'media': {
      'filepath': 'Source/core/css/mediaControls' \
                  '|Source/core/html/.*(Audio|Media|Video)' \
                  '|Source/core/html/shadow/MediaControl' \
                  '|Source/core/rendering/RenderMedia' \
                  '|Source/modules/(encryptedmedia|mediasource)' \
                  '|Source/platform/drm/' \
                  '|Source/platform/graphics/media/' \
                  '|Source/web/.*Media' \
                  '|LayoutTests/media/' \
                  '|public/.*Media'
    },
    'media_queries': {
        'filepath': 'Source/core/css/CSSMediaRule' \
                    '|Source/core/css/MediaList' \
                    '|Source/core/css/MediaQuery' \
                    '|Source/core/css/parser/MediaQuery'
    },
    'modules': {
      'filepath': 'Source/modules/'
    },
    'navigator_content_utils': {
      'filepath': 'Source/modules/navigatorcontentutils' \
                  '|LayoutTests/fast/dom/navigatorcontentutils'
    },
    'out_of_process_frames': {
      'filepath': 'Source/core/frame/FrameOwner' \
                  '|Source/web/WebFrame' \
                  '|Source/web/WebRemoteFrameImpl'
    },
    'fileapi': {
      'filepath': 'Source/modules/filesystem/' \
                  '|Source/core/fileapi/' \
                  '|Source/platform/.*File' \
                  '|Source/web/.*File' \
                  '|LayoutTests/fast/file' \
                  '|public/.*File'
    },
    'quota': {
      'filepath': 'Source/modules/quota/' \
                  '|Source/web/.*Quota' \
                  '|public/.*Quota'
    },
    'viewport_interaction': {
      'filepath': 'Source/core/css/.*Viewport' \
                  '|Source/core/dom/ViewportArguments' \
                  '|Source/core/html/HTMLMetaElement' \
                  '|Source/core/page/FrameView' \
                  '|Source/core/page/scrolling'
    },
    'css_regions': {
      'filepath': 'Source/core/rendering/.*(Region|FlowThread)' \
                  '|Source/core/dom/NodeRendering' \
                  '|Source/core/dom/.*NamedFlow' \
                  '|Source/core/css/.*Region' \
                  '|LayoutTests/compositing/regions/' \
                  '|LayoutTests/fast/regions/' \
                  '|LayoutTests/platform/chromium.*/fast/regions/'
    },
    'web_idl': {
      'filepath': 'Source/core/.*\.idl'
    },
    'webcomponents': {
      'filepath': 'Source/core/dom/shadow/' \
                  '|Source/core/dom/custom/' \
                  '|Source/core/html/imports/' \
                  '|Source/bindings/v8/custom/V8CustomElementConstructorCustom' \
                  '|Source/bindings/v8/CustomElementHelpers'
    },
    'mediastream': {
      'filepath': 'Source/modules/mediastream/' \
                  '|Source/platform/mediastream/' \
                  '|Source/platform/exported/WebMediaStream' \
                  '|Source/platform/exported/WebRTC' \
                  '|LayoutTests/fast/mediastream/'
    },
    'geolocation': {
      'filepath': 'LayoutTests/fast/dom/Geolocation/' \
                  '|Source/modules/geolocation/' \
                  '|Source/web/.*Geolocation' \
                  '|public/web/.*Geolocation'
    },
    'vibration': {
      'filepath': 'LayoutTests/vibration/' \
                  '|Source/modules/vibration/'
    },
    'device_orientation': {
      'filepath': 'Source/modules/device_orientation/' \
                  '|LayoutTests/fast/dom/DeviceMotion/' \
                  '|LayoutTests/fast/dom/DeviceOrientation/' \
                  '|Source/core/frame/PlatformEvent(Controller|Dispatcher)' \
                  '|Source/core/frame/DeviceSingleWindowEventController'
    },
    'web': {
      'filepath': 'Source/web/'
    },
    'webp': {
      'filepath': 'Source/platform/image-decoders/webp' \
                  '|Source/platform/image-encoders/skia/WEBP'
    },
    'css_grid_layout': {
      'filepath': 'Source/core/rendering/.*Grid' \
                  '|Source/core/css/.*Grid' \
                  '|LayoutTests/fast/css-grid-layout/' \
                  '|LayoutTests/ietestcenter/css3/grid/' \
                  '|LayoutTests/platform/.*/fast/css-grid-layout/' \
                  '|LayoutTests/platform/.*/ietestcenter/css3/grid/'
    },
    'css_flexbox': {
      'filepath': 'Source/core/rendering/.*Flex' \
                  '|LayoutTests/fast/flexbox/' \
                  '|LayoutTests/css3/flexbox/' \
                  '|LayoutTests/ietestcenter/css3/flexbox/'
    },
    'fragment_layout': {
      'filepath': 'Source/core/rendering/.*(FlowThread|MultiCol|Region)' \
                  '|Source/core/rendering/ColumnInfo' \
                  '|LayoutTests/.*/multicol/' \
                  '|LayoutTests/.*/regions/'
    },
    'table_layout': {
      'filepath': 'Source/core/rendering/.*Table'
    },
    'battery_status': {
      'filepath': 'Source/modules/battery/' \
                  '|LayoutTests/battery-status/' \
                  '|Source/core/frame/PlatformEvent(Controller|Dispatcher)'
    },
    'device_light': {
      'filepath': 'Source/modules/device_light/' \
                  '|LayoutTests/fast/dom/DeviceLight/'
    },
    'websockets': {
      'filepath': 'Source/modules/websockets/'
    },
    'xmlhttprequest': {
      'filepath': 'Source/core/xmlhttprequest/'
    }
  },

  'WATCHLISTS': {
    'accessibility':['dmazzoni@chromium.org',
                     'aboxhall@chromium.org'],
    'animations': ['alexis.menard@intel.com',
                   'dstockwell@chromium.org',
                   'ericwilligers@chromium.org',
                   'mikelawther@chromium.org',
                   'rjwright@chromium.org',
                   'shans@chromium.org',
                   'steveblock@chromium.org',
                   'timloh@chromium.org',
                   'blink-reviews-animation@chromium.org'],
    'audio': ['rtoy@chromium.org'],
    'devtools': [ 'pfeldman+blink@chromium.org',
                  'aandrey+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',
                  'paulirish+reviews@chromium.org',
                  'malch+blink@chromium.org',
                  'sergeyv+blink@chromium.org',
                  'devtools-reviews@chromium.org' ],
    'bidi': [ 'leviw+bidiwatch@chromium.org' ],
    'bindings': [ 'arv+blink@chromium.org',
                  'blink-reviews-bindings@chromium.org' ],
    'bluetooth': [ 'scheib+watch@chromium.org' ],
    'canvas': [ 'cabanier@adobe.com', 'aandrey+blink@chromium.org' ],
    'clipboard': [ 'dcheng@chromium.org', ],
    'custom_elements': [ 'dominicc+watchlist@chromium.org', 'dglazkov+blink@chromium.org' ],
    'fetch': [ 'japhet@chromium.org', 'gavinp+loader@chromium.org', 'tyoshino+watch@chromium.org' ],
    'layers': [ 'blink-layers+watch@chromium.org' ],
    'loader': [ 'japhet@chromium.org', 'gavinp+loader@chromium.org', 'tyoshino+watch@chromium.org' ],
    'owners': [ 'abarth@chromium.org'],
    'test_runner': [ 'jochen+watch@chromium.org' ],
    'platform_graphics': [ 'schenney@chromium.org',
                           'danakj@chromium.org',
                           'pdr+graphicswatchlist@chromium.org',
                           'cabanier@adobe.com',
                           'dschulze@chromium.org',
                           'rob.buis@samsung.com',
                           'fmalita@chromium.org',
                           'jbroman@chromium.org' ],
    'svg': [ 'schenney@chromium.org', 'pdr+svgwatchlist@chromium.org', 'fmalita@chromium.org', 'dschulze@chromium.org', 'rob.buis@samsung.com', 'fs@opera.com', 'ed+blinkwatch@opera.com', 'gyuyoung.kim@webkit.org', 'kouhei+svg@chromium.org' ],
    'css': [ 'alexis.menard@intel.com', 'apavlov+blink@chromium.org', 'dglazkov+blink@chromium.org', 'ed+blinkwatch@opera.com', 'rob.buis@samsung.com', 'blink-reviews-css@chromium.org' ],
    'dom': [ 'eae+blinkwatch@chromium.org',
             'dglazkov+blink@chromium.org',
             'sigbjornf@opera.com',
             'rob.buis@samsung.com',
             'blink-reviews-dom@chromium.org' ],
    'events': [ 'eae+blinkwatch@chromium.org', 'dglazkov+blink@chromium.org', 'blink-reviews-events@chromium.org' ],
    'heap': [ 'ager@chromium.org', 'haraken@chromium.org', 'kouhei+heap@chromium.org' ],
    'html': [ 'dglazkov+blink@chromium.org', 'blink-reviews-html@chromium.org' ],
    'public_api': [ 'dglazkov+blink@chromium.org' ],
    'workers': [ 'kinuko+worker@chromium.org',
                 'horo+watch@chromium.org',
                 'falken@chromium.org' ],
    'wtf': [ 'mikhail.pozdnyakov@intel.com',
             'aandrey+blink@chromium.org',
             'blink-reviews-wtf@chromium.org' ],
    'indexed_db': ['dgrogan@chromium.org',
                   'jsbell+idb@chromium.org', 'cmumford@chromium.org'],
    'rendering': [ 'pdr+renderingwatchlist@chromium.org',
                   'eae+blinkwatch@chromium.org',
                   'jchaffraix+rendering@chromium.org',
                   'leviw+renderwatch@chromium.org',
                   'zoltan@webkit.org',
                   'blink-reviews-rendering@chromium.org' ],
    'compositing': [ ],
    'content_security_policy': [ 'mkwst+watchlist-csp@chromium.org' ],
    'prerender': [ 'gavinp+prerender@chromium.org',
                   'yoav@yoav.ws' ],
    'preloadScanner': [ 'yoav@yoav.ws' ],
    'track': [ 'vcarbune@chromium.org', 'silviapf@chromium.org', 'philipj@opera.com', 'glenn@chromium.org', 'fs@opera.com', 'eric.carlson@apple.com' ],
    'media': [ 'feature-media-reviews@chromium.org', 'philipj@opera.com', 'eric.carlson@apple.com' ],
    'media_queries': [ 'kenneth.christiansen@gmail.com',
                       'yoav@yoav.ws' ],
    'fileapi': [ 'kinuko+fileapi@chromium.org',
                 'tzik@chromium.org',
                 'nhiroki@chromium.org' ],
    'quota': [ 'kinuko+fileapi@chromium.org',
               'tzik@chromium.org',
               'nhiroki@chromium.org' ],
    'viewport_interaction': [ 'kenneth.christiansen@gmail.com' ],
    'css_regions': [ 'ChromiumBugTracker@adobe.com' ],
    'web_idl': [ 'arv+blink@chromium.org', 'ch.dumez@samsung.com' ],
    'webcomponents': [ 'webcomponents-bugzilla@chromium.org', 'dglazkov+blink@chromium.org' ],
    'mediastream': [ 'tommyw+watchlist@chromium.org' ],
    'navigator_content_utils': [ 'gyuyoung.kim@webkit.org' ],
    'geolocation': [ 'mvanouwerkerk+watch@chromium.org', 'timvolodine@chromium.org' ],
    'vibration': [ 'mvanouwerkerk+watch@chromium.org' ],
    'serviceworkers': [ 'jsbell+serviceworker@chromium.org',
                        'kinuko+serviceworker@chromium.org',
                        'tzik@chromium.org',
                        'nhiroki@chromium.org',
                        'horo+watch@chromium.org',
                        'falken@chromium.org',
                        'michaeln@chromium.org',
                        'serviceworker-reviews@chromium.org' ],
    'serviceworkers_tests': [ 'kenjibaheux+watch@chromium.org' ],
    'sheriff_o_matic': [ 'jochen@chromium.org',
                         'szager@chromium.org',
                         'dsinclair@chromium.org',
                         'ojan@chromium.org',
                         'leviw@chromium.org',
                         'michaelpg@chromium.org',
                         'cbiesinger@chromium.org',
                         'teravest@chromium.org' ],
    'spellcheck' : [ 'groby+blinkspell@chromium.org' ],
    'device_orientation': [ 'timvolodine@chromium.org', 'mvanouwerkerk+watch@chromium.org', 'ch.dumez@samsung.com' ],
    'webp': [ 'urvang@google.com',
              'jzern@chromium.org',
              'skal@google.com',
              'vikasa@google.com' ],
    'css_grid_layout': [ 'svillar@igalia.com', 'jfernandez@igalia.com', 'rego@igalia.com' ],
    'css_flexbox': [ 'cbiesinger@chromium.org' ],
    'battery_status': [ 'timvolodine@chromium.org' ],
    'out_of_process_frames': [ 'dcheng@chromium.org' ],
    'device_light': [ 'timvolodine@chromium.org' ],
    'websockets': [ 'tyoshino+watch@chromium.org', 'yhirano+watch@chromium.org' ],
    'xmlhttprequest': [ 'tyoshino+watch@chromium.org' ],
  },
}