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

Unified Diff: third_party/WebKit/PRESUBMIT.py

Issue 2375713002: blink: Remove redundant OWNER etc check during presubmit.
Patch Set: Created 4 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: third_party/WebKit/PRESUBMIT.py
diff --git a/third_party/WebKit/PRESUBMIT.py b/third_party/WebKit/PRESUBMIT.py
index c385157250137e77a50f2f4711ed988f3c5acb39..5d000c7f2b8e16d0d296f766673163a0d817913a 100644
--- a/third_party/WebKit/PRESUBMIT.py
+++ b/third_party/WebKit/PRESUBMIT.py
@@ -13,9 +13,6 @@ import re
import sys
-_EXCLUDED_PATHS = ()
-
-
def _CheckForNonBlinkVariantMojomIncludes(input_api, output_api):
pattern = input_api.re.compile(r'#include\s+.+\.mojom(.*)\.h[>"]')
errors = []
@@ -87,13 +84,7 @@ def _CheckWatchlist(input_api, output_api):
def _CommonChecks(input_api, output_api):
"""Checks common to both upload and commit."""
- # We should figure out what license checks we actually want to use.
- license_header = r'.*'
-
results = []
- results.extend(input_api.canned_checks.PanProjectChecks(
- input_api, output_api, excluded_paths=_EXCLUDED_PATHS,
- maxlen=800, license_header=license_header))
dcheng 2016/09/27 19:08:47 Won't this complain if someone modifies a file tha
Nico 2016/09/27 19:10:55 I was wondering that. But I think we currently run
Dirk Pranke 2016/09/27 21:27:25 In the top-level //PRESUBMIT.py, we exclude //thir
results.extend(_CheckForNonBlinkVariantMojomIncludes(input_api, output_api))
results.extend(_CheckForVersionControlConflicts(input_api, output_api))
results.extend(_CheckPatchFiles(input_api, output_api))
« 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