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

Side by Side Diff: PRESUBMIT.py

Issue 2695963003: Use logdog butler subcommand to run tests. (Closed)
Patch Set: change the missed revision of logdog 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') | build/config/android/internal_rules.gni » ('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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 'OS_OPENBSD', 332 'OS_OPENBSD',
333 'OS_POSIX', 333 'OS_POSIX',
334 'OS_QNX', 334 'OS_QNX',
335 'OS_SOLARIS', 335 'OS_SOLARIS',
336 'OS_WIN', 336 'OS_WIN',
337 ) 337 )
338 338
339 339
340 _ANDROID_SPECIFIC_PYDEPS_FILES = [ 340 _ANDROID_SPECIFIC_PYDEPS_FILES = [
341 'build/android/test_runner.pydeps', 341 'build/android/test_runner.pydeps',
342 'build/android/test_wrapper/logdog_wrapper.pydeps',
342 'net/tools/testserver/testserver.pydeps', 343 'net/tools/testserver/testserver.pydeps',
343 ] 344 ]
344 345
345 346
346 _GENERIC_PYDEPS_FILES = [ 347 _GENERIC_PYDEPS_FILES = [
347 ] 348 ]
348 349
349 350
350 _ALL_PYDEPS_FILES = _ANDROID_SPECIFIC_PYDEPS_FILES + _GENERIC_PYDEPS_FILES 351 _ALL_PYDEPS_FILES = _ANDROID_SPECIFIC_PYDEPS_FILES + _GENERIC_PYDEPS_FILES
351 352
(...skipping 2021 matching lines...) Expand 10 before | Expand all | Expand 10 after
2373 output_api, 2374 output_api,
2374 json_url='http://chromium-status.appspot.com/current?format=json')) 2375 json_url='http://chromium-status.appspot.com/current?format=json'))
2375 2376
2376 results.extend( 2377 results.extend(
2377 input_api.canned_checks.CheckPatchFormatted(input_api, output_api)) 2378 input_api.canned_checks.CheckPatchFormatted(input_api, output_api))
2378 results.extend(input_api.canned_checks.CheckChangeHasBugField( 2379 results.extend(input_api.canned_checks.CheckChangeHasBugField(
2379 input_api, output_api)) 2380 input_api, output_api))
2380 results.extend(input_api.canned_checks.CheckChangeHasDescription( 2381 results.extend(input_api.canned_checks.CheckChangeHasDescription(
2381 input_api, output_api)) 2382 input_api, output_api))
2382 return results 2383 return results
OLDNEW
« no previous file with comments | « no previous file | build/android/BUILD.gn » ('j') | build/config/android/internal_rules.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698