diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-28 00:52:09 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-28 00:52:09 +0000 |
commit | 6bb6373d4b1567737438d5f048e35765dbfe8553 (patch) | |
tree | faa09fa59516cd4fb24172d4f889922486481254 /tools | |
parent | 219d1a6b592cfcb4028b4ff58bb3b4bb4e1684ec (diff) | |
download | chromium_src-6bb6373d4b1567737438d5f048e35765dbfe8553.zip chromium_src-6bb6373d4b1567737438d5f048e35765dbfe8553.tar.gz chromium_src-6bb6373d4b1567737438d5f048e35765dbfe8553.tar.bz2 |
licenses: don't double-include NSS in about:credits
Just manually blacklist one of the copies. We already do
this for some other modules.
BUG=42663
Review URL: http://codereview.chromium.org/1803004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45765 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/licenses.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/licenses.py b/tools/licenses.py index 7040c5b..ca3c821 100755 --- a/tools/licenses.py +++ b/tools/licenses.py @@ -43,6 +43,9 @@ PRUNE_PATHS = set([ # Two directories that are the same as those in base/third_party. "v8/src/third_party/dtoa", "v8/src/third_party/valgrind", + + # Same module occurs in base/ and in net/, so skip one of them. + "net/third_party/nss", ]) # Directories we don't scan through. |