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

Side by Side Diff: PRESUBMIT.py

Issue 578423002: Added PRESUBMIT check running gclient VERIFY. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed redundant comment. Created 6 years, 3 months 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 Chromium. 5 """Top-level presubmit script for Chromium.
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
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 input_api.AffectedFiles()): 389 input_api.AffectedFiles()):
390 return [output_api.PresubmitError( 390 return [output_api.PresubmitError(
391 'Never commit changes to .DEPS.git. This file is maintained by an\n' 391 'Never commit changes to .DEPS.git. This file is maintained by an\n'
392 'automated system based on what\'s in DEPS and your changes will be\n' 392 'automated system based on what\'s in DEPS and your changes will be\n'
393 'overwritten.\n' 393 'overwritten.\n'
394 'See https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-th e-code#Rolling_DEPS\n' 394 'See https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-th e-code#Rolling_DEPS\n'
395 'for more information')] 395 'for more information')]
396 return [] 396 return []
397 397
398 398
399 def _CheckValidHostsInDEPS(input_api, output_api):
400 """Checks that DEPS file deps are from allowed_hosts."""
401 # Run only if DEPS file has been modified to annoy fewer bystanders.
402 if all(f.LocalPath() != 'DEPS' for f in input_api.AffectedFiles()):
403 return []
404 # Outsource work to gclient verify
405 try:
406 input_api.subprocess.check_output(['gclient', 'verify'])
407 return []
408 except input_api.subprocess.CalledProcessError, error:
409 return [output_api.PresubmitError(
410 'DEPS file must have only git dependencies.',
411 long_text=error.output)]
412
413
399 def _CheckNoBannedFunctions(input_api, output_api): 414 def _CheckNoBannedFunctions(input_api, output_api):
400 """Make sure that banned functions are not used.""" 415 """Make sure that banned functions are not used."""
401 warnings = [] 416 warnings = []
402 errors = [] 417 errors = []
403 418
404 file_filter = lambda f: f.LocalPath().endswith(('.mm', '.m', '.h')) 419 file_filter = lambda f: f.LocalPath().endswith(('.mm', '.m', '.h'))
405 for f in input_api.AffectedFiles(file_filter=file_filter): 420 for f in input_api.AffectedFiles(file_filter=file_filter):
406 for line_num, line in f.ChangedContents(): 421 for line_num, line in f.ChangedContents():
407 for func_name, message, error in _BANNED_OBJC_FUNCTIONS: 422 for func_name, message, error in _BANNED_OBJC_FUNCTIONS:
408 matched = False 423 matched = False
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after
1399 if problems: 1414 if problems:
1400 return [output_api.PresubmitPromptWarning( 1415 return [output_api.PresubmitPromptWarning(
1401 _IPC_ENUM_TRAITS_DEPRECATED, problems)] 1416 _IPC_ENUM_TRAITS_DEPRECATED, problems)]
1402 else: 1417 else:
1403 return [] 1418 return []
1404 1419
1405 1420
1406 def CheckChangeOnUpload(input_api, output_api): 1421 def CheckChangeOnUpload(input_api, output_api):
1407 results = [] 1422 results = []
1408 results.extend(_CommonChecks(input_api, output_api)) 1423 results.extend(_CommonChecks(input_api, output_api))
1424 results.extend(_CheckValidHostsInDEPS(input_api, output_api))
1409 results.extend(_CheckJavaStyle(input_api, output_api)) 1425 results.extend(_CheckJavaStyle(input_api, output_api))
1410 return results 1426 return results
1411 1427
1412 1428
1413 def GetTryServerMasterForBot(bot): 1429 def GetTryServerMasterForBot(bot):
1414 """Returns the Try Server master for the given bot. 1430 """Returns the Try Server master for the given bot.
1415 1431
1416 It tries to guess the master from the bot name, but may still fail 1432 It tries to guess the master from the bot name, but may still fail
1417 and return None. There is no longer a default master. 1433 and return None. There is no longer a default master.
1418 """ 1434 """
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
1621 builders.extend(['cros_x86']) 1637 builders.extend(['cros_x86'])
1622 1638
1623 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it 1639 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it
1624 # unless they're .gyp(i) files as changes to those files can break the gyp 1640 # unless they're .gyp(i) files as changes to those files can break the gyp
1625 # step on that bot. 1641 # step on that bot.
1626 if (not all(re.search('^chrome', f) for f in files) or 1642 if (not all(re.search('^chrome', f) for f in files) or
1627 any(re.search('\.gypi?$', f) for f in files)): 1643 any(re.search('\.gypi?$', f) for f in files)):
1628 builders.extend(['android_aosp']) 1644 builders.extend(['android_aosp'])
1629 1645
1630 return GetDefaultTryConfigs(builders) 1646 return GetDefaultTryConfigs(builders)
OLDNEW
« 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