Skip to content
Snippets Groups Projects
Commit f5283229 authored by evan@chromium.org's avatar evan@chromium.org
Browse files

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
parent d0c8d6f9
No related branches found
No related tags found
No related merge requests found
......@@ -275,7 +275,7 @@ deps_os = {
(Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@3",
"src/third_party/openssl":
"/trunk/deps/third_party/openssl@68738",
"/trunk/deps/third_party/openssl@69192",
},
}
......
Name: ActiveX Scripting SDK
URL: http://support.microsoft.com/kb/223389
Version: August 8, 2000
License: Scripting SDK license
......@@ -11,4 +12,4 @@ Active Debugging to a host or engine.
Local Modifications:
No Modifications - simply downloaded scriptng.exe, saved it to this
directory, and ran it to extract its contents to the same directory.
\ No newline at end of file
directory, and ran it to extract its contents to the same directory.
Name: Google Safe Browsing
URL: http://code.google.com/p/google-safe-browsing/
License: Apache 2.0
License File: testing/LICENSE
......
Name: talloc
URL: http://talloc.samba.org/talloc/doc/html/index.html
The talloc library is only being used by a portion of the Mesa
software renderer, in ../mesa/MesaLib, and is only linked in to the
OSMesa shared library.
......
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment