OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Top-level presubmit script for Blink. | 5 """Top-level presubmit script for Blink. |
6 | 6 |
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
8 for more details about the presubmit API built into gcl. | 8 for more details about the presubmit API built into gcl. |
9 """ | 9 """ |
10 | 10 |
11 import re | |
12 import sys | 11 import sys |
13 | 12 |
14 | 13 |
15 _EXCLUDED_PATHS = () | 14 _EXCLUDED_PATHS = () |
16 | 15 |
17 | 16 |
18 def _CheckForVersionControlConflictsInFile(input_api, f): | 17 def _CheckForVersionControlConflictsInFile(input_api, f): |
19 pattern = input_api.re.compile('^(?:<<<<<<<|>>>>>>>) |^=======$') | 18 pattern = input_api.re.compile('^(?:<<<<<<<|>>>>>>>) |^=======$') |
20 errors = [] | 19 errors = [] |
21 for line_num, line in f.ChangedContents(): | 20 for line_num, line in f.ChangedContents(): |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 if not errs: | 106 if not errs: |
108 return [output_api.PresubmitError( | 107 return [output_api.PresubmitError( |
109 "lint-test-expectations failed " | 108 "lint-test-expectations failed " |
110 "to produce output; check by hand. ")] | 109 "to produce output; check by hand. ")] |
111 if errs.strip() != 'Lint succeeded.': | 110 if errs.strip() != 'Lint succeeded.': |
112 return [output_api.PresubmitError(errs)] | 111 return [output_api.PresubmitError(errs)] |
113 return [] | 112 return [] |
114 | 113 |
115 | 114 |
116 def _CheckStyle(input_api, output_api): | 115 def _CheckStyle(input_api, output_api): |
117 # Files that follow Chromium's coding style do not include capital letters. | |
118 re_chromium_style_file = re.compile(r'\b[a-z_]+\.(cc|h)$') | |
119 style_checker_path = input_api.os_path.join(input_api.PresubmitLocalPath(), | 116 style_checker_path = input_api.os_path.join(input_api.PresubmitLocalPath(), |
120 'Tools', 'Scripts', 'check-webkit-style') | 117 'Tools', 'Scripts', 'check-webkit-style') |
121 args = ([input_api.python_executable, style_checker_path, '--diff-files'] | 118 args = ([input_api.python_executable, style_checker_path, '--diff-files'] |
122 + [input_api.os_path.join('..', '..', f.LocalPath()) | 119 + [input_api.os_path.join('..', '..', f.LocalPath()) |
123 for f in input_api.AffectedFiles() | 120 for f in input_api.AffectedFiles()]) |
124 # Filter out files that follow Chromium's coding style. | |
125 if not re_chromium_style_file.search(f.LocalPath())]) | |
126 results = [] | 121 results = [] |
127 | 122 |
128 try: | 123 try: |
129 child = input_api.subprocess.Popen(args, | 124 child = input_api.subprocess.Popen(args, |
130 stderr=input_api.subprocess.PIPE) | 125 stderr=input_api.subprocess.PIPE) |
131 _, stderrdata = child.communicate() | 126 _, stderrdata = child.communicate() |
132 if child.returncode != 0: | 127 if child.returncode != 0: |
133 results.append(output_api.PresubmitError( | 128 results.append(output_api.PresubmitError( |
134 'check-webkit-style failed', [stderrdata])) | 129 'check-webkit-style failed', [stderrdata])) |
135 except Exception as e: | 130 except Exception as e: |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 for master in masters: | 296 for master in masters: |
302 try_config.setdefault(master, {}) | 297 try_config.setdefault(master, {}) |
303 for builder in masters[master]: | 298 for builder in masters[master]: |
304 # Do not trigger presubmit builders, since they're likely to fail | 299 # Do not trigger presubmit builders, since they're likely to fail |
305 # (e.g. OWNERS checks before finished code review), and we're | 300 # (e.g. OWNERS checks before finished code review), and we're |
306 # running local presubmit anyway. | 301 # running local presubmit anyway. |
307 if 'presubmit' not in builder: | 302 if 'presubmit' not in builder: |
308 try_config[master][builder] = ['defaulttests'] | 303 try_config[master][builder] = ['defaulttests'] |
309 | 304 |
310 return try_config | 305 return try_config |
OLD | NEW |