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

Unified Diff: PRESUBMIT.py

Issue 2577553004: Remove presubmit exception for //content/shell/tools/plugin. (Closed)
Patch Set: Created 4 years 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: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index da46670970c7c4a7bb7c5b42566b0d60a6491044..b0b839ad3ce99b148cfd13eb185869117887d29c 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -28,14 +28,6 @@ _EXCLUDED_PATHS = (
)
-# The NetscapePlugIn library is excluded from pan-project as it will soon
-# be deleted together with the rest of the NPAPI and it's not worthwhile to
-# update the coding style until then.
-_TESTRUNNER_PATHS = (
- r"^content[\\\/]shell[\\\/]tools[\\\/]plugin[\\\/].*",
-)
-
-
# Fragment of a regular expression that matches C++ and Objective-C++
# implementation files.
_IMPLEMENTATION_EXTENSIONS = r'\.(cc|cpp|cxx|mm)$'
@@ -2036,7 +2028,7 @@ def _CommonChecks(input_api, output_api):
results = []
results.extend(input_api.canned_checks.PanProjectChecks(
input_api, output_api,
- excluded_paths=_EXCLUDED_PATHS + _TESTRUNNER_PATHS))
+ excluded_paths=_EXCLUDED_PATHS))
results.extend(
input_api.canned_checks.CheckAuthorizedAuthor(input_api, output_api))
results.extend(
« 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