summaryrefslogtreecommitdiffstats
path: root/tools/copyright_scanner
diff options
context:
space:
mode:
authorboliu <boliu@chromium.org>2015-10-27 09:48:51 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-27 16:49:37 +0000
commit4aa1cfbff1b2903969c283fd2d6ab79cb9cbfddf (patch)
tree4a3d2a2797efaa6bb8ab6f6cb387c6841ab5fa02 /tools/copyright_scanner
parentaacbde9e5ce152a7c600c507262f6ba6b12bfc50 (diff)
downloadchromium_src-4aa1cfbff1b2903969c283fd2d6ab79cb9cbfddf.zip
chromium_src-4aa1cfbff1b2903969c283fd2d6ab79cb9cbfddf.tar.gz
chromium_src-4aa1cfbff1b2903969c283fd2d6ab79cb9cbfddf.tar.bz2
Fix check license on some android builders
This fixes mips, x86, x64 android builders. Exclude mips and i386 sysroots as well in addition to arm. Exclude an internal-only repo under remoting. Review URL: https://codereview.chromium.org/1414663007 Cr-Commit-Position: refs/heads/master@{#356315}
Diffstat (limited to 'tools/copyright_scanner')
-rw-r--r--tools/copyright_scanner/copyright_scanner.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/copyright_scanner/copyright_scanner.py b/tools/copyright_scanner/copyright_scanner.py
index 439603a..fa705d24 100644
--- a/tools/copyright_scanner/copyright_scanner.py
+++ b/tools/copyright_scanner/copyright_scanner.py
@@ -68,8 +68,10 @@ def FindFiles(input_api, root_dir, start_paths_list, excluded_dirs_list):
path_join('tools', 'histograms'),
# Swarming tools, doesn't exist in the snapshot
path_join('tools', 'swarming_client'),
- # ARM sysroot, doesn't exist in the snapshot
+ # Ignore sysroots.
path_join('build', 'linux', 'debian_wheezy_arm-sysroot'),
+ path_join('build', 'linux', 'debian_wheezy_mips-sysroot'),
+ path_join('build', 'linux', 'debian_wheezy_i386-sysroot'),
# Old location (TODO(sbc): Remove this once it no longer exists on any bots)
path_join('chrome', 'installer', 'linux', 'debian_wheezy_arm-sysroot'),
# Data is not part of open source chromium, but are included on some bots.
@@ -78,6 +80,8 @@ def FindFiles(input_api, root_dir, start_paths_list, excluded_dirs_list):
path_join('skia', 'tools', 'clusterfuzz-data'),
# Not shipped, only relates to Chrome for Android, but not to WebView
path_join('clank'),
+ # Internal-only repository.
+ path_join('remoting', 'android', 'internal'),
]
excluded_dirs_list.extend(EXTRA_EXCLUDED_DIRS)