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

Side by Side Diff: PRESUBMIT.py

Issue 2753993002: (Reland) Use logdog butler subcommand to run tests. (Closed)
Patch Set: address John's comments on logdog filter Created 3 years, 9 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 | build/android/BUILD.gn » ('j') | tools/mb/mb.py » ('J')
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 depot_tools. 8 for more details about the presubmit API built into depot_tools.
9 """ 9 """
10 10
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 'OS_OPENBSD', 333 'OS_OPENBSD',
334 'OS_POSIX', 334 'OS_POSIX',
335 'OS_QNX', 335 'OS_QNX',
336 'OS_SOLARIS', 336 'OS_SOLARIS',
337 'OS_WIN', 337 'OS_WIN',
338 ) 338 )
339 339
340 340
341 _ANDROID_SPECIFIC_PYDEPS_FILES = [ 341 _ANDROID_SPECIFIC_PYDEPS_FILES = [
342 'build/android/test_runner.pydeps', 342 'build/android/test_runner.pydeps',
343 'build/android/test_wrapper/logdog_wrapper.pydeps',
343 'net/tools/testserver/testserver.pydeps', 344 'net/tools/testserver/testserver.pydeps',
344 ] 345 ]
345 346
346 347
347 _GENERIC_PYDEPS_FILES = [ 348 _GENERIC_PYDEPS_FILES = [
348 ] 349 ]
349 350
350 351
351 _ALL_PYDEPS_FILES = _ANDROID_SPECIFIC_PYDEPS_FILES + _GENERIC_PYDEPS_FILES 352 _ALL_PYDEPS_FILES = _ANDROID_SPECIFIC_PYDEPS_FILES + _GENERIC_PYDEPS_FILES
352 353
(...skipping 2021 matching lines...) Expand 10 before | Expand all | Expand 10 after
2374 output_api, 2375 output_api,
2375 json_url='http://chromium-status.appspot.com/current?format=json')) 2376 json_url='http://chromium-status.appspot.com/current?format=json'))
2376 2377
2377 results.extend( 2378 results.extend(
2378 input_api.canned_checks.CheckPatchFormatted(input_api, output_api)) 2379 input_api.canned_checks.CheckPatchFormatted(input_api, output_api))
2379 results.extend(input_api.canned_checks.CheckChangeHasBugField( 2380 results.extend(input_api.canned_checks.CheckChangeHasBugField(
2380 input_api, output_api)) 2381 input_api, output_api))
2381 results.extend(input_api.canned_checks.CheckChangeHasDescription( 2382 results.extend(input_api.canned_checks.CheckChangeHasDescription(
2382 input_api, output_api)) 2383 input_api, output_api))
2383 return results 2384 return results
OLDNEW
« no previous file with comments | « no previous file | build/android/BUILD.gn » ('j') | tools/mb/mb.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698