| Index: tools/licenses.py
|
| diff --git a/tools/licenses.py b/tools/licenses.py
|
| index ea0b8d4944e417a2fc1b24e4a8224918a733bde2..eb6d0b274941e6979fc8568d66a06eabcd40360b 100755
|
| --- a/tools/licenses.py
|
| +++ b/tools/licenses.py
|
| @@ -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):
|
|
|