OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # Watchlist Rules | 5 # Watchlist Rules |
6 # Refer: http://dev.chromium.org/developers/contributing-code/watchlists | 6 # Refer: http://dev.chromium.org/developers/contributing-code/watchlists |
7 | 7 |
8 # IMPORTANT: The regular expression filepath is tested against each path using | 8 # IMPORTANT: The regular expression filepath is tested against each path using |
9 # re.search, so it is not usually necessary to add .*. | 9 # re.search, so it is not usually necessary to add .*. |
10 | 10 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 }, | 139 }, |
140 'css_regions': { | 140 'css_regions': { |
141 'filepath': 'Source/core/rendering/.*(Region|FlowThread).*' \ | 141 'filepath': 'Source/core/rendering/.*(Region|FlowThread).*' \ |
142 '|Source/core/dom/NodeRendering.*' \ | 142 '|Source/core/dom/NodeRendering.*' \ |
143 '|Source/core/dom/.*NamedFlow.*' \ | 143 '|Source/core/dom/.*NamedFlow.*' \ |
144 '|Source/core/css/.*Region.*' \ | 144 '|Source/core/css/.*Region.*' \ |
145 '|LayoutTests/compositing/regions/' \ | 145 '|LayoutTests/compositing/regions/' \ |
146 '|LayoutTests/fast/regions/' \ | 146 '|LayoutTests/fast/regions/' \ |
147 '|LayoutTests/platform/chromium.*/fast/regions/' | 147 '|LayoutTests/platform/chromium.*/fast/regions/' |
148 }, | 148 }, |
| 149 'web_idl': { |
| 150 'filepath': 'Source/core/.*\.idl' |
| 151 }, |
149 'webcomponents': { | 152 'webcomponents': { |
150 'filepath': 'Source/core/dom/shadow/.*' \ | 153 'filepath': 'Source/core/dom/shadow/.*' \ |
151 '|Source/core/dom/CustomElement.*' \ | 154 '|Source/core/dom/CustomElement.*' \ |
152 '|Source/bindings/v8/custom/V8CustomElementConstructorCustom.*
' \ | 155 '|Source/bindings/v8/custom/V8CustomElementConstructorCustom.*
' \ |
153 '|Source/bindings/v8/CustomElementHelpers.*' | 156 '|Source/bindings/v8/CustomElementHelpers.*' |
154 }, | 157 }, |
155 'mediastream': { | 158 'mediastream': { |
156 'filepath': 'Source/core/platform/mediastream/' \ | 159 'filepath': 'Source/core/platform/mediastream/' \ |
157 '|Source/modules/mediastream/' \ | 160 '|Source/modules/mediastream/' \ |
158 '|LayoutTests/fast/mediastream/' \ | 161 '|LayoutTests/fast/mediastream/' \ |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 'rendering': [ 'eae+blinkwatch@chromium.org', 'jchaffraix+rendering@chromium
.org', 'leviw+renderwatch@chromium.org' ], | 217 'rendering': [ 'eae+blinkwatch@chromium.org', 'jchaffraix+rendering@chromium
.org', 'leviw+renderwatch@chromium.org' ], |
215 'content_security_policy': [ 'mkwst+watchlist@chromium.org' ], | 218 'content_security_policy': [ 'mkwst+watchlist@chromium.org' ], |
216 'prerender': [ 'gavinp+prerender@chromium.org' ], | 219 'prerender': [ 'gavinp+prerender@chromium.org' ], |
217 'track': ['vcarbune@chromium.org'], | 220 'track': ['vcarbune@chromium.org'], |
218 'media': [ 'feature-media-reviews@chromium.org' ], | 221 'media': [ 'feature-media-reviews@chromium.org' ], |
219 'media_queries': [ 'kenneth.christiansen@gmail.com' ], | 222 'media_queries': [ 'kenneth.christiansen@gmail.com' ], |
220 'fileapi': [ 'kinuko@chromium.org' ], | 223 'fileapi': [ 'kinuko@chromium.org' ], |
221 'quota': [ 'kinuko@chromium.org' ], | 224 'quota': [ 'kinuko@chromium.org' ], |
222 'viewport_interaction': [ 'kenneth.christiansen@gmail.com' ], | 225 'viewport_interaction': [ 'kenneth.christiansen@gmail.com' ], |
223 'css_regions': [ 'ChromiumBugTracker@adobe.com' ], | 226 'css_regions': [ 'ChromiumBugTracker@adobe.com' ], |
| 227 'web_idl': [ 'ch.dumez@sisa.samsung.com' ], |
224 'webcomponents': [ 'webcomponents-bugzilla@chromium.org', 'dglazkov+blink@ch
romium.org' ], | 228 'webcomponents': [ 'webcomponents-bugzilla@chromium.org', 'dglazkov+blink@ch
romium.org' ], |
225 'mediastream': [ 'tommyw+watchlist@chromium.org' ], | 229 'mediastream': [ 'tommyw+watchlist@chromium.org' ], |
226 }, | 230 }, |
227 } | 231 } |
OLD | NEW |