diff options
author | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-09 14:10:59 +0000 |
---|---|---|
committer | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-09 14:10:59 +0000 |
commit | 607855b063166cad291de90a2bd729cbe6b3e2a0 (patch) | |
tree | d0f2164e2fdaf431fe053e2db14ec20b74a03887 /tools/licenses.py | |
parent | 932eb3c5224f160b24a5e61c155cfaf4eb5c3427 (diff) | |
download | chromium_src-607855b063166cad291de90a2bd729cbe6b3e2a0.zip chromium_src-607855b063166cad291de90a2bd729cbe6b3e2a0.tar.gz chromium_src-607855b063166cad291de90a2bd729cbe6b3e2a0.tar.bz2 |
Fix licensing information for googleurl/
Add googleurl/ to the list of additional paths in the license tool, so its
license gets added to about:credits. Also add a special-case for this entry to
point to the license file.
Review URL: http://codereview.chromium.org/9638019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125838 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/licenses.py')
-rwxr-xr-x | tools/licenses.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/licenses.py b/tools/licenses.py index 082bebb..58173b6 100755 --- a/tools/licenses.py +++ b/tools/licenses.py @@ -27,7 +27,7 @@ PRUNE_PATHS = set([ # Assume for now that breakpad has their licensing in order. os.path.join('breakpad'), - # This is just a tiny vsprops file, presumably written by the googleurl + # This is just a tiny vsprops file, presumably written by the google-url # authors. Not third-party code. os.path.join('googleurl','third_party','icu'), @@ -98,6 +98,8 @@ ADDITIONAL_PATHS = ( os.path.join('third_party','icu','source','data','brkitr'), # Fake directory so we can include the strongtalk license. os.path.join('v8', 'strongtalk'), + # Fake directory so we can include the google-url license. + 'googleurl', ) @@ -105,6 +107,11 @@ ADDITIONAL_PATHS = ( # can't provide a README.chromium. Please prefer a README.chromium # wherever possible. SPECIAL_CASES = { + 'googleurl': { + "Name": "google-url", + "URL": "http://code.google.com/p/google-url/", + "License File": "LICENSE.txt", + }, os.path.join('third_party', 'angle'): { "Name": "Almost Native Graphics Layer Engine", "URL": "http://code.google.com/p/angleproject/", |