diff options
author | wez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-03 17:52:08 +0000 |
---|---|---|
committer | wez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-03 17:52:08 +0000 |
commit | a18130a5bfdeba5556c2bee55817064da72a343b (patch) | |
tree | 20e6f874954b040a5d9e7d6bec98515881e16c6b /PRESUBMIT.py | |
parent | e8f07ac77c1b27633eb7c6c2793d5b465e023f9f (diff) | |
download | chromium_src-a18130a5bfdeba5556c2bee55817064da72a343b.zip chromium_src-a18130a5bfdeba5556c2bee55817064da72a343b.tar.gz chromium_src-a18130a5bfdeba5556c2bee55817064da72a343b.tar.bz2 |
Fix bugs in PRESUBMIT.py's file exclusions.
native_client_sdk uses a different copyright header so it must not be processed by this check.
NOTRY=true
BUG=109004
Review URL: http://codereview.chromium.org/9071009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 3338ddd..6cb1586 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -1,4 +1,4 @@ -# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -14,7 +14,8 @@ import re _EXCLUDED_PATHS = ( r"^breakpad[\\\/].*", - r"^net/tools/spdyshark/[\\\/].*", + r"^native_client_sdk[\\\/].*", + r"^net[\\\/]tools[\\\/]spdyshark[\\\/].*", r"^skia[\\\/].*", r"^v8[\\\/].*", r".*MakeFile$", |