| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 '|LayoutTests/platform/.*/fast/css-grid-layout/' \ | 277 '|LayoutTests/platform/.*/fast/css-grid-layout/' \ |
| 278 '|LayoutTests/platform/.*/ietestcenter/css3/grid/' | 278 '|LayoutTests/platform/.*/ietestcenter/css3/grid/' |
| 279 }, | 279 }, |
| 280 'css_flexbox': { | 280 'css_flexbox': { |
| 281 'filepath': 'Source/core/rendering/.*Flex' \ | 281 'filepath': 'Source/core/rendering/.*Flex' \ |
| 282 '|LayoutTests/fast/flexbox/' \ | 282 '|LayoutTests/fast/flexbox/' \ |
| 283 '|LayoutTests/css3/flexbox/' \ | 283 '|LayoutTests/css3/flexbox/' \ |
| 284 '|LayoutTests/ietestcenter/css3/flexbox/' | 284 '|LayoutTests/ietestcenter/css3/flexbox/' |
| 285 }, | 285 }, |
| 286 'css_fragmentation_tests': { | 286 'css_fragmentation_tests': { |
| 287 'filepath': '|LayoutTests/fast/multicol/' \ | 287 'filepath': 'LayoutTests/fast/multicol/' \ |
| 288 '|LayoutTests/fast/pagination/' | 288 '|LayoutTests/fast/pagination/' |
| 289 }, | 289 }, |
| 290 'battery_status': { | 290 'battery_status': { |
| 291 'filepath': 'Source/modules/battery/' \ | 291 'filepath': 'Source/modules/battery/' \ |
| 292 '|LayoutTests/battery-status/' \ | 292 '|LayoutTests/battery-status/' \ |
| 293 '|Source/core/frame/PlatformEvent(Controller|Dispatcher)' | 293 '|Source/core/frame/PlatformEvent(Controller|Dispatcher)' |
| 294 }, | 294 }, |
| 295 'device_light': { | 295 'device_light': { |
| 296 'filepath': 'Source/modules/device_light/' \ | 296 'filepath': 'Source/modules/device_light/' \ |
| 297 '|LayoutTests/fast/dom/DeviceLight/' | 297 '|LayoutTests/fast/dom/DeviceLight/' |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 'battery_status': [ 'timvolodine@chromium.org', | 439 'battery_status': [ 'timvolodine@chromium.org', |
| 440 'mlamouri+watch-blink@chromium.org' ], | 440 'mlamouri+watch-blink@chromium.org' ], |
| 441 'out_of_process_frames': [ 'dcheng@chromium.org', | 441 'out_of_process_frames': [ 'dcheng@chromium.org', |
| 442 'mlamouri+watch-blink@chromium.org' ], | 442 'mlamouri+watch-blink@chromium.org' ], |
| 443 'device_light': [ 'timvolodine@chromium.org', | 443 'device_light': [ 'timvolodine@chromium.org', |
| 444 'mlamouri+watch-blink@chromium.org' ], | 444 'mlamouri+watch-blink@chromium.org' ], |
| 445 'websockets': [ 'tyoshino+watch@chromium.org', 'yhirano+watch@chromium.org'
], | 445 'websockets': [ 'tyoshino+watch@chromium.org', 'yhirano+watch@chromium.org'
], |
| 446 'xmlhttprequest': [ 'tyoshino+watch@chromium.org' ], | 446 'xmlhttprequest': [ 'tyoshino+watch@chromium.org' ], |
| 447 }, | 447 }, |
| 448 } | 448 } |
| OLD | NEW |