Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: tools/licenses.py

Issue 5830002: licensing: pass licenses.py scan (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/talloc/README.chromium ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/licenses.py
diff --git a/tools/licenses.py b/tools/licenses.py
index 8c1c14ada0f7ca980c2d91fac9280be53581fd58..87a8bb844f8093c204f622c3634334313265ffb4 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.
« no previous file with comments | « third_party/talloc/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698