diff options
Diffstat (limited to 'android_webview')
-rwxr-xr-x | android_webview/tools/webview_licenses.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android_webview/tools/webview_licenses.py b/android_webview/tools/webview_licenses.py index cfd272f..f66a467 100755 --- a/android_webview/tools/webview_licenses.py +++ b/android_webview/tools/webview_licenses.py @@ -116,8 +116,6 @@ def _CheckLicenseHeaders(directory_list, whitelisted_files): directory_list.append('remoting/appengine/') # Histogram tools, doesn't exist in the snapshot directory_list.append('tools/histograms/') - # Ignore clang builders. - directory_list.append('third_party/llvm-build/') # Exclude files under listed directories and some known offenders. offending_files = [] @@ -175,6 +173,8 @@ def _FindThirdPartyDirs(): os.path.join('third_party', 'bidichecker'), # Isn't checked out on clients os.path.join('third_party', 'gles2_conform'), + # The llvm-build doesn't exist for non-clang builder + os.path.join('third_party', 'llvm-build'), ] return licenses.FindThirdPartyDirs(prune_paths) |