| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 }, | 249 }, |
| 250 'fragment_layout': { | 250 'fragment_layout': { |
| 251 'filepath': 'Source/core/rendering/.*(FlowThread|MultiCol|Region)' \ | 251 'filepath': 'Source/core/rendering/.*(FlowThread|MultiCol|Region)' \ |
| 252 '|Source/core/rendering/ColumnInfo' \ | 252 '|Source/core/rendering/ColumnInfo' \ |
| 253 '|LayoutTests/.*/multicol/' \ | 253 '|LayoutTests/.*/multicol/' \ |
| 254 '|LayoutTests/.*/regions/' | 254 '|LayoutTests/.*/regions/' |
| 255 }, | 255 }, |
| 256 'table_layout': { | 256 'table_layout': { |
| 257 'filepath': 'Source/core/rendering/.*Table' | 257 'filepath': 'Source/core/rendering/.*Table' |
| 258 }, | 258 }, |
| 259 'battery_status': { |
| 260 'filepath': 'Source/modules/battery/' \ |
| 261 '|LayoutTests/battery-status/' |
| 262 }, |
| 259 }, | 263 }, |
| 260 | 264 |
| 261 'WATCHLISTS': { | 265 'WATCHLISTS': { |
| 262 'accessibility':['dmazzoni@chromium.org', | 266 'accessibility':['dmazzoni@chromium.org', |
| 263 'aboxhall@chromium.org'], | 267 'aboxhall@chromium.org'], |
| 264 'animations': ['alancutter@chromium.org', | 268 'animations': ['alancutter@chromium.org', |
| 265 'alexis.menard@intel.com', | 269 'alexis.menard@intel.com', |
| 266 'dstockwell@chromium.org', | 270 'dstockwell@chromium.org', |
| 267 'ericwilligers@chromium.org', | 271 'ericwilligers@chromium.org', |
| 268 'mikelawther@chromium.org', | 272 'mikelawther@chromium.org', |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 'spellcheck' : [ 'groby+blinkspell@chromium.org' ], | 385 'spellcheck' : [ 'groby+blinkspell@chromium.org' ], |
| 382 'device_orientation': [ 'timvolodine@chromium.org', 'mvanouwerkerk+watch@chr
omium.org', 'ch.dumez@samsung.com' ], | 386 'device_orientation': [ 'timvolodine@chromium.org', 'mvanouwerkerk+watch@chr
omium.org', 'ch.dumez@samsung.com' ], |
| 383 'activity_logger': [ 'watchdog-blink-watchlist@google.com' ], | 387 'activity_logger': [ 'watchdog-blink-watchlist@google.com' ], |
| 384 'webp': [ 'urvang@google.com', | 388 'webp': [ 'urvang@google.com', |
| 385 'jzern@chromium.org', | 389 'jzern@chromium.org', |
| 386 'skal@google.com', | 390 'skal@google.com', |
| 387 'vikasa@google.com' ], | 391 'vikasa@google.com' ], |
| 388 'css_grid_layout': [ 'svillar@igalia.com', 'jfernandez@igalia.com', 'rego@ig
alia.com' ], | 392 'css_grid_layout': [ 'svillar@igalia.com', 'jfernandez@igalia.com', 'rego@ig
alia.com' ], |
| 389 'fragment_layout': [ 'mstensho+blink@opera.com' ], | 393 'fragment_layout': [ 'mstensho+blink@opera.com' ], |
| 390 'table_layout': [ 'mstensho+blink@opera.com' ], | 394 'table_layout': [ 'mstensho+blink@opera.com' ], |
| 395 'battery_status': [ 'timvolodine@chromium.org' ], |
| 391 }, | 396 }, |
| 392 } | 397 } |
| OLD | NEW |