diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-14 23:07:12 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-14 23:07:12 +0000 |
commit | e88b76bbcc722d169afe2552db26b654a1696043 (patch) | |
tree | 26c70b1961d7268d56022924c427aa822fa66ab4 /tools/checklicenses | |
parent | 90f38e213e3dd82ac87894a089647b0081c727d7 (diff) | |
download | chromium_src-e88b76bbcc722d169afe2552db26b654a1696043.zip chromium_src-e88b76bbcc722d169afe2552db26b654a1696043.tar.gz chromium_src-e88b76bbcc722d169afe2552db26b654a1696043.tar.bz2 |
Update checklicenses to pass.
BUG=28291
Review URL: http://codereview.chromium.org/7887055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101187 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/checklicenses')
-rwxr-xr-x | tools/checklicenses/checklicenses.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/checklicenses/checklicenses.py b/tools/checklicenses/checklicenses.py index 9dabfb2..2ed79ff 100755 --- a/tools/checklicenses/checklicenses.py +++ b/tools/checklicenses/checklicenses.py @@ -192,6 +192,9 @@ PATH_SPECIFIC_WHITELISTED_LICENSES = { 'third_party/gles2_book': [ 'UNKNOWN', ], + 'third_party/gles2_conform/GTF_ES': [ + 'UNKNOWN', + ], 'third_party/gpsd/release-2.38/gps.h': [ 'UNKNOWN', ], @@ -367,6 +370,9 @@ PATH_SPECIFIC_WHITELISTED_LICENSES = { 'tools/gyp/test': [ 'UNKNOWN', ], + 'tools/histograms': [ + 'UNKNOWN', + ], 'tools/memory_watcher': [ 'UNKNOWN', ], @@ -436,6 +442,11 @@ def main(options, args): filename, license = line.split(':', 1) filename = os.path.relpath(filename.strip(), options.base_directory) + # All files in the build output directory are generated one way or another. + # There's no need to check them. + if filename.startswith('out/') or filename.startswith('sconsbuild/'): + continue + # For now we're just interested in the license. license = license.replace('*No copyright*', '').strip() |