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

Unified Diff: tools/licenses.py

Issue 427553002: Add license entry for v8/third_party/fdlibm to tools/licenses.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/licenses.py
diff --git a/tools/licenses.py b/tools/licenses.py
index 6db989ff4e2518f3cd657f76553cf3dc9bbedfa5..2249b8a2ac4117e6d40b8f24dc0a985a6590e9e2 100755
--- a/tools/licenses.py
+++ b/tools/licenses.py
@@ -98,6 +98,7 @@ ADDITIONAL_PATHS = (
os.path.join('v8'),
# Fake directory so we can include the strongtalk license.
os.path.join('v8', 'strongtalk'),
+ os.path.join('v8', 'third_party', 'fdlibm'),
)
@@ -220,6 +221,13 @@ SPECIAL_CASES = {
# Absolute path here is resolved as relative to the source root.
"License File": "/v8/LICENSE.strongtalk",
},
+ os.path.join('v8', 'third_party', 'fdlibm'): {
+ "Name": "fdlibm",
+ "URL": "http://www.netlib.org/fdlibm/",
+ "License": "Freely Distributable",
+ # Absolute path here is resolved as relative to the source root.
+ "License File" : "/v8/third_party/fdlibm/LICENSE",
+ },
}
# Special value for 'License File' field used to indicate that the license file
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698