Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1203)

Unified Diff: android_webview/tools/webview_licenses.py

Issue 10993012: Fix webview license scan for clang (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/tools/webview_licenses.py
diff --git a/android_webview/tools/webview_licenses.py b/android_webview/tools/webview_licenses.py
index cfd272ffc02a1d30637155075877e1f9e2b4a88d..f66a467f0cdef0b5714ced796696028f5bb67fe9 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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698