summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsteveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-07 11:21:06 +0000
committersteveblock@chromium.org <steveblock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-07 11:21:06 +0000
commit16575438e948df3ec0f83d2056e35388bf72d54f (patch)
treecf1ef76430ca67977b3f98837198156f6e3383df
parentb458ce1ad0d25c1848dd4c1fe7b5a7b55a6fa3c4 (diff)
downloadchromium_src-16575438e948df3ec0f83d2056e35388bf72d54f.zip
chromium_src-16575438e948df3ec0f83d2056e35388bf72d54f.tar.gz
chromium_src-16575438e948df3ec0f83d2056e35388bf72d54f.tar.bz2
Remove superfluous pruned paths from license tool
These paths either no longer exist on any platform, or don't cause license errors. BUG=138921 Review URL: https://chromiumcodereview.appspot.com/10843069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150328 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-xtools/licenses.py13
1 files changed, 2 insertions, 11 deletions
diff --git a/tools/licenses.py b/tools/licenses.py
index 9702d56..cd33aa6 100755
--- a/tools/licenses.py
+++ b/tools/licenses.py
@@ -27,10 +27,6 @@ PRUNE_PATHS = set([
# Assume for now that breakpad has their licensing in order.
os.path.join('breakpad'),
- # This is just a tiny vsprops file, presumably written by the google-url
- # authors. Not third-party code.
- os.path.join('googleurl','third_party','icu'),
-
# Assume for now that native client has their licensing in order.
os.path.join('native_client'),
@@ -41,10 +37,7 @@ PRUNE_PATHS = set([
os.path.join('third_party','nss'),
os.path.join('net','third_party','nss'),
- # We don't bundle o3d samples into our resulting binaries.
- os.path.join('o3d','samples'),
-
- # Not in the public Chromium tree.
+ # Placeholder directory only, not third-party code.
os.path.join('third_party','adobe'),
# Same license as Chromium.
@@ -53,12 +46,10 @@ PRUNE_PATHS = set([
# Only binaries, used during development.
os.path.join('third_party','valgrind'),
- # Two directories that are the same as those in base/third_party.
- os.path.join('v8','src','third_party','dtoa'),
+ # Directories that are the same as those in base/third_party.
os.path.join('v8','src','third_party','valgrind'),
# Used for development and test, not in the shipping product.
- os.path.join('third_party','android_testrunner'),
os.path.join('third_party','bidichecker'),
os.path.join('third_party','cygwin'),
os.path.join('third_party','gold'),