diff options
author | michaelbai@google.com <michaelbai@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-25 18:19:23 +0000 |
---|---|---|
committer | michaelbai@google.com <michaelbai@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-25 18:19:23 +0000 |
commit | c8e4e5542d419735f5389d99f74da54d6e8503e4 (patch) | |
tree | fc89f6028997607918a6c072ba00f551ed4b394b /android_webview | |
parent | 49a9fd764de19421ad8be6627c5e1633297924fb (diff) | |
download | chromium_src-c8e4e5542d419735f5389d99f74da54d6e8503e4.zip chromium_src-c8e4e5542d419735f5389d99f74da54d6e8503e4.tar.gz chromium_src-c8e4e5542d419735f5389d99f74da54d6e8503e4.tar.bz2 |
Fix webview license scan for clang
TBR=mnaganov
BUG=143931
Review URL: https://codereview.chromium.org/10993012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@158610 0039d316-1c4b-4281-b951-d872f2087c98
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) |