diff options
author | ncbray@chromium.org <ncbray@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-12 22:21:03 +0000 |
---|---|---|
committer | ncbray@chromium.org <ncbray@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-12 22:21:03 +0000 |
commit | 620446f7e0fd70a61b19c6c4060656574e251357 (patch) | |
tree | fcb6c97389b5d6a8be89a23a6336bfc440084556 /ppapi | |
parent | 65f4e7e8db7a3766ac4daa97de70974bcdaaf534 (diff) | |
download | chromium_src-620446f7e0fd70a61b19c6c4060656574e251357.zip chromium_src-620446f7e0fd70a61b19c6c4060656574e251357.tar.gz chromium_src-620446f7e0fd70a61b19c6c4060656574e251357.tar.bz2 |
PPAPI: change PRESUBMIT.py to not complain about TODOs in .cc files.
This restriction doesn't make a lot of sense for .cc files, and there are in
fact already TODOs in the .cc files and this can choke the CQ.
BUG= none
Review URL: https://codereview.chromium.org/11555028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172671 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/PRESUBMIT.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/PRESUBMIT.py b/ppapi/PRESUBMIT.py index 6a4ea12..a07650c 100644 --- a/ppapi/PRESUBMIT.py +++ b/ppapi/PRESUBMIT.py @@ -66,7 +66,7 @@ def CheckTODO(input_api, output_api): name_parts = name.split(os.sep) # Only check normal build sources. - if ext not in ['.h', '.cc', '.idl']: + if ext not in ['.h', '.idl']: continue # Only examine the ppapi directory. |