diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-15 00:43:16 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-15 00:43:16 +0000 |
commit | f52832291a312d78592aac0744809ed02822bfa9 (patch) | |
tree | d68a8371f000e1118cd13429ea9ff0e2d869a701 /tools/licenses.py | |
parent | d0c8d6f9c624cdced5b1f2531aac4553ad0686ef (diff) | |
download | chromium_src-f52832291a312d78592aac0744809ed02822bfa9.zip chromium_src-f52832291a312d78592aac0744809ed02822bfa9.tar.gz chromium_src-f52832291a312d78592aac0744809ed02822bfa9.tar.bz2 |
licensing: pass licenses.py scan
This makes it pass for all directories except third_party/qcms,
which unfortunately needs some careful figuring out of the license.
BUG=39240
Review URL: http://codereview.chromium.org/5830002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69207 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/licenses.py')
-rwxr-xr-x | tools/licenses.py | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/tools/licenses.py b/tools/licenses.py index 8c1c14a..87a8bb8 100755 --- a/tools/licenses.py +++ b/tools/licenses.py @@ -21,6 +21,9 @@ import sys # Paths from the root of the tree to directories to skip. PRUNE_PATHS = set([ + # Same module occurs in both the top-level third_party and others. + "base/third_party/icu", + # Assume for now that breakpad has their licensing in order. "breakpad", @@ -31,6 +34,12 @@ PRUNE_PATHS = set([ # Assume for now that native client has their licensing in order. "native_client", + # Same module occurs in chrome/ and in net/, so skip one of them. + "net/third_party/mozilla_security_manager", + + # Same module occurs in base/ and in net/, so skip one of them. + "net/third_party/nss", + # We don't bundle o3d samples into our resulting binaries. "o3d/samples", @@ -40,18 +49,15 @@ PRUNE_PATHS = set([ # Written as part of Chromium. "third_party/fuzzymatch", + # Same license as Chromium. + "third_party/lss", + + # Only binaries, used during development. + "third_party/valgrind", + # 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", - - # Same module occurs in chrome/ and in net/, so skip one of them. - "net/third_party/mozilla_security_manager", - - # Same module occurs in both the top-level third_party and others. - "base/third_party/icu", ]) # Directories we don't scan through. |