| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'html': { | 48 'html': { |
| 49 'filepath': 'Source/core/html/' | 49 'filepath': 'Source/core/html/' |
| 50 }, | 50 }, |
| 51 'loader': { | 51 'loader': { |
| 52 'filepath': 'Source/core/loader', | 52 'filepath': 'Source/core/loader', |
| 53 }, | 53 }, |
| 54 'owners': { | 54 'owners': { |
| 55 'filepath': 'OWNERS', | 55 'filepath': 'OWNERS', |
| 56 }, | 56 }, |
| 57 'public_api': { | 57 'public_api': { |
| 58 'filepath': 'public' \ | 58 'filepath': 'public' |
| 59 '|Source/WebKit/chromium/public' \ | |
| 60 '|Tools/DumpRenderTree/chromium/TestRunner/public/', | |
| 61 }, | 59 }, |
| 62 'spellcheck' : { | 60 'spellcheck' : { |
| 63 'filepath': 'Source/core/editing/Editor.*' \ | 61 'filepath': 'Source/core/editing/Editor.*' \ |
| 64 '|Source/core/editing/Spell.*' \ | 62 '|Source/core/editing/Spell.*' \ |
| 65 '|Source/core/editing/TextCheckingHelper.*' \ | 63 '|Source/core/editing/TextCheckingHelper.*' \ |
| 66 '|Source/core/platform/Text/TextCheck.*' \ | 64 '|Source/core/platform/Text/TextCheck.*' \ |
| 67 '|Source/web/EditorClientImpl.*' \ | 65 '|Source/web/EditorClientImpl.*' \ |
| 68 '|LayoutTests/editing/spelling' \ | 66 '|LayoutTests/editing/spelling' \ |
| 69 '|public/web/WebSpellCheckClient.h', | 67 '|public/web/WebSpellCheckClient.h', |
| 70 }, | 68 }, |
| 71 'wtf': { | 69 'wtf': { |
| 72 'filepath': 'Source/wtf', | 70 'filepath': 'Source/wtf', |
| 73 }, | 71 }, |
| 74 'platform_graphics': { | 72 'platform_graphics': { |
| 75 'filepath': 'Source/core/platform/graphics', | 73 'filepath': 'Source/core/platform/graphics', |
| 76 }, | 74 }, |
| 77 'platform': { | 75 'platform': { |
| 78 'filepath': 'Source/core/platform' \ | 76 'filepath': 'Source/core/platform' \ |
| 79 '|Source/Platform' | 77 '|Source/Platform' |
| 80 }, | 78 }, |
| 81 'svg': { | 79 'svg': { |
| 82 'filepath': 'Source/core/svg|Source/core/rendering/svg', | 80 'filepath': 'Source/core/svg|Source/core/rendering/svg', |
| 83 }, | 81 }, |
| 84 'indexed_db': { | 82 'indexed_db': { |
| 85 'filepath': 'Source/modules/indexeddb/' \ | 83 'filepath': 'Source/modules/indexeddb/' \ |
| 86 '|Source/WebKit/chromium/.*IDB' \ | |
| 87 '|Source/core/platform/leveldb' \ | 84 '|Source/core/platform/leveldb' \ |
| 88 '|LayoutTests/storage/indexeddb' | 85 '|Source/web/.*IDB' \ |
| 86 '|LayoutTests/storage/indexeddb' \ |
| 87 '|public/.*IDB' |
| 89 }, | 88 }, |
| 90 'rendering': { | 89 'rendering': { |
| 91 'filepath': 'Source/core/rendering' | 90 'filepath': 'Source/core/rendering' |
| 92 }, | 91 }, |
| 93 'layers': { | 92 'layers': { |
| 94 'filepath': 'Source/core/page/scrolling/ScrollingCoordinator.*' \ | 93 'filepath': 'Source/core/page/scrolling/ScrollingCoordinator.*' \ |
| 95 '|Source/core/platform/graphics/GraphicsLayer.*' \ | 94 '|Source/core/platform/graphics/GraphicsLayer.*' \ |
| 96 '|Source/core/rendering/RenderLayer.*' | 95 '|Source/core/rendering/RenderLayer.*' |
| 97 }, | 96 }, |
| 98 "content_security_policy": { | 97 "content_security_policy": { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 113 '|Source/core/css/mediaControl' \ | 112 '|Source/core/css/mediaControl' \ |
| 114 '|LayoutTests/media/track/' | 113 '|LayoutTests/media/track/' |
| 115 }, | 114 }, |
| 116 'media': { | 115 'media': { |
| 117 'filepath': 'Source/core/css/mediaControls.*' \ | 116 'filepath': 'Source/core/css/mediaControls.*' \ |
| 118 '|Source/core/platform/graphics/.*Media.*' \ | 117 '|Source/core/platform/graphics/.*Media.*' \ |
| 119 '|Source/core/html/.*(Audio|Media|Video).*' \ | 118 '|Source/core/html/.*(Audio|Media|Video).*' \ |
| 120 '|Source/core/html/shadow/MediaControl.*' \ | 119 '|Source/core/html/shadow/MediaControl.*' \ |
| 121 '|Source/core/rendering/RenderMedia.*' \ | 120 '|Source/core/rendering/RenderMedia.*' \ |
| 122 '|Source/modules/(encryptedmedia|mediasource)' \ | 121 '|Source/modules/(encryptedmedia|mediasource)' \ |
| 123 '|Source/WebKit/chromium/.*Media.*' \ | 122 '|Source/web/.*Media' \ |
| 123 '|public/.*Media' |
| 124 }, | 124 }, |
| 125 'media_queries': { | 125 'media_queries': { |
| 126 'filepath': 'Source/core/css/CSSMediaRule.*' \ | 126 'filepath': 'Source/core/css/CSSMediaRule.*' \ |
| 127 '|Source/core/css/MediaList.*' \ | 127 '|Source/core/css/MediaList.*' \ |
| 128 '|Source/core/css/MediaQuery.*' | 128 '|Source/core/css/MediaQuery.*' |
| 129 }, | 129 }, |
| 130 'fileapi': { | 130 'fileapi': { |
| 131 'filepath': 'Source/modules/filesystem/' \ | 131 'filepath': 'Source/modules/filesystem/' \ |
| 132 '|Source/core/fileapi/' \ | 132 '|Source/core/fileapi/' \ |
| 133 '|Source/WebKit/chromium/.*File.*' \ | |
| 134 '|Source/core/platform/.*File.*' \ | 133 '|Source/core/platform/.*File.*' \ |
| 135 '|LayoutTests/fast/file' | 134 '|Source/web/.*File' \ |
| 135 '|LayoutTests/fast/file' \ |
| 136 '|public/.*File' |
| 136 }, | 137 }, |
| 137 'quota': { | 138 'quota': { |
| 138 'filepath': 'Source/modules/quota/' \ | 139 'filepath': 'Source/modules/quota/' \ |
| 139 '|Source/WebKit/chromium/.*Quota.*' | 140 '|Source/web/.*Quota' \ |
| 141 '|public/.*Quota' |
| 140 }, | 142 }, |
| 141 'viewport_interaction': { | 143 'viewport_interaction': { |
| 142 'filepath': 'Source/core/css/.*Viewport.*' \ | 144 'filepath': 'Source/core/css/.*Viewport.*' \ |
| 143 '|Source/core/dom/ViewportArguments.*' \ | 145 '|Source/core/dom/ViewportArguments.*' \ |
| 144 '|Source/core/html/HTMLMetaElement.*' \ | 146 '|Source/core/html/HTMLMetaElement.*' \ |
| 145 '|Source/core/page/FrameView.*' \ | 147 '|Source/core/page/FrameView.*' \ |
| 146 '|Source/core/page/scrolling' | 148 '|Source/core/page/scrolling' |
| 147 }, | 149 }, |
| 148 'css_regions': { | 150 'css_regions': { |
| 149 'filepath': 'Source/core/rendering/.*(Region|FlowThread).*' \ | 151 'filepath': 'Source/core/rendering/.*(Region|FlowThread).*' \ |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 'viewport_interaction': [ 'kenneth.christiansen@gmail.com' ], | 251 'viewport_interaction': [ 'kenneth.christiansen@gmail.com' ], |
| 250 'css_regions': [ 'ChromiumBugTracker@adobe.com' ], | 252 'css_regions': [ 'ChromiumBugTracker@adobe.com' ], |
| 251 'web_idl': [ 'arv+blink@chromium.org', 'ch.dumez@samsung.com' ], | 253 'web_idl': [ 'arv+blink@chromium.org', 'ch.dumez@samsung.com' ], |
| 252 'webcomponents': [ 'webcomponents-bugzilla@chromium.org', 'dglazkov+blink@ch
romium.org' ], | 254 'webcomponents': [ 'webcomponents-bugzilla@chromium.org', 'dglazkov+blink@ch
romium.org' ], |
| 253 'mediastream': [ 'tommyw+watchlist@chromium.org' ], | 255 'mediastream': [ 'tommyw+watchlist@chromium.org' ], |
| 254 'geolocation': [ 'mvanouwerkerk@chromium.org' ], | 256 'geolocation': [ 'mvanouwerkerk@chromium.org' ], |
| 255 'vibration': [ 'mvanouwerkerk@chromium.org' ], | 257 'vibration': [ 'mvanouwerkerk@chromium.org' ], |
| 256 'spellcheck' : [ 'groby+blinkspell@chromium.org' ], | 258 'spellcheck' : [ 'groby+blinkspell@chromium.org' ], |
| 257 }, | 259 }, |
| 258 } | 260 } |
| OLD | NEW |