diff options
author | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-19 13:15:36 +0000 |
---|---|---|
committer | steveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-19 13:15:36 +0000 |
commit | 38acf4769e4dd2dbcc2e0c48e03cd956cc6041cb (patch) | |
tree | 261eecd72e136795a09f6bbe07a312ea41207667 | |
parent | 4822759ceb575e26432c31a35acf9484b17af268 (diff) | |
download | chromium_src-38acf4769e4dd2dbcc2e0c48e03cd956cc6041cb.zip chromium_src-38acf4769e4dd2dbcc2e0c48e03cd956cc6041cb.tar.gz chromium_src-38acf4769e4dd2dbcc2e0c48e03cd956cc6041cb.tar.bz2 |
Add a special-case entry to the license checker for third_party/v8-i18n
Also roll DEPS for this project to pick up the newly added LICENSE file. This
fixes 'tools/licenses.py scan' for this directory.
See http://code.google.com/p/v8-i18n/source/detail?r=31 and
http://code.google.com/p/v8-i18n/source/detail?r=32.
Review URL: https://chromiumcodereview.appspot.com/9639009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127455 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | DEPS | 2 | ||||
-rwxr-xr-x | tools/licenses.py | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -181,7 +181,7 @@ deps = { (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", "src/third_party/v8-i18n": - (Var("googlecode_url") % "v8-i18n") + "/trunk@25", + (Var("googlecode_url") % "v8-i18n") + "/trunk@32", # When roll to another webgl conformance tests revision, please goto # chrome/test/gpu and run generate_webgl_conformance_test_list.py. diff --git a/tools/licenses.py b/tools/licenses.py index 58173b6..aee5afc 100755 --- a/tools/licenses.py +++ b/tools/licenses.py @@ -148,6 +148,10 @@ SPECIAL_CASES = { "URL": "http://code.google.com/p/pdfsqueeze/", "License File": "COPYING", }, + os.path.join('third_party', 'v8-i18n'): { + "Name": "Internationalization Library for v8", + "URL": "http://code.google.com/p/v8-i18n/", + }, os.path.join('v8', 'strongtalk'): { "Name": "Strongtalk", "URL": "http://www.strongtalk.org/", |