Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1334)

Unified Diff: third_party/devscripts/licensecheck.pl

Issue 12502025: Add test for Khronos Group license and whitelist it. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/checklicenses/checklicenses.py » ('j') | tools/checklicenses/checklicenses.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/devscripts/licensecheck.pl
diff --git a/third_party/devscripts/licensecheck.pl b/third_party/devscripts/licensecheck.pl
index bd60603ee564952f83c5f7e0d2253c77bd875056..701fe4a933e0139a04273a96e9f202702ef2dd69 100755
--- a/third_party/devscripts/licensecheck.pl
+++ b/third_party/devscripts/licensecheck.pl
@@ -577,6 +577,10 @@ sub parselicense($) {
$license = $license . "with libtool exception";
}
+ if ($licensetext =~ /The Khronos Group Inc. All Rights Reserved./) {
Paweł Hajdan Jr. 2013/03/25 18:29:45 This is not enough. Let's remove this and match on
+ $license = $license . "Khronos Group";
+ }
+
$license = "UNKNOWN" if (!length($license));
# Remove trailing spaces.
« no previous file with comments | « no previous file | tools/checklicenses/checklicenses.py » ('j') | tools/checklicenses/checklicenses.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698