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

Unified Diff: third_party/devscripts/licensecheck.pl

Issue 12771026: checklicenses: remove libwebp from path whitelist (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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..c6c6e85e36aa07845eaf28b8c3065463b4a5691e 100755
--- a/third_party/devscripts/licensecheck.pl
+++ b/third_party/devscripts/licensecheck.pl
@@ -473,6 +473,8 @@ sub parselicense($) {
} else {
$license = "BSD $license";
}
+ } elsif ($licensetext =~ /This code is licensed under the same terms as WebM/) {
+ $license = "BSD (3 clause) $license";
} elsif ($licensetext =~ /Use of this source code is governed by a BSD-style license/) {
$license = "BSD-like $license";
} elsif ($licensetext =~ /BSD terms apply/) {
« 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