Chromium Code Reviews| Index: PRESUBMIT.py |
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
| index 566aab6fe348f6e74fdd360ded5e9fc19170fe61..21f5a903d463a7a00fa20d2bb69a9fc801c327c7 100644 |
| --- a/PRESUBMIT.py |
| +++ b/PRESUBMIT.py |
| @@ -49,6 +49,7 @@ def _CommonChecks(input_api, output_api): |
| results.extend(_CheckPatchFiles(input_api, output_api)) |
| results.extend(_CheckTestExpectations(input_api, output_api)) |
| results.extend(_CheckUnwantedDependencies(input_api, output_api)) |
| + results.extend(_CheckStyle(input_api, output_api)) |
|
abarth-chromium
2013/05/24 06:06:39
This seems like a separate issue from the rest of
|
| return results |
| @@ -201,7 +202,6 @@ def _CheckUnwantedDependencies(input_api, output_api): |
| def CheckChangeOnUpload(input_api, output_api): |
| results = [] |
| results.extend(_CommonChecks(input_api, output_api)) |
| - results.extend(_CheckStyle(input_api, output_api)) |
| return results |