diff options
author | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-31 18:42:41 +0000 |
---|---|---|
committer | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-31 18:42:41 +0000 |
commit | 9aaa0a5383d3b8284c96a9ccb137c3975f556036 (patch) | |
tree | a204d2cdf7c78858169873e792b300be1bf90cd2 /tools/licenses.py | |
parent | 394aaec1d42af20533ece2a0a6fd6d2a0a58d2da (diff) | |
download | chromium_src-9aaa0a5383d3b8284c96a9ccb137c3975f556036.zip chromium_src-9aaa0a5383d3b8284c96a9ccb137c3975f556036.tar.gz chromium_src-9aaa0a5383d3b8284c96a9ccb137c3975f556036.tar.bz2 |
Bring about:credits up to date.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/9288079
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119924 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 ea0b8d4..fc07af7 100755 --- a/tools/licenses.py +++ b/tools/licenses.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -94,6 +94,8 @@ ADDITIONAL_PATHS = ( # The directory with the word list for Chinese and Japanese segmentation # with different license terms than ICU. os.path.join('third_party','icu','source','data','brkitr'), + # Fake directory so we can include the strongtalk license. + os.path.join('v8', 'strongtalk'), ) @@ -137,6 +139,11 @@ SPECIAL_CASES = { "URL": "http://code.google.com/p/pdfsqueeze/", "License File": "COPYING", }, + os.path.join('v8', 'strongtalk'): { + "Name": "Strongtalk", + "URL": "http://www.strongtalk.org/", + "License File": "/v8/LICENSE.strongtalk", + }, } class LicenseError(Exception): |