Skip to content

Commit

Permalink
Fix check license on some android builders
Browse files Browse the repository at this point in the history
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}
  • Loading branch information
boliu authored and Commit bot committed Oct 27, 2015
1 parent aacbde9 commit 4aa1cfb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/copyright_scanner/copyright_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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)

Expand Down

0 comments on commit 4aa1cfb

Please sign in to comment.