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 18 matching lines...) Expand all Loading... | |
29 'filepath': 'Source/bindings', | 29 'filepath': 'Source/bindings', |
30 }, | 30 }, |
31 'test_runner': { | 31 'test_runner': { |
32 'filepath': 'Tools/DumpRenderTree/chromium/TestRunner', | 32 'filepath': 'Tools/DumpRenderTree/chromium/TestRunner', |
33 }, | 33 }, |
34 'canvas': { | 34 'canvas': { |
35 'filepath': 'Source/core/html/canvas/' | 35 'filepath': 'Source/core/html/canvas/' |
36 }, | 36 }, |
37 'clipboard': { | 37 'clipboard': { |
38 'filepath': 'Source/core/clipboard', | 38 'filepath': 'Source/core/clipboard', |
39 'filepath': 'Source/core/page/*Drag', | 39 'filepath': 'Source/core/page/.*Drag', |
Rick Byers
2014/07/29 17:52:22
The RegEx change makes sense, but don't you also n
dcheng
2014/07/29 18:09:36
... yes, you're right. I'm really bad at this appa
| |
40 'filepath': 'Source/platform/*Drag', | 40 'filepath': 'Source/platform/.*Drag', |
41 'filepath': 'Source/platform/clipboard', | 41 'filepath': 'Source/platform/clipboard', |
42 'filepath': 'Source/web/*Drag', | 42 'filepath': 'Source/web/.*Drag', |
43 'filepath': 'public/platform/*Drag', | 43 'filepath': 'public/platform/.*Drag', |
44 'filepath': 'public/web/*Drag', | 44 'filepath': 'public/web/.*Drag', |
45 }, | 45 }, |
46 'css': { | 46 'css': { |
47 'filepath': 'Source/core/css', | 47 'filepath': 'Source/core/css', |
48 }, | 48 }, |
49 'custom_elements': { | 49 'custom_elements': { |
50 'filepath': 'Source/core/dom/CustomElement' \ | 50 'filepath': 'Source/core/dom/CustomElement' \ |
51 '|Source/bindings/v8/.*CustomElement', | 51 '|Source/bindings/v8/.*CustomElement', |
52 }, | 52 }, |
53 'devtools': { | 53 'devtools': { |
54 'filepath': 'inspector|DevTools|devtools', | 54 'filepath': 'inspector|DevTools|devtools', |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
390 'jzern@chromium.org', | 390 'jzern@chromium.org', |
391 'skal@google.com', | 391 'skal@google.com', |
392 'vikasa@google.com' ], | 392 'vikasa@google.com' ], |
393 'css_grid_layout': [ 'svillar@igalia.com', 'jfernandez@igalia.com', 'rego@ig alia.com' ], | 393 'css_grid_layout': [ 'svillar@igalia.com', 'jfernandez@igalia.com', 'rego@ig alia.com' ], |
394 'css_flexbox': [ 'cbiesinger@chromium.org' ], | 394 'css_flexbox': [ 'cbiesinger@chromium.org' ], |
395 'battery_status': [ 'timvolodine@chromium.org' ], | 395 'battery_status': [ 'timvolodine@chromium.org' ], |
396 'out_of_process_frames': [ 'dcheng@chromium.org' ], | 396 'out_of_process_frames': [ 'dcheng@chromium.org' ], |
397 'device_light': [ 'timvolodine@chromium.org' ], | 397 'device_light': [ 'timvolodine@chromium.org' ], |
398 }, | 398 }, |
399 } | 399 } |
OLD | NEW |