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

Unified Diff: third_party/devscripts/licensecheck.pl

Issue 444423002: Update V8 to version 3.28.62 (based on bleeding_edge revision r22958). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Recognize license. Created 6 years, 4 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 | « DEPS ('k') | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »
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 2dbc5af12efba1a2b96befdd4e69f176f28176d7..a2db1a926703defd1b4d9ff93a563a6d9ab7cac1 100755
--- a/third_party/devscripts/licensecheck.pl
+++ b/third_party/devscripts/licensecheck.pl
@@ -643,6 +643,10 @@ sub parselicense($) {
$license = "Anti-Grain Geometry $license";
}
+ if ($licensetext =~ /Developed at SunSoft, a Sun Microsystems, Inc\. business\. Permission to use, copy, modify, and distribute this software is freely granted, provided that this notice is preserved\./) {
+ $license = "SunSoft (BSD like) $license";
+ }
+
$license = "UNKNOWN" unless $license;
# Remove trailing spaces.
« no previous file with comments | « DEPS ('k') | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698