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

Side by Side Diff: build/android/PRESUBMIT.py

Issue 341823003: Add depfile support to android build scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « base/android/jni_generator/jni_generator.py ('k') | build/android/gn/zip.py » ('j') | 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) 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 """Presubmit script for android buildbot. 5 """Presubmit script for android buildbot.
6 6
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
8 details on the presubmit API built into gcl. 8 details on the presubmit API built into gcl.
9 """ 9 """
10 10
(...skipping 20 matching lines...) Expand all
31 def CommonChecks(input_api, output_api): 31 def CommonChecks(input_api, output_api):
32 output = [] 32 output = []
33 33
34 def J(*dirs): 34 def J(*dirs):
35 """Returns a path relative to presubmit directory.""" 35 """Returns a path relative to presubmit directory."""
36 return input_api.os_path.join(input_api.PresubmitLocalPath(), *dirs) 36 return input_api.os_path.join(input_api.PresubmitLocalPath(), *dirs)
37 37
38 output.extend(input_api.canned_checks.RunPylint( 38 output.extend(input_api.canned_checks.RunPylint(
39 input_api, 39 input_api,
40 output_api, 40 output_api,
41 black_list=[r'pylib/symbols/.*\.py$', r'gyp/.*\.py$'], 41 black_list=[r'pylib/symbols/.*\.py$', r'gyp/.*\.py$', r'gn/.*\.py'],
42 extra_paths_list=[ 42 extra_paths_list=[
43 J(), J('..', '..', 'third_party', 'android_testrunner'), 43 J(), J('..', '..', 'third_party', 'android_testrunner'),
44 J('buildbot')])) 44 J('buildbot')]))
45 output.extend(input_api.canned_checks.RunPylint( 45 output.extend(input_api.canned_checks.RunPylint(
46 input_api, 46 input_api,
47 output_api, 47 output_api,
48 white_list=[r'gyp/.*\.py$'], 48 white_list=[r'gyp/.*\.py$', r'gn/.*\.py'],
49 extra_paths_list=[J('gyp')])) 49 extra_paths_list=[J('gyp'), J('gn')]))
50 50
51 output.extend(input_api.canned_checks.RunUnitTestsInDirectory( 51 output.extend(input_api.canned_checks.RunUnitTestsInDirectory(
52 input_api, output_api, J('buildbot', 'tests'))) 52 input_api, output_api, J('buildbot', 'tests')))
53 output.extend(_CheckDeletionsOnlyFiles(input_api, output_api)) 53 output.extend(_CheckDeletionsOnlyFiles(input_api, output_api))
54 return output 54 return output
55 55
56 56
57 def CheckChangeOnUpload(input_api, output_api): 57 def CheckChangeOnUpload(input_api, output_api):
58 return CommonChecks(input_api, output_api) 58 return CommonChecks(input_api, output_api)
59 59
60 60
61 def CheckChangeOnCommit(input_api, output_api): 61 def CheckChangeOnCommit(input_api, output_api):
62 return CommonChecks(input_api, output_api) 62 return CommonChecks(input_api, output_api)
OLDNEW
« no previous file with comments | « base/android/jni_generator/jni_generator.py ('k') | build/android/gn/zip.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698