diff options
author | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-28 12:25:14 +0000 |
---|---|---|
committer | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-28 12:25:14 +0000 |
commit | 0ec3b5dc7b0dd4e2f87f56a916db7b9adaf0a3fb (patch) | |
tree | 98d4ffd5d135ac323d33b0be7ee60e7505ae2ce1 /android_webview/tools | |
parent | 2270d120aa1c9c9c6d51e69693c7be5df4f5b1a2 (diff) | |
download | chromium_src-0ec3b5dc7b0dd4e2f87f56a916db7b9adaf0a3fb.zip chromium_src-0ec3b5dc7b0dd4e2f87f56a916db7b9adaf0a3fb.tar.gz chromium_src-0ec3b5dc7b0dd4e2f87f56a916db7b9adaf0a3fb.tar.bz2 |
The right way to roll in swarm_client
BUG=277785
Review URL: https://chromiumcodereview.appspot.com/23200008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219996 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/tools')
-rwxr-xr-x | android_webview/tools/webview_licenses.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/android_webview/tools/webview_licenses.py b/android_webview/tools/webview_licenses.py index aa4f28f..d3233b3 100755 --- a/android_webview/tools/webview_licenses.py +++ b/android_webview/tools/webview_licenses.py @@ -109,9 +109,6 @@ def _CheckLicenseHeaders(excluded_dirs_list, whitelisted_files): excluded_dirs_list.append('data/dom_perf') # Histogram tools, doesn't exist in the snapshot excluded_dirs_list.append('tools/histograms') - # swarm_client is a third_party and not used on Android. - excluded_dirs_list.append('tools/swarm_client') - excluded_dirs_list.append('tools/swarming_client') # Arm sysroot tools, doesn't exist in the snapshot excluded_dirs_list.append('arm-sysroot') # Data is not part of open source chromium, but are included on some bots. @@ -194,6 +191,8 @@ def _FindThirdPartyDirs(): # third_party directories in this tree aren't actually third party, but # provide a way to shadow experimental buildfiles into those directories. os.path.join('tools', 'gn', 'secondary'), + # Not shipped, Chromium code + os.path.join('tools', 'swarm_client'), ] third_party_dirs = licenses.FindThirdPartyDirs(prune_paths, REPOSITORY_ROOT) return licenses.FilterDirsWithFiles(third_party_dirs, REPOSITORY_ROOT) |