| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 'chrome/browser/ui/search/|'\ | 400 'chrome/browser/ui/search/|'\ |
| 401 'chrome/browser/resources/local_ntp/|'\ | 401 'chrome/browser/resources/local_ntp/|'\ |
| 402 'chrome/common/search_types.*', | 402 'chrome/common/search_types.*', |
| 403 }, | 403 }, |
| 404 'ipc': { | 404 'ipc': { |
| 405 'filepath': 'ipc/ipc', | 405 'filepath': 'ipc/ipc', |
| 406 }, | 406 }, |
| 407 'libwebp': { | 407 'libwebp': { |
| 408 'filepath': 'third_party/libwebp' | 408 'filepath': 'third_party/libwebp' |
| 409 }, | 409 }, |
| 410 'layout_tests': { | |
| 411 'filepath': 'webkit/(tools|data)/(layout_tests|test_shell)/', | |
| 412 }, | |
| 413 'linux_fonts': { | 410 'linux_fonts': { |
| 414 'filepath': 'ui/gfx/font_render_params_.*|'\ | 411 'filepath': 'ui/gfx/font_render_params_.*|'\ |
| 415 'ui/gfx/platform_font_pango.*|'\ | 412 'ui/gfx/platform_font_pango.*|'\ |
| 416 'ui/gfx/render_text_linux.*', | 413 'ui/gfx/render_text_linux.*', |
| 417 }, | 414 }, |
| 418 'linux_sandboxing': { | 415 'linux_sandboxing': { |
| 419 'filepath': 'sandbox/linux/', | 416 'filepath': 'sandbox/linux/', |
| 420 }, | 417 }, |
| 421 'linux_seccomp_bpf': { | 418 'linux_seccomp_bpf': { |
| 422 'filepath': 'content/common/sandbox.*linux.cc', | 419 'filepath': 'content/common/sandbox.*linux.cc', |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 'mcasas+watch@chromium.org', | 1003 'mcasas+watch@chromium.org', |
| 1007 'posciak+watch@chromium.org'], | 1004 'posciak+watch@chromium.org'], |
| 1008 'website_settings': ['markusheintz@chromium.org'], | 1005 'website_settings': ['markusheintz@chromium.org'], |
| 1009 'windows_sandboxing': ['wfh+watch@chromium.org'], | 1006 'windows_sandboxing': ['wfh+watch@chromium.org'], |
| 1010 'worker': ['jam@chromium.org'], | 1007 'worker': ['jam@chromium.org'], |
| 1011 'x11': ['derat+watch@chromium.org', | 1008 'x11': ['derat+watch@chromium.org', |
| 1012 'sadrul@chromium.org', | 1009 'sadrul@chromium.org', |
| 1013 'yusukes+watch@chromium.org'], | 1010 'yusukes+watch@chromium.org'], |
| 1014 }, | 1011 }, |
| 1015 } | 1012 } |
| OLD | NEW |