| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'filepath': 'Source/platform/heap' \ | 133 'filepath': 'Source/platform/heap' \ |
| 134 '|Source/wtf/Partition.*' | 134 '|Source/wtf/Partition.*' |
| 135 }, | 135 }, |
| 136 'html': { | 136 'html': { |
| 137 'filepath': 'Source/core/html/' | 137 'filepath': 'Source/core/html/' |
| 138 }, | 138 }, |
| 139 'loader': { | 139 'loader': { |
| 140 'filepath': 'Source/core/loader', | 140 'filepath': 'Source/core/loader', |
| 141 }, | 141 }, |
| 142 'notifications': { | 142 'notifications': { |
| 143 'filepath': 'Source/modules/notifications' \ | 143 'filepath': 'LayoutTests/http/tests/notifications' \ |
| 144 '|Source/modules/notifications' \ |
| 144 '|public/platform/modules/notifications' | 145 '|public/platform/modules/notifications' |
| 145 }, | 146 }, |
| 146 'owners': { | 147 'owners': { |
| 147 'filepath': 'OWNERS', | 148 'filepath': 'OWNERS', |
| 148 }, | 149 }, |
| 149 'paint': { | 150 'paint': { |
| 150 'filepath' : 'Source/core/paint/' | 151 'filepath' : 'Source/core/paint/' |
| 151 }, | 152 }, |
| 152 'permissions': { | 153 'permissions': { |
| 153 'filepath': 'Source/modules/permissions/' \ | 154 'filepath': 'Source/modules/permissions/' \ |
| 154 '|public/platform/modules/permissions/', | 155 '|public/platform/modules/permissions/', |
| 155 }, | 156 }, |
| 156 'preloadScanner': { | 157 'preloadScanner': { |
| 157 'filepath': 'Source/core/html/parser/HTMLPreloadScanner', | 158 'filepath': 'Source/core/html/parser/HTMLPreloadScanner', |
| 158 }, | 159 }, |
| 159 'public_api': { | 160 'public_api': { |
| 160 'filepath': 'public' | 161 'filepath': 'public' |
| 161 }, | 162 }, |
| 162 'push_messaging': { | 163 'push_messaging': { |
| 163 'filepath': 'Source/modules/push_messaging' \ | 164 'filepath': 'LayoutTests/http/tests/push_messaging' \ |
| 165 '|Source/modules/push_messaging' \ |
| 164 '|public/platform/modules/push_messaging' | 166 '|public/platform/modules/push_messaging' |
| 165 }, | 167 }, |
| 166 'platform_graphics': { | 168 'platform_graphics': { |
| 167 'filepath': 'Source/platform/fonts' \ | 169 'filepath': 'Source/platform/fonts' \ |
| 168 '|Source/platform/geometry' \ | 170 '|Source/platform/geometry' \ |
| 169 '|Source/platform/graphics' | 171 '|Source/platform/graphics' |
| 170 }, | 172 }, |
| 171 'platform': { | 173 'platform': { |
| 172 'filepath': 'Source/platform' | 174 'filepath': 'Source/platform' |
| 173 }, | 175 }, |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 'yhirano+watch@chromium.org' ], | 524 'yhirano+watch@chromium.org' ], |
| 523 'workers': [ 'blink-worker-reviews@chromium.org', | 525 'workers': [ 'blink-worker-reviews@chromium.org', |
| 524 'kinuko+worker@chromium.org', | 526 'kinuko+worker@chromium.org', |
| 525 'horo+watch@chromium.org', | 527 'horo+watch@chromium.org', |
| 526 'falken@chromium.org' ], | 528 'falken@chromium.org' ], |
| 527 'wtf': [ 'mikhail.pozdnyakov@intel.com', | 529 'wtf': [ 'mikhail.pozdnyakov@intel.com', |
| 528 'blink-reviews-wtf@chromium.org' ], | 530 'blink-reviews-wtf@chromium.org' ], |
| 529 'xmlhttprequest': [ 'tyoshino+watch@chromium.org' ], | 531 'xmlhttprequest': [ 'tyoshino+watch@chromium.org' ], |
| 530 }, | 532 }, |
| 531 } | 533 } |
| OLD | NEW |