diff options
author | sebmarchand@chromium.org <sebmarchand@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-06 00:04:29 +0000 |
---|---|---|
committer | sebmarchand@chromium.org <sebmarchand@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-06 00:04:29 +0000 |
commit | 6aa13e283755c669c622f7b2f311d0ce73ec6f0e (patch) | |
tree | 2a543778860f9f60d61293ffbbb9a4fb3f738064 /tools/symsrc | |
parent | 8d9080abab79f5223c55ffef492213ff2e23abca (diff) | |
download | chromium_src-6aa13e283755c669c622f7b2f311d0ce73ec6f0e.zip chromium_src-6aa13e283755c669c622f7b2f311d0ce73ec6f0e.tar.gz chromium_src-6aa13e283755c669c622f7b2f311d0ce73ec6f0e.tar.bz2 |
Add more URL to the whitelist in source_index.py
Context: https://groups.google.com/a/chromium.org/forum/?fromgroups=#!topic/chromium-dev/1aTQc4fd-rk
BUG=
Review URL: https://chromiumcodereview.appspot.com/13529016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192658 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/symsrc')
-rwxr-xr-x | tools/symsrc/source_index.py | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/tools/symsrc/source_index.py b/tools/symsrc/source_index.py index bb5e8b5..76b0489 100755 --- a/tools/symsrc/source_index.py +++ b/tools/symsrc/source_index.py @@ -35,8 +35,21 @@ import tempfile # from repositories listed here will be source indexed. Second, it allows us # to map from one SVN URL to another, so we can map to external SVN servers. REPO_MAP = { - "svn://chrome-svn/chrome": "http://src.chromium.org/svn", - "svn://chrome-svn.corp.google.com/chrome": "http://src.chromium.org/svn", + "svn://chrome-svn/blink": "http://src.chromium.org/blink", + "svn://chrome-svn/chrome": "http://src.chromium.org/chrome", + "svn://chrome-svn/multivm": "http://src.chromium.org/multivm", + "svn://chrome-svn/native_client": "http://src.chromium.org/native_client", + "svn://chrome-svn.corp.google.com/blink": "http://src.chromium.org/blink", + "svn://chrome-svn.corp.google.com/chrome": "http://src.chromium.org/chrome", + "svn://chrome-svn.corp.google.com/multivm": "http://src.chromium.org/multivm", + "svn://chrome-svn.corp.google.com/native_client": + "http://src.chromium.org/native_client", + "svn://svn-mirror.golo.chromium.org/blink": "http://src.chromium.org/blink", + "svn://svn-mirror.golo.chromium.org/chrome": "http://src.chromium.org/chrome", + "svn://svn-mirror.golo.chromium.org/multivm": + "http://src.chromium.org/multivm", + "svn://svn-mirror.golo.chromium.org/native_client": + "http://src.chromium.org/native_client", "http://v8.googlecode.com/svn": None, "http://google-breakpad.googlecode.com/svn": None, "http://googletest.googlecode.com/svn": None, |