summaryrefslogtreecommitdiffstats
path: root/tools/checklicenses
diff options
context:
space:
mode:
authorskyostil@google.com <skyostil@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-03 12:13:42 +0000
committerskyostil@google.com <skyostil@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-03 12:13:42 +0000
commit850e8fb81db6752b823512ba615447e984171264 (patch)
treec2b7690a93cc2e1e800991b21f448296087fdd63 /tools/checklicenses
parent6ed25679b963b4798dc56a6f407b570b38d3f2e2 (diff)
downloadchromium_src-850e8fb81db6752b823512ba615447e984171264.zip
chromium_src-850e8fb81db6752b823512ba615447e984171264.tar.gz
chromium_src-850e8fb81db6752b823512ba615447e984171264.tar.bz2
Fix license check for GL headers
The EGL headers are released under an MIT/X11 license by The Khronos Group. This patch updates licensecheck.pl to recognize the license wording as it describes "Materials" rather than "Software". The OpenGL ES 2.0 headers are released under the SGI Free Software License B (http://oss.sgi.com/projects/FreeB/) by The Khronos Group. This license is added to the whitelist and licensecheck.pl is updated to recognized the mistyped "SGI Free Software B License" which is used in the header files. BUG=98097 TEST=none Review URL: http://codereview.chromium.org/8351079 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108448 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/checklicenses')
-rwxr-xr-xtools/checklicenses/checklicenses.py15
1 files changed, 1 insertions, 14 deletions
diff --git a/tools/checklicenses/checklicenses.py b/tools/checklicenses/checklicenses.py
index 84d3273..6383d99 100755
--- a/tools/checklicenses/checklicenses.py
+++ b/tools/checklicenses/checklicenses.py
@@ -78,6 +78,7 @@ WHITELISTED_LICENSES = [
'Public domain',
'libpng',
'zlib/libpng',
+ 'SGI Free Software License B',
]
@@ -117,20 +118,6 @@ PATH_SPECIFIC_WHITELISTED_LICENSES = {
'UNKNOWN',
],
- # http://crbug.com/98097
- 'gpu/GLES2': [
- 'UNKNOWN',
- ],
- 'gpu/KHR': [
- 'UNKNOWN',
- ],
- 'gpu/gles2_conform_support/egl/native/EGL': [
- 'UNKNOWN',
- ],
- 'gpu/EGL': [
- 'UNKNOWN',
- ],
-
'native_client': [ # http://crbug.com/98099
'UNKNOWN',
],