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

Unified Diff: tools/checklicenses/checklicenses.py

Issue 1920403002: [content/test/gpu] Run pylint check of gpu tests in unittest instead of PRESUBMIT (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update checklicense.py Created 4 years, 7 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 | « third_party/pylint/pylint/utils.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/checklicenses/checklicenses.py
diff --git a/tools/checklicenses/checklicenses.py b/tools/checklicenses/checklicenses.py
index bd46c94657f73471861fc5539387e7a67919cb67..4db9be4b0503be5d9f8a7096def4b1c7b4db6df5 100755
--- a/tools/checklicenses/checklicenses.py
+++ b/tools/checklicenses/checklicenses.py
@@ -61,6 +61,7 @@ WHITELISTED_LICENSES = [
'BSL (v1) LGPL (v2.1 or later)',
'FreeType (BSD like) with patent clause',
'FreeType (BSD like)',
+ 'GPL (v2 or later)',
Paweł Hajdan Jr. 2016/05/05 14:03:29 No, not globally. Just for the test-only code. Gl
nednguyen 2016/05/05 14:22:11 Done.
'GPL (v2 or later) with Bison parser exception',
'GPL (v2 or later) with libtool exception',
'GPL (v2) LGPL (v2.1 or later)',
@@ -648,6 +649,22 @@ PATH_SPECIFIC_WHITELISTED_LICENSES = {
# https://sourceforge.net/p/pyserial/feature-requests/35/
'UNKNOWN',
],
+ # Not shipped, GPL license but the header files contain no licensing info.
+ 'third_party/pylint': [
+ # https://github.com/PyCQA/pylint/issues/894
+ 'UNKNOWN',
+ ],
+ # Not shipped, GPL license but the header files contain no licensing info.
+ 'third_party/logilab/logilab/astroid': [
+ # https://github.com/PyCQA/astroid/issues/336
+ 'UNKNOWN',
+ ],
+ # Not shipped, GPL license but the header files contain no licensing info.
+ 'third_party/logilab/logilab/common': [
+ # Look for email by nednguyen@google.com in May 5th in
+ # https://lists.logilab.org/pipermail/python-projects/
+ 'UNKNOWN',
+ ],
}
EXCLUDED_PATHS = [
« no previous file with comments | « third_party/pylint/pylint/utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698