From 607855b063166cad291de90a2bd729cbe6b3e2a0 Mon Sep 17 00:00:00 2001 From: "steveblock@chromium.org" Date: Fri, 9 Mar 2012 14:10:59 +0000 Subject: 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 --- tools/licenses.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'tools/licenses.py') 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/", -- cgit v1.1