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
parent b458ce1a
...@@ -27,10 +27,6 @@ PRUNE_PATHS = set([ ...@@ -27,10 +27,6 @@ PRUNE_PATHS = set([
# Assume for now that breakpad has their licensing in order. # Assume for now that breakpad has their licensing in order.
os.path.join('breakpad'), 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. # Assume for now that native client has their licensing in order.
os.path.join('native_client'), os.path.join('native_client'),
...@@ -41,10 +37,7 @@ PRUNE_PATHS = set([ ...@@ -41,10 +37,7 @@ PRUNE_PATHS = set([
os.path.join('third_party','nss'), os.path.join('third_party','nss'),
os.path.join('net','third_party','nss'), os.path.join('net','third_party','nss'),
# We don't bundle o3d samples into our resulting binaries. # Placeholder directory only, not third-party code.
os.path.join('o3d','samples'),
# Not in the public Chromium tree.
os.path.join('third_party','adobe'), os.path.join('third_party','adobe'),
# Same license as Chromium. # Same license as Chromium.
...@@ -53,12 +46,10 @@ PRUNE_PATHS = set([ ...@@ -53,12 +46,10 @@ PRUNE_PATHS = set([
# Only binaries, used during development. # Only binaries, used during development.
os.path.join('third_party','valgrind'), os.path.join('third_party','valgrind'),
# Two directories that are the same as those in base/third_party. # Directories that are the same as those in base/third_party.
os.path.join('v8','src','third_party','dtoa'),
os.path.join('v8','src','third_party','valgrind'), os.path.join('v8','src','third_party','valgrind'),
# Used for development and test, not in the shipping product. # 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','bidichecker'),
os.path.join('third_party','cygwin'), os.path.join('third_party','cygwin'),
os.path.join('third_party','gold'), os.path.join('third_party','gold'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment