| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 'filepath': 'ftp', | 191 'filepath': 'ftp', |
| 192 }, | 192 }, |
| 193 'fullscreen_controller': { | 193 'fullscreen_controller': { |
| 194 'filepath': 'fullscreen_controller', | 194 'filepath': 'fullscreen_controller', |
| 195 }, | 195 }, |
| 196 'gfx_image': { | 196 'gfx_image': { |
| 197 'filepath': 'ui/gfx/image/', | 197 'filepath': 'ui/gfx/image/', |
| 198 }, | 198 }, |
| 199 'gfx_geometry': { | 199 'gfx_geometry': { |
| 200 'filepath': 'ui/gfx/rect|'\ | 200 'filepath': 'ui/gfx/rect|'\ |
| 201 'ui/gfx/quad|'\ |
| 201 'ui/gfx/point|'\ | 202 'ui/gfx/point|'\ |
| 202 'ui/gfx/size|'\ | 203 'ui/gfx/size|'\ |
| 203 'ui/gfx/transform|'\ | 204 'ui/gfx/transform|'\ |
| 204 'ui/gfx/vector2d', | 205 'ui/gfx/vector2d', |
| 205 }, | 206 }, |
| 206 'gpu': { | 207 'gpu': { |
| 207 'filepath': 'gpu/', | 208 'filepath': 'gpu/', |
| 208 }, | 209 }, |
| 209 'history_ui': { | 210 'history_ui': { |
| 210 'filepath': 'chrome/browser/resources/history', | 211 'filepath': 'chrome/browser/resources/history', |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 'groby+watch@chromium.org', | 626 'groby+watch@chromium.org', |
| 626 'rouslan+watch@chromium.org'], | 627 'rouslan+watch@chromium.org'], |
| 627 'website_settings': ['markusheintz@chromium.org'], | 628 'website_settings': ['markusheintz@chromium.org'], |
| 628 'webkit': ['darin-cc@chromium.org'], | 629 'webkit': ['darin-cc@chromium.org'], |
| 629 'worker': ['jam@chromium.org'], | 630 'worker': ['jam@chromium.org'], |
| 630 'x11': ['derat+watch@chromium.org', | 631 'x11': ['derat+watch@chromium.org', |
| 631 'sadrul@chromium.org', | 632 'sadrul@chromium.org', |
| 632 'yusukes+watch@chromium.org'], | 633 'yusukes+watch@chromium.org'], |
| 633 }, | 634 }, |
| 634 } | 635 } |
| OLD | NEW |