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

Unified Diff: native_client_sdk/PRESUBMIT.py

Issue 11228013: [NaCl SDK] Refactor sdk_update*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix windows again Created 8 years, 2 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
Index: native_client_sdk/PRESUBMIT.py
diff --git a/native_client_sdk/PRESUBMIT.py b/native_client_sdk/PRESUBMIT.py
index 5faf369d7e86ec9e677324333298f4fb7cbbd6e2..f9967e3a75f1c6241b63d2b21b67d3b21492531c 100644
--- a/native_client_sdk/PRESUBMIT.py
+++ b/native_client_sdk/PRESUBMIT.py
@@ -18,7 +18,10 @@ def CommonChecks(input_api, output_api):
'E1103', # subprocess.communicate() generates these :(
'R0201', # method could be function (doesn't reference self)
]
- black_list = [r'src[\\\/]build_tools[\\\/]tests[\\\/].*']
+ black_list = [
+ r'src[\\\/]build_tools[\\\/]tests[\\\/].*',
+ r'src[\\\/]build_tools[\\\/]sdk_tools[\\\/]third_party[\\\/].*',
+ ]
canned = input_api.canned_checks
output.extend(canned.RunPylint(input_api, output_api, black_list=black_list,
disabled_warnings=disabled_warnings))

Powered by Google App Engine
This is Rietveld 408576698