diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-22 19:15:52 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-22 19:15:52 +0000 |
commit | 5974a8b0b7848ca21728ea9297386547f8c7b5a2 (patch) | |
tree | ce328af60e4ec04c247276007e52aa5155c9cd1d /tools/checklicenses | |
parent | 095de65fdb8434555921dbbcb73ae535b5c18966 (diff) | |
download | chromium_src-5974a8b0b7848ca21728ea9297386547f8c7b5a2.zip chromium_src-5974a8b0b7848ca21728ea9297386547f8c7b5a2.tar.gz chromium_src-5974a8b0b7848ca21728ea9297386547f8c7b5a2.tar.bz2 |
Don't check licenses in chrome/common/extensions/docs/server2/third_party.
This is failing 75% of the time. This directory is created by copying files from other parts of the tree, and some of those have suppressions. So don't duplicate those suppressions. Also, this code isn't shipped.
BUG=382995
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/409913005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284750 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/checklicenses')
-rwxr-xr-x | tools/checklicenses/checklicenses.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/checklicenses/checklicenses.py b/tools/checklicenses/checklicenses.py index ff8792d..daad8eb 100755 --- a/tools/checklicenses/checklicenses.py +++ b/tools/checklicenses/checklicenses.py @@ -114,6 +114,12 @@ PATH_SPECIFIC_WHITELISTED_LICENSES = { 'chrome/common/extensions/docs/examples': [ # http://crbug.com/98092 'UNKNOWN', ], + # This contains files copied from elsewhere from the tree. Since the copied + # directories might have suppressions below (like simplejson), whitelist the + # whole directory. This is also not shipped code. + 'chrome/common/extensions/docs/server2/third_party': [ + 'UNKNOWN', + ], 'courgette/third_party/bsdiff_create.cc': [ # http://crbug.com/98095 'UNKNOWN', ], |