blob: 6533abee5815deb2f4014daf657eb71ecc8b86b6 [file] [log] [blame]
[email protected]a18130a2012-01-03 17:52:081# Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]ca8d1982009-02-19 16:33:122# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""Top-level presubmit script for Chromium.
6
[email protected]f1293792009-07-31 18:09:567See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
[email protected]50d7d721e2009-11-15 17:56:188for more details about the presubmit API built into gcl.
[email protected]ca8d1982009-02-19 16:33:129"""
10
[email protected]eea609a2011-11-18 13:10:1211
[email protected]9d16ad12011-12-14 20:49:4712import re
[email protected]fbcafe5a2012-08-08 15:31:2213import subprocess
[email protected]55f9f382012-07-31 11:02:1814import sys
[email protected]9d16ad12011-12-14 20:49:4715
16
[email protected]379e7dd2010-01-28 17:39:2117_EXCLUDED_PATHS = (
[email protected]3e4eb112011-01-18 03:29:5418 r"^breakpad[\\\/].*",
[email protected]40d1dbb2012-10-26 07:18:0019 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_rules.py",
20 r"^native_client_sdk[\\\/]src[\\\/]build_tools[\\\/]make_simple.py",
[email protected]8886ffcb2013-02-12 04:56:2821 r"^native_client_sdk[\\\/]src[\\\/]tools[\\\/].*.mk",
[email protected]a18130a2012-01-03 17:52:0822 r"^net[\\\/]tools[\\\/]spdyshark[\\\/].*",
[email protected]3e4eb112011-01-18 03:29:5423 r"^skia[\\\/].*",
24 r"^v8[\\\/].*",
25 r".*MakeFile$",
[email protected]1084ccc2012-03-14 03:22:5326 r".+_autogen\.h$",
[email protected]ce145c02012-09-06 09:49:3427 r".+[\\\/]pnacl_shim\.c$",
[email protected]e07b6ac72013-08-20 00:30:4228 r"^gpu[\\\/]config[\\\/].*_list_json\.cc$",
[email protected]4306417642009-06-11 00:33:4029)
[email protected]ca8d1982009-02-19 16:33:1230
[email protected]06e6d0ff2012-12-11 01:36:4431# Fragment of a regular expression that matches C++ and Objective-C++
32# implementation files.
33_IMPLEMENTATION_EXTENSIONS = r'\.(cc|cpp|cxx|mm)$'
34
35# Regular expression that matches code only used for test binaries
36# (best effort).
37_TEST_CODE_EXCLUDED_PATHS = (
38 r'.*[/\\](fake_|test_|mock_).+%s' % _IMPLEMENTATION_EXTENSIONS,
39 r'.+_test_(base|support|util)%s' % _IMPLEMENTATION_EXTENSIONS,
[email protected]11e06082013-04-26 19:09:0340 r'.+_(api|browser|perf|pixel|unit|ui)?test(_[a-z]+)?%s' %
[email protected]e2d7e6f2013-04-23 12:57:1241 _IMPLEMENTATION_EXTENSIONS,
[email protected]06e6d0ff2012-12-11 01:36:4442 r'.+profile_sync_service_harness%s' % _IMPLEMENTATION_EXTENSIONS,
43 r'.*[/\\](test|tool(s)?)[/\\].*',
[email protected]ef070cc2013-05-03 11:53:0544 # content_shell is used for running layout tests.
45 r'content[/\\]shell[/\\].*',
[email protected]06e6d0ff2012-12-11 01:36:4446 # At request of folks maintaining this folder.
47 r'chrome[/\\]browser[/\\]automation[/\\].*',
[email protected]7b054982013-11-27 00:44:4748 # Non-production example code.
49 r'mojo[/\\]examples[/\\].*',
[email protected]06e6d0ff2012-12-11 01:36:4450)
[email protected]ca8d1982009-02-19 16:33:1251
[email protected]eea609a2011-11-18 13:10:1252_TEST_ONLY_WARNING = (
53 'You might be calling functions intended only for testing from\n'
54 'production code. It is OK to ignore this warning if you know what\n'
55 'you are doing, as the heuristics used to detect the situation are\n'
56 'not perfect. The commit queue will not block on this warning.\n'
57 'Email [email protected] if you have questions.')
58
59
[email protected]cf9b78f2012-11-14 11:40:2860_INCLUDE_ORDER_WARNING = (
61 'Your #include order seems to be broken. Send mail to\n'
62 '[email protected] if this is not the case.')
63
64
[email protected]127f18ec2012-06-16 05:05:5965_BANNED_OBJC_FUNCTIONS = (
66 (
67 'addTrackingRect:',
[email protected]23e6cbc2012-06-16 18:51:2068 (
69 'The use of -[NSView addTrackingRect:owner:userData:assumeInside:] is'
[email protected]127f18ec2012-06-16 05:05:5970 'prohibited. Please use CrTrackingArea instead.',
71 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
72 ),
73 False,
74 ),
75 (
76 'NSTrackingArea',
[email protected]23e6cbc2012-06-16 18:51:2077 (
78 'The use of NSTrackingAreas is prohibited. Please use CrTrackingArea',
[email protected]127f18ec2012-06-16 05:05:5979 'instead.',
80 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
81 ),
82 False,
83 ),
84 (
85 'convertPointFromBase:',
[email protected]23e6cbc2012-06-16 18:51:2086 (
87 'The use of -[NSView convertPointFromBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:5988 'Please use |convertPoint:(point) fromView:nil| instead.',
89 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
90 ),
91 True,
92 ),
93 (
94 'convertPointToBase:',
[email protected]23e6cbc2012-06-16 18:51:2095 (
96 'The use of -[NSView convertPointToBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:5997 'Please use |convertPoint:(point) toView:nil| instead.',
98 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
99 ),
100 True,
101 ),
102 (
103 'convertRectFromBase:',
[email protected]23e6cbc2012-06-16 18:51:20104 (
105 'The use of -[NSView convertRectFromBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:59106 'Please use |convertRect:(point) fromView:nil| instead.',
107 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
108 ),
109 True,
110 ),
111 (
112 'convertRectToBase:',
[email protected]23e6cbc2012-06-16 18:51:20113 (
114 'The use of -[NSView convertRectToBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:59115 'Please use |convertRect:(point) toView:nil| instead.',
116 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
117 ),
118 True,
119 ),
120 (
121 'convertSizeFromBase:',
[email protected]23e6cbc2012-06-16 18:51:20122 (
123 'The use of -[NSView convertSizeFromBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:59124 'Please use |convertSize:(point) fromView:nil| instead.',
125 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
126 ),
127 True,
128 ),
129 (
130 'convertSizeToBase:',
[email protected]23e6cbc2012-06-16 18:51:20131 (
132 'The use of -[NSView convertSizeToBase:] is almost certainly wrong.',
[email protected]127f18ec2012-06-16 05:05:59133 'Please use |convertSize:(point) toView:nil| instead.',
134 'http://dev.chromium.org/developers/coding-style/cocoa-dos-and-donts',
135 ),
136 True,
137 ),
138)
139
140
141_BANNED_CPP_FUNCTIONS = (
[email protected]23e6cbc2012-06-16 18:51:20142 # Make sure that gtest's FRIEND_TEST() macro is not used; the
143 # FRIEND_TEST_ALL_PREFIXES() macro from base/gtest_prod_util.h should be
[email protected]e00ccc92012-11-01 17:32:30144 # used instead since that allows for FLAKY_ and DISABLED_ prefixes.
[email protected]23e6cbc2012-06-16 18:51:20145 (
146 'FRIEND_TEST(',
147 (
[email protected]e3c945502012-06-26 20:01:49148 'Chromium code should not use gtest\'s FRIEND_TEST() macro. Include',
[email protected]23e6cbc2012-06-16 18:51:20149 'base/gtest_prod_util.h and use FRIEND_TEST_ALL_PREFIXES() instead.',
150 ),
151 False,
[email protected]7345da02012-11-27 14:31:49152 (),
[email protected]23e6cbc2012-06-16 18:51:20153 ),
154 (
155 'ScopedAllowIO',
156 (
[email protected]e3c945502012-06-26 20:01:49157 'New code should not use ScopedAllowIO. Post a task to the blocking',
158 'pool or the FILE thread instead.',
[email protected]23e6cbc2012-06-16 18:51:20159 ),
[email protected]e3c945502012-06-26 20:01:49160 True,
[email protected]7345da02012-11-27 14:31:49161 (
[email protected]0b818f72013-10-22 00:11:03162 r"^components[\\\/]breakpad[\\\/]app[\\\/]breakpad_mac\.mm$",
[email protected]de7d61ff2013-08-20 11:30:41163 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_browser_main\.cc$",
164 r"^content[\\\/]shell[\\\/]browser[\\\/]shell_message_filter\.cc$",
[email protected]398ad132013-04-02 15:11:01165 r"^net[\\\/]disk_cache[\\\/]cache_util\.cc$",
[email protected]7345da02012-11-27 14:31:49166 ),
[email protected]23e6cbc2012-06-16 18:51:20167 ),
[email protected]52657f62013-05-20 05:30:31168 (
169 'SkRefPtr',
170 (
171 'The use of SkRefPtr is prohibited. ',
172 'Please use skia::RefPtr instead.'
173 ),
174 True,
175 (),
176 ),
177 (
178 'SkAutoRef',
179 (
180 'The indirect use of SkRefPtr via SkAutoRef is prohibited. ',
181 'Please use skia::RefPtr instead.'
182 ),
183 True,
184 (),
185 ),
186 (
187 'SkAutoTUnref',
188 (
189 'The use of SkAutoTUnref is dangerous because it implicitly ',
190 'converts to a raw pointer. Please use skia::RefPtr instead.'
191 ),
192 True,
193 (),
194 ),
195 (
196 'SkAutoUnref',
197 (
198 'The indirect use of SkAutoTUnref through SkAutoUnref is dangerous ',
199 'because it implicitly converts to a raw pointer. ',
200 'Please use skia::RefPtr instead.'
201 ),
202 True,
203 (),
204 ),
[email protected]d89eec82013-12-03 14:10:59205 (
206 r'/HANDLE_EINTR\(.*close',
207 (
208 'HANDLE_EINTR(close) is invalid. If close fails with EINTR, the file',
209 'descriptor will be closed, and it is incorrect to retry the close.',
210 'Either call close directly and ignore its return value, or wrap close',
211 'in IGNORE_EINTR to use its return value. See http://crbug.com/269623'
212 ),
213 True,
214 (),
215 ),
216 (
217 r'/IGNORE_EINTR\((?!.*close)',
218 (
219 'IGNORE_EINTR is only valid when wrapping close. To wrap other system',
220 'calls, use HANDLE_EINTR. See http://crbug.com/269623',
221 ),
222 True,
223 (
224 # Files that #define IGNORE_EINTR.
225 r'^base[\\\/]posix[\\\/]eintr_wrapper\.h$',
226 r'^ppapi[\\\/]tests[\\\/]test_broker\.cc$',
227 ),
228 ),
[email protected]127f18ec2012-06-16 05:05:59229)
230
231
[email protected]b00342e7f2013-03-26 16:21:54232_VALID_OS_MACROS = (
233 # Please keep sorted.
234 'OS_ANDROID',
235 'OS_BSD',
236 'OS_CAT', # For testing.
237 'OS_CHROMEOS',
238 'OS_FREEBSD',
239 'OS_IOS',
240 'OS_LINUX',
241 'OS_MACOSX',
242 'OS_NACL',
243 'OS_OPENBSD',
244 'OS_POSIX',
245 'OS_SOLARIS',
[email protected]b00342e7f2013-03-26 16:21:54246 'OS_WIN',
247)
248
249
[email protected]55459852011-08-10 15:17:19250def _CheckNoProductionCodeUsingTestOnlyFunctions(input_api, output_api):
251 """Attempts to prevent use of functions intended only for testing in
252 non-testing code. For now this is just a best-effort implementation
253 that ignores header files and may have some false positives. A
254 better implementation would probably need a proper C++ parser.
255 """
256 # We only scan .cc files and the like, as the declaration of
257 # for-testing functions in header files are hard to distinguish from
258 # calls to such functions without a proper C++ parser.
[email protected]06e6d0ff2012-12-11 01:36:44259 file_inclusion_pattern = r'.+%s' % _IMPLEMENTATION_EXTENSIONS
[email protected]55459852011-08-10 15:17:19260
261 base_function_pattern = r'ForTest(ing)?|for_test(ing)?'
262 inclusion_pattern = input_api.re.compile(r'(%s)\s*\(' % base_function_pattern)
[email protected]de4f7d22013-05-23 14:27:46263 comment_pattern = input_api.re.compile(r'//.*%s' % base_function_pattern)
[email protected]55459852011-08-10 15:17:19264 exclusion_pattern = input_api.re.compile(
265 r'::[A-Za-z0-9_]+(%s)|(%s)[^;]+\{' % (
266 base_function_pattern, base_function_pattern))
267
268 def FilterFile(affected_file):
[email protected]06e6d0ff2012-12-11 01:36:44269 black_list = (_EXCLUDED_PATHS +
270 _TEST_CODE_EXCLUDED_PATHS +
271 input_api.DEFAULT_BLACK_LIST)
[email protected]55459852011-08-10 15:17:19272 return input_api.FilterSourceFile(
273 affected_file,
274 white_list=(file_inclusion_pattern, ),
275 black_list=black_list)
276
277 problems = []
278 for f in input_api.AffectedSourceFiles(FilterFile):
279 local_path = f.LocalPath()
[email protected]2fdd1f362013-01-16 03:56:03280 lines = input_api.ReadFile(f).splitlines()
281 line_number = 0
282 for line in lines:
283 if (inclusion_pattern.search(line) and
[email protected]de4f7d22013-05-23 14:27:46284 not comment_pattern.search(line) and
[email protected]2fdd1f362013-01-16 03:56:03285 not exclusion_pattern.search(line)):
[email protected]55459852011-08-10 15:17:19286 problems.append(
[email protected]2fdd1f362013-01-16 03:56:03287 '%s:%d\n %s' % (local_path, line_number, line.strip()))
288 line_number += 1
[email protected]55459852011-08-10 15:17:19289
290 if problems:
[email protected]f7051d52013-04-02 18:31:42291 return [output_api.PresubmitPromptOrNotify(_TEST_ONLY_WARNING, problems)]
[email protected]2fdd1f362013-01-16 03:56:03292 else:
293 return []
[email protected]55459852011-08-10 15:17:19294
295
[email protected]10689ca2011-09-02 02:31:54296def _CheckNoIOStreamInHeaders(input_api, output_api):
297 """Checks to make sure no .h files include <iostream>."""
298 files = []
299 pattern = input_api.re.compile(r'^#include\s*<iostream>',
300 input_api.re.MULTILINE)
301 for f in input_api.AffectedSourceFiles(input_api.FilterSourceFile):
302 if not f.LocalPath().endswith('.h'):
303 continue
304 contents = input_api.ReadFile(f)
305 if pattern.search(contents):
306 files.append(f)
307
308 if len(files):
309 return [ output_api.PresubmitError(
[email protected]6c063c62012-07-11 19:11:06310 'Do not #include <iostream> in header files, since it inserts static '
311 'initialization into every file including the header. Instead, '
[email protected]10689ca2011-09-02 02:31:54312 '#include <ostream>. See http://crbug.com/94794',
313 files) ]
314 return []
315
316
[email protected]72df4e782012-06-21 16:28:18317def _CheckNoUNIT_TESTInSourceFiles(input_api, output_api):
318 """Checks to make sure no source files use UNIT_TEST"""
319 problems = []
320 for f in input_api.AffectedFiles():
321 if (not f.LocalPath().endswith(('.cc', '.mm'))):
322 continue
323
324 for line_num, line in f.ChangedContents():
[email protected]549f86a2013-11-19 13:00:04325 if 'UNIT_TEST ' in line or line.endswith('UNIT_TEST'):
[email protected]72df4e782012-06-21 16:28:18326 problems.append(' %s:%d' % (f.LocalPath(), line_num))
327
328 if not problems:
329 return []
330 return [output_api.PresubmitPromptWarning('UNIT_TEST is only for headers.\n' +
331 '\n'.join(problems))]
332
333
[email protected]8ea5d4b2011-09-13 21:49:22334def _CheckNoNewWStrings(input_api, output_api):
335 """Checks to make sure we don't introduce use of wstrings."""
[email protected]55463aa62011-10-12 00:48:27336 problems = []
[email protected]8ea5d4b2011-09-13 21:49:22337 for f in input_api.AffectedFiles():
[email protected]b5c24292011-11-28 14:38:20338 if (not f.LocalPath().endswith(('.cc', '.h')) or
[email protected]24be83c2013-08-29 23:01:23339 f.LocalPath().endswith(('test.cc', '_win.cc', '_win.h'))):
[email protected]b5c24292011-11-28 14:38:20340 continue
[email protected]8ea5d4b2011-09-13 21:49:22341
[email protected]a11dbe9b2012-08-07 01:32:58342 allowWString = False
[email protected]b5c24292011-11-28 14:38:20343 for line_num, line in f.ChangedContents():
[email protected]a11dbe9b2012-08-07 01:32:58344 if 'presubmit: allow wstring' in line:
345 allowWString = True
346 elif not allowWString and 'wstring' in line:
[email protected]55463aa62011-10-12 00:48:27347 problems.append(' %s:%d' % (f.LocalPath(), line_num))
[email protected]a11dbe9b2012-08-07 01:32:58348 allowWString = False
349 else:
350 allowWString = False
[email protected]8ea5d4b2011-09-13 21:49:22351
[email protected]55463aa62011-10-12 00:48:27352 if not problems:
353 return []
354 return [output_api.PresubmitPromptWarning('New code should not use wstrings.'
[email protected]a11dbe9b2012-08-07 01:32:58355 ' If you are calling a cross-platform API that accepts a wstring, '
356 'fix the API.\n' +
[email protected]55463aa62011-10-12 00:48:27357 '\n'.join(problems))]
[email protected]8ea5d4b2011-09-13 21:49:22358
359
[email protected]2a8ac9c2011-10-19 17:20:44360def _CheckNoDEPSGIT(input_api, output_api):
361 """Make sure .DEPS.git is never modified manually."""
362 if any(f.LocalPath().endswith('.DEPS.git') for f in
363 input_api.AffectedFiles()):
364 return [output_api.PresubmitError(
365 'Never commit changes to .DEPS.git. This file is maintained by an\n'
366 'automated system based on what\'s in DEPS and your changes will be\n'
367 'overwritten.\n'
368 'See http://code.google.com/p/chromium/wiki/UsingNewGit#Rolling_DEPS\n'
369 'for more information')]
370 return []
371
372
[email protected]127f18ec2012-06-16 05:05:59373def _CheckNoBannedFunctions(input_api, output_api):
374 """Make sure that banned functions are not used."""
375 warnings = []
376 errors = []
377
378 file_filter = lambda f: f.LocalPath().endswith(('.mm', '.m', '.h'))
379 for f in input_api.AffectedFiles(file_filter=file_filter):
380 for line_num, line in f.ChangedContents():
381 for func_name, message, error in _BANNED_OBJC_FUNCTIONS:
382 if func_name in line:
383 problems = warnings;
384 if error:
385 problems = errors;
386 problems.append(' %s:%d:' % (f.LocalPath(), line_num))
387 for message_line in message:
388 problems.append(' %s' % message_line)
389
390 file_filter = lambda f: f.LocalPath().endswith(('.cc', '.mm', '.h'))
391 for f in input_api.AffectedFiles(file_filter=file_filter):
392 for line_num, line in f.ChangedContents():
[email protected]7345da02012-11-27 14:31:49393 for func_name, message, error, excluded_paths in _BANNED_CPP_FUNCTIONS:
394 def IsBlacklisted(affected_file, blacklist):
395 local_path = affected_file.LocalPath()
396 for item in blacklist:
397 if input_api.re.match(item, local_path):
398 return True
399 return False
400 if IsBlacklisted(f, excluded_paths):
401 continue
[email protected]d89eec82013-12-03 14:10:59402 matched = False
403 if func_name[0:1] == '/':
404 regex = func_name[1:]
405 if input_api.re.search(regex, line):
406 matched = True
407 elif func_name in line:
408 matched = True
409 if matched:
[email protected]127f18ec2012-06-16 05:05:59410 problems = warnings;
411 if error:
412 problems = errors;
413 problems.append(' %s:%d:' % (f.LocalPath(), line_num))
414 for message_line in message:
415 problems.append(' %s' % message_line)
416
417 result = []
418 if (warnings):
419 result.append(output_api.PresubmitPromptWarning(
420 'Banned functions were used.\n' + '\n'.join(warnings)))
421 if (errors):
422 result.append(output_api.PresubmitError(
423 'Banned functions were used.\n' + '\n'.join(errors)))
424 return result
425
426
[email protected]6c063c62012-07-11 19:11:06427def _CheckNoPragmaOnce(input_api, output_api):
428 """Make sure that banned functions are not used."""
429 files = []
430 pattern = input_api.re.compile(r'^#pragma\s+once',
431 input_api.re.MULTILINE)
432 for f in input_api.AffectedSourceFiles(input_api.FilterSourceFile):
433 if not f.LocalPath().endswith('.h'):
434 continue
435 contents = input_api.ReadFile(f)
436 if pattern.search(contents):
437 files.append(f)
438
439 if files:
440 return [output_api.PresubmitError(
441 'Do not use #pragma once in header files.\n'
442 'See http://www.chromium.org/developers/coding-style#TOC-File-headers',
443 files)]
444 return []
445
[email protected]127f18ec2012-06-16 05:05:59446
[email protected]e7479052012-09-19 00:26:12447def _CheckNoTrinaryTrueFalse(input_api, output_api):
448 """Checks to make sure we don't introduce use of foo ? true : false."""
449 problems = []
450 pattern = input_api.re.compile(r'\?\s*(true|false)\s*:\s*(true|false)')
451 for f in input_api.AffectedFiles():
452 if not f.LocalPath().endswith(('.cc', '.h', '.inl', '.m', '.mm')):
453 continue
454
455 for line_num, line in f.ChangedContents():
456 if pattern.match(line):
457 problems.append(' %s:%d' % (f.LocalPath(), line_num))
458
459 if not problems:
460 return []
461 return [output_api.PresubmitPromptWarning(
462 'Please consider avoiding the "? true : false" pattern if possible.\n' +
463 '\n'.join(problems))]
464
465
[email protected]55f9f382012-07-31 11:02:18466def _CheckUnwantedDependencies(input_api, output_api):
467 """Runs checkdeps on #include statements added in this
468 change. Breaking - rules is an error, breaking ! rules is a
469 warning.
470 """
471 # We need to wait until we have an input_api object and use this
472 # roundabout construct to import checkdeps because this file is
473 # eval-ed and thus doesn't have __file__.
474 original_sys_path = sys.path
475 try:
476 sys.path = sys.path + [input_api.os_path.join(
477 input_api.PresubmitLocalPath(), 'tools', 'checkdeps')]
478 import checkdeps
479 from cpp_checker import CppChecker
480 from rules import Rule
481 finally:
482 # Restore sys.path to what it was before.
483 sys.path = original_sys_path
484
485 added_includes = []
486 for f in input_api.AffectedFiles():
487 if not CppChecker.IsCppFile(f.LocalPath()):
488 continue
489
490 changed_lines = [line for line_num, line in f.ChangedContents()]
491 added_includes.append([f.LocalPath(), changed_lines])
492
[email protected]26385172013-05-09 23:11:35493 deps_checker = checkdeps.DepsChecker(input_api.PresubmitLocalPath())
[email protected]55f9f382012-07-31 11:02:18494
495 error_descriptions = []
496 warning_descriptions = []
497 for path, rule_type, rule_description in deps_checker.CheckAddedCppIncludes(
498 added_includes):
499 description_with_path = '%s\n %s' % (path, rule_description)
500 if rule_type == Rule.DISALLOW:
501 error_descriptions.append(description_with_path)
502 else:
503 warning_descriptions.append(description_with_path)
504
505 results = []
506 if error_descriptions:
507 results.append(output_api.PresubmitError(
508 'You added one or more #includes that violate checkdeps rules.',
509 error_descriptions))
510 if warning_descriptions:
[email protected]f7051d52013-04-02 18:31:42511 results.append(output_api.PresubmitPromptOrNotify(
[email protected]55f9f382012-07-31 11:02:18512 'You added one or more #includes of files that are temporarily\n'
513 'allowed but being removed. Can you avoid introducing the\n'
514 '#include? See relevant DEPS file(s) for details and contacts.',
515 warning_descriptions))
516 return results
517
518
[email protected]fbcafe5a2012-08-08 15:31:22519def _CheckFilePermissions(input_api, output_api):
520 """Check that all files have their permissions properly set."""
521 args = [sys.executable, 'tools/checkperms/checkperms.py', '--root',
522 input_api.change.RepositoryRoot()]
523 for f in input_api.AffectedFiles():
524 args += ['--file', f.LocalPath()]
525 errors = []
526 (errors, stderrdata) = subprocess.Popen(args).communicate()
527
528 results = []
529 if errors:
[email protected]c8278b32012-10-30 20:35:49530 results.append(output_api.PresubmitError('checkperms.py failed.',
[email protected]fbcafe5a2012-08-08 15:31:22531 errors))
532 return results
533
534
[email protected]c8278b32012-10-30 20:35:49535def _CheckNoAuraWindowPropertyHInHeaders(input_api, output_api):
536 """Makes sure we don't include ui/aura/window_property.h
537 in header files.
538 """
539 pattern = input_api.re.compile(r'^#include\s*"ui/aura/window_property.h"')
540 errors = []
541 for f in input_api.AffectedFiles():
542 if not f.LocalPath().endswith('.h'):
543 continue
544 for line_num, line in f.ChangedContents():
545 if pattern.match(line):
546 errors.append(' %s:%d' % (f.LocalPath(), line_num))
547
548 results = []
549 if errors:
550 results.append(output_api.PresubmitError(
551 'Header files should not include ui/aura/window_property.h', errors))
552 return results
553
554
[email protected]cf9b78f2012-11-14 11:40:28555def _CheckIncludeOrderForScope(scope, input_api, file_path, changed_linenums):
556 """Checks that the lines in scope occur in the right order.
557
558 1. C system files in alphabetical order
559 2. C++ system files in alphabetical order
560 3. Project's .h files
561 """
562
563 c_system_include_pattern = input_api.re.compile(r'\s*#include <.*\.h>')
564 cpp_system_include_pattern = input_api.re.compile(r'\s*#include <.*>')
565 custom_include_pattern = input_api.re.compile(r'\s*#include ".*')
566
567 C_SYSTEM_INCLUDES, CPP_SYSTEM_INCLUDES, CUSTOM_INCLUDES = range(3)
568
569 state = C_SYSTEM_INCLUDES
570
571 previous_line = ''
[email protected]728b9bb2012-11-14 20:38:57572 previous_line_num = 0
[email protected]cf9b78f2012-11-14 11:40:28573 problem_linenums = []
574 for line_num, line in scope:
575 if c_system_include_pattern.match(line):
576 if state != C_SYSTEM_INCLUDES:
[email protected]728b9bb2012-11-14 20:38:57577 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28578 elif previous_line and previous_line > line:
[email protected]728b9bb2012-11-14 20:38:57579 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28580 elif cpp_system_include_pattern.match(line):
581 if state == C_SYSTEM_INCLUDES:
582 state = CPP_SYSTEM_INCLUDES
583 elif state == CUSTOM_INCLUDES:
[email protected]728b9bb2012-11-14 20:38:57584 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28585 elif previous_line and previous_line > line:
[email protected]728b9bb2012-11-14 20:38:57586 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28587 elif custom_include_pattern.match(line):
588 if state != CUSTOM_INCLUDES:
589 state = CUSTOM_INCLUDES
590 elif previous_line and previous_line > line:
[email protected]728b9bb2012-11-14 20:38:57591 problem_linenums.append((line_num, previous_line_num))
[email protected]cf9b78f2012-11-14 11:40:28592 else:
593 problem_linenums.append(line_num)
594 previous_line = line
[email protected]728b9bb2012-11-14 20:38:57595 previous_line_num = line_num
[email protected]cf9b78f2012-11-14 11:40:28596
597 warnings = []
[email protected]728b9bb2012-11-14 20:38:57598 for (line_num, previous_line_num) in problem_linenums:
599 if line_num in changed_linenums or previous_line_num in changed_linenums:
[email protected]cf9b78f2012-11-14 11:40:28600 warnings.append(' %s:%d' % (file_path, line_num))
601 return warnings
602
603
[email protected]ac294a12012-12-06 16:38:43604def _CheckIncludeOrderInFile(input_api, f, changed_linenums):
[email protected]cf9b78f2012-11-14 11:40:28605 """Checks the #include order for the given file f."""
606
[email protected]2299dcf2012-11-15 19:56:24607 system_include_pattern = input_api.re.compile(r'\s*#include \<.*')
[email protected]23093b62013-09-20 12:16:30608 # Exclude the following includes from the check:
609 # 1) #include <.../...>, e.g., <sys/...> includes often need to appear in a
610 # specific order.
611 # 2) <atlbase.h>, "build/build_config.h"
612 excluded_include_pattern = input_api.re.compile(
613 r'\s*#include (\<.*/.*|\<atlbase\.h\>|"build/build_config.h")')
[email protected]2299dcf2012-11-15 19:56:24614 custom_include_pattern = input_api.re.compile(r'\s*#include "(?P<FILE>.*)"')
[email protected]3e83618c2013-10-09 22:32:33615 # Match the final or penultimate token if it is xxxtest so we can ignore it
616 # when considering the special first include.
617 test_file_tag_pattern = input_api.re.compile(
618 r'_[a-z]+test(?=(_[a-zA-Z0-9]+)?\.)')
[email protected]0e5c1852012-12-18 20:17:11619 if_pattern = input_api.re.compile(
620 r'\s*#\s*(if|elif|else|endif|define|undef).*')
621 # Some files need specialized order of includes; exclude such files from this
622 # check.
623 uncheckable_includes_pattern = input_api.re.compile(
624 r'\s*#include '
625 '("ipc/.*macros\.h"|<windows\.h>|".*gl.*autogen.h")\s*')
[email protected]cf9b78f2012-11-14 11:40:28626
627 contents = f.NewContents()
628 warnings = []
629 line_num = 0
630
[email protected]ac294a12012-12-06 16:38:43631 # Handle the special first include. If the first include file is
632 # some/path/file.h, the corresponding including file can be some/path/file.cc,
633 # some/other/path/file.cc, some/path/file_platform.cc, some/path/file-suffix.h
634 # etc. It's also possible that no special first include exists.
[email protected]3e83618c2013-10-09 22:32:33635 # If the included file is some/path/file_platform.h the including file could
636 # also be some/path/file_xxxtest_platform.h.
637 including_file_base_name = test_file_tag_pattern.sub(
638 '', input_api.os_path.basename(f.LocalPath()))
639
[email protected]ac294a12012-12-06 16:38:43640 for line in contents:
641 line_num += 1
642 if system_include_pattern.match(line):
643 # No special first include -> process the line again along with normal
644 # includes.
645 line_num -= 1
646 break
647 match = custom_include_pattern.match(line)
648 if match:
649 match_dict = match.groupdict()
[email protected]3e83618c2013-10-09 22:32:33650 header_basename = test_file_tag_pattern.sub(
651 '', input_api.os_path.basename(match_dict['FILE'])).replace('.h', '')
652
653 if header_basename not in including_file_base_name:
[email protected]2299dcf2012-11-15 19:56:24654 # No special first include -> process the line again along with normal
655 # includes.
656 line_num -= 1
[email protected]ac294a12012-12-06 16:38:43657 break
[email protected]cf9b78f2012-11-14 11:40:28658
659 # Split into scopes: Each region between #if and #endif is its own scope.
660 scopes = []
661 current_scope = []
662 for line in contents[line_num:]:
663 line_num += 1
[email protected]0e5c1852012-12-18 20:17:11664 if uncheckable_includes_pattern.match(line):
665 return []
[email protected]2309b0fa02012-11-16 12:18:27666 if if_pattern.match(line):
[email protected]cf9b78f2012-11-14 11:40:28667 scopes.append(current_scope)
668 current_scope = []
[email protected]962f117e2012-11-22 18:11:56669 elif ((system_include_pattern.match(line) or
670 custom_include_pattern.match(line)) and
671 not excluded_include_pattern.match(line)):
[email protected]cf9b78f2012-11-14 11:40:28672 current_scope.append((line_num, line))
673 scopes.append(current_scope)
674
675 for scope in scopes:
676 warnings.extend(_CheckIncludeOrderForScope(scope, input_api, f.LocalPath(),
677 changed_linenums))
678 return warnings
679
680
681def _CheckIncludeOrder(input_api, output_api):
682 """Checks that the #include order is correct.
683
684 1. The corresponding header for source files.
685 2. C system files in alphabetical order
686 3. C++ system files in alphabetical order
687 4. Project's .h files in alphabetical order
688
[email protected]ac294a12012-12-06 16:38:43689 Each region separated by #if, #elif, #else, #endif, #define and #undef follows
690 these rules separately.
[email protected]cf9b78f2012-11-14 11:40:28691 """
692
693 warnings = []
694 for f in input_api.AffectedFiles():
[email protected]ac294a12012-12-06 16:38:43695 if f.LocalPath().endswith(('.cc', '.h')):
696 changed_linenums = set(line_num for line_num, _ in f.ChangedContents())
697 warnings.extend(_CheckIncludeOrderInFile(input_api, f, changed_linenums))
[email protected]cf9b78f2012-11-14 11:40:28698
699 results = []
700 if warnings:
[email protected]f7051d52013-04-02 18:31:42701 results.append(output_api.PresubmitPromptOrNotify(_INCLUDE_ORDER_WARNING,
[email protected]120cf540d2012-12-10 17:55:53702 warnings))
[email protected]cf9b78f2012-11-14 11:40:28703 return results
704
705
[email protected]70ca77752012-11-20 03:45:03706def _CheckForVersionControlConflictsInFile(input_api, f):
707 pattern = input_api.re.compile('^(?:<<<<<<<|>>>>>>>) |^=======$')
708 errors = []
709 for line_num, line in f.ChangedContents():
710 if pattern.match(line):
711 errors.append(' %s:%d %s' % (f.LocalPath(), line_num, line))
712 return errors
713
714
715def _CheckForVersionControlConflicts(input_api, output_api):
716 """Usually this is not intentional and will cause a compile failure."""
717 errors = []
718 for f in input_api.AffectedFiles():
719 errors.extend(_CheckForVersionControlConflictsInFile(input_api, f))
720
721 results = []
722 if errors:
723 results.append(output_api.PresubmitError(
724 'Version control conflict markers found, please resolve.', errors))
725 return results
726
727
[email protected]06e6d0ff2012-12-11 01:36:44728def _CheckHardcodedGoogleHostsInLowerLayers(input_api, output_api):
729 def FilterFile(affected_file):
730 """Filter function for use with input_api.AffectedSourceFiles,
731 below. This filters out everything except non-test files from
732 top-level directories that generally speaking should not hard-code
733 service URLs (e.g. src/android_webview/, src/content/ and others).
734 """
735 return input_api.FilterSourceFile(
736 affected_file,
[email protected]78bb39d62012-12-11 15:11:56737 white_list=(r'^(android_webview|base|content|net)[\\\/].*', ),
[email protected]06e6d0ff2012-12-11 01:36:44738 black_list=(_EXCLUDED_PATHS +
739 _TEST_CODE_EXCLUDED_PATHS +
740 input_api.DEFAULT_BLACK_LIST))
741
[email protected]de4f7d22013-05-23 14:27:46742 base_pattern = '"[^"]*google\.com[^"]*"'
743 comment_pattern = input_api.re.compile('//.*%s' % base_pattern)
744 pattern = input_api.re.compile(base_pattern)
[email protected]06e6d0ff2012-12-11 01:36:44745 problems = [] # items are (filename, line_number, line)
746 for f in input_api.AffectedSourceFiles(FilterFile):
747 for line_num, line in f.ChangedContents():
[email protected]de4f7d22013-05-23 14:27:46748 if not comment_pattern.search(line) and pattern.search(line):
[email protected]06e6d0ff2012-12-11 01:36:44749 problems.append((f.LocalPath(), line_num, line))
750
751 if problems:
[email protected]f7051d52013-04-02 18:31:42752 return [output_api.PresubmitPromptOrNotify(
[email protected]06e6d0ff2012-12-11 01:36:44753 'Most layers below src/chrome/ should not hardcode service URLs.\n'
754 'Are you sure this is correct? (Contact: [email protected])',
755 [' %s:%d: %s' % (
756 problem[0], problem[1], problem[2]) for problem in problems])]
[email protected]2fdd1f362013-01-16 03:56:03757 else:
758 return []
[email protected]06e6d0ff2012-12-11 01:36:44759
760
[email protected]d2530012013-01-25 16:39:27761def _CheckNoAbbreviationInPngFileName(input_api, output_api):
762 """Makes sure there are no abbreviations in the name of PNG files.
763 """
[email protected]4053a48e2013-01-25 21:43:04764 pattern = input_api.re.compile(r'.*_[a-z]_.*\.png$|.*_[a-z]\.png$')
[email protected]d2530012013-01-25 16:39:27765 errors = []
766 for f in input_api.AffectedFiles(include_deletes=False):
767 if pattern.match(f.LocalPath()):
768 errors.append(' %s' % f.LocalPath())
769
770 results = []
771 if errors:
772 results.append(output_api.PresubmitError(
773 'The name of PNG files should not have abbreviations. \n'
774 'Use _hover.png, _center.png, instead of _h.png, _c.png.\n'
775 'Contact [email protected] if you have questions.', errors))
776 return results
777
778
[email protected]f32e2d1e2013-07-26 21:39:08779def _DepsFilesToCheck(re, changed_lines):
780 """Helper method for _CheckAddedDepsHaveTargetApprovals. Returns
781 a set of DEPS entries that we should look up."""
[email protected]2b438d62013-11-14 17:54:14782 # We ignore deps entries on auto-generated directories.
783 AUTO_GENERATED_DIRS = ['grit', 'jni']
[email protected]f32e2d1e2013-07-26 21:39:08784
785 # This pattern grabs the path without basename in the first
786 # parentheses, and the basename (if present) in the second. It
787 # relies on the simple heuristic that if there is a basename it will
788 # be a header file ending in ".h".
789 pattern = re.compile(
790 r"""['"]\+([^'"]+?)(/[a-zA-Z0-9_]+\.h)?['"].*""")
[email protected]2b438d62013-11-14 17:54:14791 results = set()
[email protected]f32e2d1e2013-07-26 21:39:08792 for changed_line in changed_lines:
793 m = pattern.match(changed_line)
794 if m:
795 path = m.group(1)
[email protected]2b438d62013-11-14 17:54:14796 if path.split('/')[0] not in AUTO_GENERATED_DIRS:
[email protected]f32e2d1e2013-07-26 21:39:08797 results.add('%s/DEPS' % m.group(1))
798 return results
799
800
[email protected]e871964c2013-05-13 14:14:55801def _CheckAddedDepsHaveTargetApprovals(input_api, output_api):
802 """When a dependency prefixed with + is added to a DEPS file, we
803 want to make sure that the change is reviewed by an OWNER of the
804 target file or directory, to avoid layering violations from being
805 introduced. This check verifies that this happens.
806 """
807 changed_lines = set()
808 for f in input_api.AffectedFiles():
809 filename = input_api.os_path.basename(f.LocalPath())
810 if filename == 'DEPS':
811 changed_lines |= set(line.strip()
812 for line_num, line
813 in f.ChangedContents())
814 if not changed_lines:
815 return []
816
[email protected]f32e2d1e2013-07-26 21:39:08817 virtual_depended_on_files = _DepsFilesToCheck(input_api.re, changed_lines)
[email protected]e871964c2013-05-13 14:14:55818 if not virtual_depended_on_files:
819 return []
820
821 if input_api.is_committing:
822 if input_api.tbr:
823 return [output_api.PresubmitNotifyResult(
824 '--tbr was specified, skipping OWNERS check for DEPS additions')]
825 if not input_api.change.issue:
826 return [output_api.PresubmitError(
827 "DEPS approval by OWNERS check failed: this change has "
828 "no Rietveld issue number, so we can't check it for approvals.")]
829 output = output_api.PresubmitError
830 else:
831 output = output_api.PresubmitNotifyResult
832
833 owners_db = input_api.owners_db
834 owner_email, reviewers = input_api.canned_checks._RietveldOwnerAndReviewers(
835 input_api,
836 owners_db.email_regexp,
837 approval_needed=input_api.is_committing)
838
839 owner_email = owner_email or input_api.change.author_email
840
[email protected]de4f7d22013-05-23 14:27:46841 reviewers_plus_owner = set(reviewers)
[email protected]e71c6082013-05-22 02:28:51842 if owner_email:
[email protected]de4f7d22013-05-23 14:27:46843 reviewers_plus_owner.add(owner_email)
[email protected]e871964c2013-05-13 14:14:55844 missing_files = owners_db.files_not_covered_by(virtual_depended_on_files,
845 reviewers_plus_owner)
846 unapproved_dependencies = ["'+%s'," % path[:-len('/DEPS')]
847 for path in missing_files]
848
849 if unapproved_dependencies:
850 output_list = [
851 output('Missing LGTM from OWNERS of directories added to DEPS:\n %s' %
852 '\n '.join(sorted(unapproved_dependencies)))]
853 if not input_api.is_committing:
854 suggested_owners = owners_db.reviewers_for(missing_files, owner_email)
855 output_list.append(output(
856 'Suggested missing target path OWNERS:\n %s' %
857 '\n '.join(suggested_owners or [])))
858 return output_list
859
860 return []
861
862
[email protected]85218562013-11-22 07:41:40863def _CheckSpamLogging(input_api, output_api):
864 file_inclusion_pattern = r'.+%s' % _IMPLEMENTATION_EXTENSIONS
865 black_list = (_EXCLUDED_PATHS +
866 _TEST_CODE_EXCLUDED_PATHS +
867 input_api.DEFAULT_BLACK_LIST +
[email protected]6f742dd02013-11-26 23:19:50868 (r"^base[\\\/]logging\.h$",
[email protected]8dc338c2013-12-09 16:28:48869 r"^chrome[\\\/]app[\\\/]chrome_main_delegate\.cc$",
[email protected]6e268db2013-12-04 01:41:46870 r"^chrome[\\\/]browser[\\\/]chrome_browser_main\.cc$",
[email protected]4de75262013-12-18 23:16:12871 r"^chrome[\\\/]browser[\\\/]ui[\\\/]startup[\\\/]"
872 r"startup_browser_creator\.cc$",
[email protected]fe0e6e12013-12-04 05:52:58873 r"^chrome[\\\/]installer[\\\/]setup[\\\/].*",
[email protected]95c6b3012013-12-02 14:30:31874 r"^chrome[\\\/]renderer[\\\/]extensions[\\\/]"
[email protected]6e268db2013-12-04 01:41:46875 r"logging_native_handler\.cc$",
[email protected]cdbdced2013-11-27 21:35:50876 r"^remoting[\\\/]base[\\\/]logging\.h$",
[email protected]67c96ab2013-12-17 02:05:36877 r"^remoting[\\\/]host[\\\/].*",
[email protected]8232f8fd2013-12-14 00:52:31878 r"^sandbox[\\\/]linux[\\\/].*",
879 r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$",))
[email protected]85218562013-11-22 07:41:40880 source_file_filter = lambda x: input_api.FilterSourceFile(
881 x, white_list=(file_inclusion_pattern,), black_list=black_list)
882
883 log_info = []
884 printf = []
885
886 for f in input_api.AffectedSourceFiles(source_file_filter):
887 contents = input_api.ReadFile(f, 'rb')
888 if re.search(r"\bD?LOG\s*\(\s*INFO\s*\)", contents):
889 log_info.append(f.LocalPath())
[email protected]18b466b2013-12-02 22:01:37890 elif re.search(r"\bD?LOG_IF\s*\(\s*INFO\s*,", contents):
[email protected]85210652013-11-28 05:50:13891 log_info.append(f.LocalPath())
[email protected]18b466b2013-12-02 22:01:37892
893 if re.search(r"\bprintf\(", contents):
894 printf.append(f.LocalPath())
895 elif re.search(r"\bfprintf\((stdout|stderr)", contents):
[email protected]85218562013-11-22 07:41:40896 printf.append(f.LocalPath())
897
898 if log_info:
899 return [output_api.PresubmitError(
900 'These files spam the console log with LOG(INFO):',
901 items=log_info)]
902 if printf:
903 return [output_api.PresubmitError(
904 'These files spam the console log with printf/fprintf:',
905 items=printf)]
906 return []
907
908
[email protected]49aa76a2013-12-04 06:59:16909def _CheckForAnonymousVariables(input_api, output_api):
910 """These types are all expected to hold locks while in scope and
911 so should never be anonymous (which causes them to be immediately
912 destroyed)."""
913 they_who_must_be_named = [
914 'base::AutoLock',
915 'base::AutoReset',
916 'base::AutoUnlock',
917 'SkAutoAlphaRestore',
918 'SkAutoBitmapShaderInstall',
919 'SkAutoBlitterChoose',
920 'SkAutoBounderCommit',
921 'SkAutoCallProc',
922 'SkAutoCanvasRestore',
923 'SkAutoCommentBlock',
924 'SkAutoDescriptor',
925 'SkAutoDisableDirectionCheck',
926 'SkAutoDisableOvalCheck',
927 'SkAutoFree',
928 'SkAutoGlyphCache',
929 'SkAutoHDC',
930 'SkAutoLockColors',
931 'SkAutoLockPixels',
932 'SkAutoMalloc',
933 'SkAutoMaskFreeImage',
934 'SkAutoMutexAcquire',
935 'SkAutoPathBoundsUpdate',
936 'SkAutoPDFRelease',
937 'SkAutoRasterClipValidate',
938 'SkAutoRef',
939 'SkAutoTime',
940 'SkAutoTrace',
941 'SkAutoUnref',
942 ]
943 anonymous = r'(%s)\s*[({]' % '|'.join(they_who_must_be_named)
944 # bad: base::AutoLock(lock.get());
945 # not bad: base::AutoLock lock(lock.get());
946 bad_pattern = input_api.re.compile(anonymous)
947 # good: new base::AutoLock(lock.get())
948 good_pattern = input_api.re.compile(r'\bnew\s*' + anonymous)
949 errors = []
950
951 for f in input_api.AffectedFiles():
952 if not f.LocalPath().endswith(('.cc', '.h', '.inl', '.m', '.mm')):
953 continue
954 for linenum, line in f.ChangedContents():
955 if bad_pattern.search(line) and not good_pattern.search(line):
956 errors.append('%s:%d' % (f.LocalPath(), linenum))
957
958 if errors:
959 return [output_api.PresubmitError(
960 'These lines create anonymous variables that need to be named:',
961 items=errors)]
962 return []
963
964
[email protected]5fe0f8742013-11-29 01:04:59965def _CheckCygwinShell(input_api, output_api):
966 source_file_filter = lambda x: input_api.FilterSourceFile(
967 x, white_list=(r'.+\.(gyp|gypi)$',))
968 cygwin_shell = []
969
970 for f in input_api.AffectedSourceFiles(source_file_filter):
971 for linenum, line in f.ChangedContents():
972 if 'msvs_cygwin_shell' in line:
973 cygwin_shell.append(f.LocalPath())
974 break
975
976 if cygwin_shell:
977 return [output_api.PresubmitError(
978 'These files should not use msvs_cygwin_shell (the default is 0):',
979 items=cygwin_shell)]
980 return []
981
[email protected]85218562013-11-22 07:41:40982
[email protected]760deea2013-12-10 19:33:49983def _CheckJavaStyle(input_api, output_api):
984 """Runs checkstyle on changed java files and returns errors if any exist."""
985 original_sys_path = sys.path
986 try:
987 sys.path = sys.path + [input_api.os_path.join(
988 input_api.PresubmitLocalPath(), 'tools', 'android', 'checkstyle')]
989 import checkstyle
990 finally:
991 # Restore sys.path to what it was before.
992 sys.path = original_sys_path
993
994 return checkstyle.RunCheckstyle(
995 input_api, output_api, 'tools/android/checkstyle/chromium-style-5.0.xml')
996
997
[email protected]22c9bd72011-03-27 16:47:39998def _CommonChecks(input_api, output_api):
999 """Checks common to both upload and commit."""
1000 results = []
1001 results.extend(input_api.canned_checks.PanProjectChecks(
1002 input_api, output_api, excluded_paths=_EXCLUDED_PATHS))
[email protected]66daa702011-05-28 14:41:461003 results.extend(_CheckAuthorizedAuthor(input_api, output_api))
[email protected]55459852011-08-10 15:17:191004 results.extend(
[email protected]760deea2013-12-10 19:33:491005 _CheckNoProductionCodeUsingTestOnlyFunctions(input_api, output_api))
[email protected]10689ca2011-09-02 02:31:541006 results.extend(_CheckNoIOStreamInHeaders(input_api, output_api))
[email protected]72df4e782012-06-21 16:28:181007 results.extend(_CheckNoUNIT_TESTInSourceFiles(input_api, output_api))
[email protected]8ea5d4b2011-09-13 21:49:221008 results.extend(_CheckNoNewWStrings(input_api, output_api))
[email protected]2a8ac9c2011-10-19 17:20:441009 results.extend(_CheckNoDEPSGIT(input_api, output_api))
[email protected]127f18ec2012-06-16 05:05:591010 results.extend(_CheckNoBannedFunctions(input_api, output_api))
[email protected]6c063c62012-07-11 19:11:061011 results.extend(_CheckNoPragmaOnce(input_api, output_api))
[email protected]e7479052012-09-19 00:26:121012 results.extend(_CheckNoTrinaryTrueFalse(input_api, output_api))
[email protected]55f9f382012-07-31 11:02:181013 results.extend(_CheckUnwantedDependencies(input_api, output_api))
[email protected]fbcafe5a2012-08-08 15:31:221014 results.extend(_CheckFilePermissions(input_api, output_api))
[email protected]c8278b32012-10-30 20:35:491015 results.extend(_CheckNoAuraWindowPropertyHInHeaders(input_api, output_api))
[email protected]2309b0fa02012-11-16 12:18:271016 results.extend(_CheckIncludeOrder(input_api, output_api))
[email protected]70ca77752012-11-20 03:45:031017 results.extend(_CheckForVersionControlConflicts(input_api, output_api))
[email protected]b8079ae4a2012-12-05 19:56:491018 results.extend(_CheckPatchFiles(input_api, output_api))
[email protected]06e6d0ff2012-12-11 01:36:441019 results.extend(_CheckHardcodedGoogleHostsInLowerLayers(input_api, output_api))
[email protected]d2530012013-01-25 16:39:271020 results.extend(_CheckNoAbbreviationInPngFileName(input_api, output_api))
[email protected]b00342e7f2013-03-26 16:21:541021 results.extend(_CheckForInvalidOSMacros(input_api, output_api))
[email protected]e871964c2013-05-13 14:14:551022 results.extend(_CheckAddedDepsHaveTargetApprovals(input_api, output_api))
[email protected]9f919cc2013-07-31 03:04:041023 results.extend(
1024 input_api.canned_checks.CheckChangeHasNoTabs(
1025 input_api,
1026 output_api,
1027 source_file_filter=lambda x: x.LocalPath().endswith('.grd')))
[email protected]85218562013-11-22 07:41:401028 results.extend(_CheckSpamLogging(input_api, output_api))
[email protected]49aa76a2013-12-04 06:59:161029 results.extend(_CheckForAnonymousVariables(input_api, output_api))
[email protected]5fe0f8742013-11-29 01:04:591030 results.extend(_CheckCygwinShell(input_api, output_api))
[email protected]760deea2013-12-10 19:33:491031 results.extend(_CheckJavaStyle(input_api, output_api))
[email protected]a817dd22013-12-18 04:35:411032 results.extend(_CheckForString16(input_api, output_api))
[email protected]2299dcf2012-11-15 19:56:241033
1034 if any('PRESUBMIT.py' == f.LocalPath() for f in input_api.AffectedFiles()):
1035 results.extend(input_api.canned_checks.RunUnitTestsInDirectory(
1036 input_api, output_api,
1037 input_api.PresubmitLocalPath(),
[email protected]6be63382013-01-21 15:42:381038 whitelist=[r'^PRESUBMIT_test\.py$']))
[email protected]22c9bd72011-03-27 16:47:391039 return results
[email protected]1f7b4172010-01-28 01:17:341040
[email protected]b337cb5b2011-01-23 21:24:051041
1042def _CheckSubversionConfig(input_api, output_api):
1043 """Verifies the subversion config file is correctly setup.
1044
1045 Checks that autoprops are enabled, returns an error otherwise.
1046 """
1047 join = input_api.os_path.join
1048 if input_api.platform == 'win32':
1049 appdata = input_api.environ.get('APPDATA', '')
1050 if not appdata:
1051 return [output_api.PresubmitError('%APPDATA% is not configured.')]
1052 path = join(appdata, 'Subversion', 'config')
1053 else:
1054 home = input_api.environ.get('HOME', '')
1055 if not home:
1056 return [output_api.PresubmitError('$HOME is not configured.')]
1057 path = join(home, '.subversion', 'config')
1058
1059 error_msg = (
1060 'Please look at http://dev.chromium.org/developers/coding-style to\n'
1061 'configure your subversion configuration file. This enables automatic\n'
[email protected]c6a3c10b2011-01-24 16:14:201062 'properties to simplify the project maintenance.\n'
1063 'Pro-tip: just download and install\n'
1064 'http://src.chromium.org/viewvc/chrome/trunk/tools/build/slave/config\n')
[email protected]b337cb5b2011-01-23 21:24:051065
1066 try:
1067 lines = open(path, 'r').read().splitlines()
1068 # Make sure auto-props is enabled and check for 2 Chromium standard
1069 # auto-prop.
1070 if (not '*.cc = svn:eol-style=LF' in lines or
1071 not '*.pdf = svn:mime-type=application/pdf' in lines or
1072 not 'enable-auto-props = yes' in lines):
1073 return [
[email protected]79ed7e62011-02-21 21:08:531074 output_api.PresubmitNotifyResult(
[email protected]b337cb5b2011-01-23 21:24:051075 'It looks like you have not configured your subversion config '
[email protected]b5359c02011-02-01 20:29:561076 'file or it is not up-to-date.\n' + error_msg)
[email protected]b337cb5b2011-01-23 21:24:051077 ]
1078 except (OSError, IOError):
1079 return [
[email protected]79ed7e62011-02-21 21:08:531080 output_api.PresubmitNotifyResult(
[email protected]b337cb5b2011-01-23 21:24:051081 'Can\'t find your subversion config file.\n' + error_msg)
1082 ]
1083 return []
1084
1085
[email protected]66daa702011-05-28 14:41:461086def _CheckAuthorizedAuthor(input_api, output_api):
1087 """For non-googler/chromites committers, verify the author's email address is
1088 in AUTHORS.
1089 """
[email protected]9bb9cb82011-06-13 20:43:011090 # TODO(maruel): Add it to input_api?
1091 import fnmatch
1092
[email protected]66daa702011-05-28 14:41:461093 author = input_api.change.author_email
[email protected]9bb9cb82011-06-13 20:43:011094 if not author:
1095 input_api.logging.info('No author, skipping AUTHOR check')
[email protected]66daa702011-05-28 14:41:461096 return []
[email protected]c99663292011-05-31 19:46:081097 authors_path = input_api.os_path.join(
[email protected]66daa702011-05-28 14:41:461098 input_api.PresubmitLocalPath(), 'AUTHORS')
1099 valid_authors = (
1100 input_api.re.match(r'[^#]+\s+\<(.+?)\>\s*$', line)
1101 for line in open(authors_path))
[email protected]ac54b132011-06-06 18:11:181102 valid_authors = [item.group(1).lower() for item in valid_authors if item]
[email protected]d8b50be2011-06-15 14:19:441103 if not any(fnmatch.fnmatch(author.lower(), valid) for valid in valid_authors):
[email protected]5861efb2013-01-07 18:33:231104 input_api.logging.info('Valid authors are %s', ', '.join(valid_authors))
[email protected]66daa702011-05-28 14:41:461105 return [output_api.PresubmitPromptWarning(
1106 ('%s is not in AUTHORS file. If you are a new contributor, please visit'
1107 '\n'
1108 'http://www.chromium.org/developers/contributing-code and read the '
1109 '"Legal" section\n'
1110 'If you are a chromite, verify the contributor signed the CLA.') %
1111 author)]
1112 return []
1113
1114
[email protected]b8079ae4a2012-12-05 19:56:491115def _CheckPatchFiles(input_api, output_api):
1116 problems = [f.LocalPath() for f in input_api.AffectedFiles()
1117 if f.LocalPath().endswith(('.orig', '.rej'))]
1118 if problems:
1119 return [output_api.PresubmitError(
1120 "Don't commit .rej and .orig files.", problems)]
[email protected]2fdd1f362013-01-16 03:56:031121 else:
1122 return []
[email protected]b8079ae4a2012-12-05 19:56:491123
1124
[email protected]b00342e7f2013-03-26 16:21:541125def _DidYouMeanOSMacro(bad_macro):
1126 try:
1127 return {'A': 'OS_ANDROID',
1128 'B': 'OS_BSD',
1129 'C': 'OS_CHROMEOS',
1130 'F': 'OS_FREEBSD',
1131 'L': 'OS_LINUX',
1132 'M': 'OS_MACOSX',
1133 'N': 'OS_NACL',
1134 'O': 'OS_OPENBSD',
1135 'P': 'OS_POSIX',
1136 'S': 'OS_SOLARIS',
1137 'W': 'OS_WIN'}[bad_macro[3].upper()]
1138 except KeyError:
1139 return ''
1140
1141
1142def _CheckForInvalidOSMacrosInFile(input_api, f):
1143 """Check for sensible looking, totally invalid OS macros."""
1144 preprocessor_statement = input_api.re.compile(r'^\s*#')
1145 os_macro = input_api.re.compile(r'defined\((OS_[^)]+)\)')
1146 results = []
1147 for lnum, line in f.ChangedContents():
1148 if preprocessor_statement.search(line):
1149 for match in os_macro.finditer(line):
1150 if not match.group(1) in _VALID_OS_MACROS:
1151 good = _DidYouMeanOSMacro(match.group(1))
1152 did_you_mean = ' (did you mean %s?)' % good if good else ''
1153 results.append(' %s:%d %s%s' % (f.LocalPath(),
1154 lnum,
1155 match.group(1),
1156 did_you_mean))
1157 return results
1158
1159
1160def _CheckForInvalidOSMacros(input_api, output_api):
1161 """Check all affected files for invalid OS macros."""
1162 bad_macros = []
1163 for f in input_api.AffectedFiles():
1164 if not f.LocalPath().endswith(('.py', '.js', '.html', '.css')):
1165 bad_macros.extend(_CheckForInvalidOSMacrosInFile(input_api, f))
1166
1167 if not bad_macros:
1168 return []
1169
1170 return [output_api.PresubmitError(
1171 'Possibly invalid OS macro[s] found. Please fix your code\n'
1172 'or add your macro to src/PRESUBMIT.py.', bad_macros)]
1173
1174
[email protected]a817dd22013-12-18 04:35:411175def _CheckForString16InFile(input_api, f):
1176 """Check for string16 without base:: in front."""
1177 reg = input_api.re.compile(r'\b(?<!base::)string16\b')
1178 use = 'using base::string16;'
1179 include = '#include "base/strings/string16.h"'
1180 results = []
1181 for lnum, line in f.ChangedContents():
1182 if reg.search(line) and not include in line and not use in f.NewContents():
1183 results.append(' %s:%d' % (f.LocalPath(), lnum))
1184 return results
1185
1186
1187def _CheckForString16(input_api, output_api):
1188 file_filter = lambda f: input_api.FilterSourceFile(f,
[email protected]0f0795282013-12-18 20:08:161189 white_list=(r'^chrome[\\\/]browser[\\\/]', r'^net[\\\/]', r'^ui[\\\/]'),
[email protected]a817dd22013-12-18 04:35:411190 black_list=(_EXCLUDED_PATHS + _TEST_CODE_EXCLUDED_PATHS +
1191 input_api.DEFAULT_BLACK_LIST))
1192
1193 unprefixed = []
1194 for f in input_api.AffectedFiles(file_filter=file_filter):
1195 unprefixed.extend(_CheckForString16InFile(input_api, f))
1196
1197 if not unprefixed:
1198 return []
1199
1200 return [output_api.PresubmitPromptWarning(
1201 'string16 should be prefixed with base:: namespace.', unprefixed)]
1202
1203
[email protected]1f7b4172010-01-28 01:17:341204def CheckChangeOnUpload(input_api, output_api):
1205 results = []
1206 results.extend(_CommonChecks(input_api, output_api))
[email protected]fe5f57c52009-06-05 14:25:541207 return results
[email protected]ca8d1982009-02-19 16:33:121208
1209
[email protected]38c6a512013-12-18 23:48:011210def GetDefaultTryConfigs(bots=None):
1211 """Returns a list of ('bot', set(['tests']), optionally filtered by [bots].
1212
1213 To add tests to this list, they MUST be in the the corresponding master's
1214 gatekeeper config. For example, anything on master.chromium would be closed by
1215 tools/build/masters/master.chromium/master_gatekeeper_cfg.py.
1216
1217 If 'bots' is specified, will only return configurations for bots in that list.
1218 """
1219
1220 standard_tests = [
1221 'base_unittests',
1222 'browser_tests',
1223 'cacheinvalidation_unittests',
1224 'check_deps',
1225 'check_deps2git',
1226 'content_browsertests',
1227 'content_unittests',
1228 'crypto_unittests',
1229 #'gfx_unittests',
1230 'gpu_unittests',
1231 'interactive_ui_tests',
1232 'ipc_tests',
1233 'jingle_unittests',
1234 'media_unittests',
1235 'net_unittests',
1236 'ppapi_unittests',
1237 'printing_unittests',
1238 'sql_unittests',
1239 'sync_unit_tests',
1240 'unit_tests',
1241 # Broken in release.
1242 #'url_unittests',
1243 #'webkit_unit_tests',
1244 ]
1245
1246 linux_aura_tests = [
1247 'app_list_unittests',
1248 'aura_unittests',
1249 'browser_tests',
1250 'compositor_unittests',
1251 'content_browsertests',
1252 'content_unittests',
1253 'events_unittests',
1254 'interactive_ui_tests',
1255 'unit_tests',
1256 ]
1257 builders_and_tests = {
1258 # TODO(maruel): Figure out a way to run 'sizes' where people can
1259 # effectively update the perf expectation correctly. This requires a
1260 # clobber=True build running 'sizes'. 'sizes' is not accurate with
1261 # incremental build. Reference:
1262 # http://chromium.org/developers/tree-sheriffs/perf-sheriffs.
1263 # TODO(maruel): An option would be to run 'sizes' but not count a failure
1264 # of this step as a try job failure.
1265 'android_aosp': ['compile'],
1266 'android_clang_dbg': ['slave_steps'],
1267 'android_dbg': ['slave_steps'],
1268 'cros_x86': ['defaulttests'],
1269 'ios_dbg_simulator': [
1270 'compile',
1271 'base_unittests',
1272 'content_unittests',
1273 'crypto_unittests',
1274 'url_unittests',
1275 'net_unittests',
1276 'sql_unittests',
1277 'ui_unittests',
1278 ],
1279 'ios_rel_device': ['compile'],
1280 'linux_asan': ['defaulttests'],
1281 #TODO(stip): Change the name of this builder to reflect that it's release.
1282 'linux_aura': linux_aura_tests,
1283 'linux_chromeos_asan': ['defaulttests'],
1284 'linux_chromeos_clang': ['compile'],
1285 # Note: It is a Release builder even if its name convey otherwise.
1286 'linux_chromeos': standard_tests + [
1287 'app_list_unittests',
1288 'aura_unittests',
1289 'ash_unittests',
1290 'chromeos_unittests',
1291 'components_unittests',
1292 'dbus_unittests',
1293 'device_unittests',
1294 'events_unittests',
1295 'google_apis_unittests',
1296 'sandbox_linux_unittests',
1297 ],
1298 'linux_clang': ['compile'],
1299 'linux_rel': standard_tests + [
1300 'cc_unittests',
1301 'chromedriver2_unittests',
1302 'components_unittests',
1303 'google_apis_unittests',
1304 'nacl_integration',
1305 'remoting_unittests',
1306 'sandbox_linux_unittests',
1307 'sync_integration_tests',
1308 ],
1309 'mac': ['compile'],
1310 'mac_rel': standard_tests + [
1311 'app_list_unittests',
1312 'cc_unittests',
1313 'chromedriver2_unittests',
1314 'components_unittests',
1315 'google_apis_unittests',
1316 'message_center_unittests',
1317 'nacl_integration',
1318 'remoting_unittests',
1319 'sync_integration_tests',
1320 'telemetry_unittests',
1321 ],
1322 'win': ['compile'],
1323 'win_rel': standard_tests + [
1324 'app_list_unittests',
1325 'ash_unittests',
1326 'aura_unittests',
1327 'cc_unittests',
1328 'chrome_elf_unittests',
1329 'chromedriver2_unittests',
1330 'components_unittests',
1331 'compositor_unittests',
1332 'events_unittests',
1333 'google_apis_unittests',
1334 'installer_util_unittests',
1335 'mini_installer_test',
1336 'nacl_integration',
1337 'remoting_unittests',
1338 'sync_integration_tests',
1339 'telemetry_unittests',
1340 'views_unittests',
1341 ],
1342 'win_x64_rel': [
1343 'base_unittests',
1344 ],
1345 }
1346
1347 swarm_enabled_builders = (
1348 'linux_rel',
1349 'mac_rel',
1350 'win_rel',
1351 )
1352
1353 swarm_enabled_tests = (
1354 'base_unittests',
1355 'browser_tests',
1356 'interactive_ui_tests',
1357 'net_unittests',
1358 'unit_tests',
1359 )
1360
1361 for bot in builders_and_tests:
1362 if bot in swarm_enabled_builders:
1363 builders_and_tests[bot] = [x + '_swarm' if x in swarm_enabled_tests else x
1364 for x in builders_and_tests[bot]]
1365
1366 if bots:
1367 return [(bot, set(builders_and_tests[bot])) for bot in bots]
1368 else:
1369 return [(bot, set(tests)) for bot, tests in builders_and_tests.iteritems()]
1370
1371
[email protected]ca8d1982009-02-19 16:33:121372def CheckChangeOnCommit(input_api, output_api):
[email protected]fe5f57c52009-06-05 14:25:541373 results = []
[email protected]1f7b4172010-01-28 01:17:341374 results.extend(_CommonChecks(input_api, output_api))
[email protected]dd805fe2009-10-01 08:11:511375 # TODO(thestig) temporarily disabled, doesn't work in third_party/
1376 #results.extend(input_api.canned_checks.CheckSvnModifiedDirectories(
1377 # input_api, output_api, sources))
[email protected]fe5f57c52009-06-05 14:25:541378 # Make sure the tree is 'open'.
[email protected]806e98e2010-03-19 17:49:271379 results.extend(input_api.canned_checks.CheckTreeIsOpen(
[email protected]7f238152009-08-12 19:00:341380 input_api,
1381 output_api,
[email protected]2fdd1f362013-01-16 03:56:031382 json_url='http://chromium-status.appspot.com/current?format=json'))
[email protected]806e98e2010-03-19 17:49:271383 results.extend(input_api.canned_checks.CheckRietveldTryJobExecution(input_api,
[email protected]2fdd1f362013-01-16 03:56:031384 output_api, 'http://codereview.chromium.org',
[email protected]c1ba4c52012-03-09 14:23:281385 ('win_rel', 'linux_rel', 'mac_rel, win:compile'),
1386 '[email protected]'))
[email protected]806e98e2010-03-19 17:49:271387
[email protected]3e4eb112011-01-18 03:29:541388 results.extend(input_api.canned_checks.CheckChangeHasBugField(
1389 input_api, output_api))
[email protected]c4b47562011-12-05 23:39:411390 results.extend(input_api.canned_checks.CheckChangeHasDescription(
1391 input_api, output_api))
[email protected]b337cb5b2011-01-23 21:24:051392 results.extend(_CheckSubversionConfig(input_api, output_api))
[email protected]fe5f57c52009-06-05 14:25:541393 return results
[email protected]ca8d1982009-02-19 16:33:121394
1395
[email protected]5efb2a822011-09-27 23:06:131396def GetPreferredTrySlaves(project, change):
[email protected]4ce995ea2012-06-27 02:13:101397 files = change.LocalPaths()
1398
[email protected]751b05f2013-01-10 23:12:171399 if not files or all(re.search(r'[\\/]OWNERS$', f) for f in files):
[email protected]3019c902012-06-29 00:09:031400 return []
1401
[email protected]d668899a2012-09-06 18:16:591402 if all(re.search('\.(m|mm)$|(^|[/_])mac[/_.]', f) for f in files):
[email protected]38c6a512013-12-18 23:48:011403 return GetDefaultTryConfigs(['mac', 'mac_rel'])
[email protected]d668899a2012-09-06 18:16:591404 if all(re.search('(^|[/_])win[/_.]', f) for f in files):
[email protected]3630be892013-12-19 05:34:281405 return GetDefaultTryConfigs(['win', 'win_rel'])
[email protected]d668899a2012-09-06 18:16:591406 if all(re.search('(^|[/_])android[/_.]', f) for f in files):
[email protected]38c6a512013-12-18 23:48:011407 return GetDefaultTryConfigs([
1408 'android_aosp',
1409 'android_clang_dbg',
1410 'android_dbg',
1411 ])
[email protected]356aa542012-09-19 23:31:291412 if all(re.search('^native_client_sdk', f) for f in files):
[email protected]38c6a512013-12-18 23:48:011413 return GetDefaultTryConfigs([
1414 'linux_nacl_sdk',
1415 'mac_nacl_sdk',
1416 'win_nacl_sdk',
1417 ])
[email protected]de142152012-10-03 23:02:451418 if all(re.search('[/_]ios[/_.]', f) for f in files):
[email protected]38c6a512013-12-18 23:48:011419 return GetDefaultTryConfigs(['ios_rel_device', 'ios_dbg_simulator'])
[email protected]4ce995ea2012-06-27 02:13:101420
[email protected]38c6a512013-12-18 23:48:011421 trybots = GetDefaultTryConfigs([
[email protected]3e2f0402012-11-02 16:28:011422 'android_clang_dbg',
1423 'android_dbg',
1424 'ios_dbg_simulator',
1425 'ios_rel_device',
[email protected]95c989162012-11-29 05:58:251426 'linux_aura',
[email protected]38c6a512013-12-18 23:48:011427 'linux_asan',
[email protected]3e2f0402012-11-02 16:28:011428 'linux_chromeos',
[email protected]38c6a512013-12-18 23:48:011429 'linux_clang',
[email protected]3e2f0402012-11-02 16:28:011430 'linux_rel',
[email protected]38c6a512013-12-18 23:48:011431 'mac',
[email protected]3e2f0402012-11-02 16:28:011432 'mac_rel',
[email protected]38c6a512013-12-18 23:48:011433 'win',
[email protected]3e2f0402012-11-02 16:28:011434 'win_rel',
[email protected]38c6a512013-12-18 23:48:011435 'win_x64_rel',
1436 ])
[email protected]911753b2012-08-02 12:11:541437
1438 # Match things like path/aura/file.cc and path/file_aura.cc.
[email protected]95c989162012-11-29 05:58:251439 # Same for chromeos.
1440 if any(re.search('[/_](aura|chromeos)', f) for f in files):
[email protected]38c6a512013-12-18 23:48:011441 trybots.extend(GetDefaultTryConfigs([
1442 'linux_chromeos_asan', 'linux_chromeos_clang']))
[email protected]4ce995ea2012-06-27 02:13:101443
[email protected]e8df48f2013-09-30 20:07:541444 # If there are gyp changes to base, build, or chromeos, run a full cros build
1445 # in addition to the shorter linux_chromeos build. Changes to high level gyp
1446 # files have a much higher chance of breaking the cros build, which is
1447 # differnt from the linux_chromeos build that most chrome developers test
1448 # with.
1449 if any(re.search('^(base|build|chromeos).*\.gypi?$', f) for f in files):
[email protected]38c6a512013-12-18 23:48:011450 trybots.extend(GetDefaultTryConfigs(['cros_x86']))
[email protected]e8df48f2013-09-30 20:07:541451
[email protected]d95948ef2013-07-02 10:51:001452 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it
1453 # unless they're .gyp(i) files as changes to those files can break the gyp
1454 # step on that bot.
1455 if (not all(re.search('^chrome', f) for f in files) or
1456 any(re.search('\.gypi?$', f) for f in files)):
[email protected]38c6a512013-12-18 23:48:011457 trybots.extend(GetDefaultTryConfigs(['android_aosp']))
[email protected]d95948ef2013-07-02 10:51:001458
[email protected]4ce995ea2012-06-27 02:13:101459 return trybots