| 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(
|
|
|