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

Side by Side Diff: scripts/slave/recipes/chromium_trybot.py

Issue 129253002: Add Mojo unit tests. Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 6 years, 11 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 DEPS = [ 5 DEPS = [
6 'chromium', 6 'chromium',
7 'gclient', 7 'gclient',
8 'itertools', 8 'itertools',
9 'json', 9 'json',
10 'path', 10 'path',
(...skipping 15 matching lines...) Expand all
26 'cc_unittests', 26 'cc_unittests',
27 'chromedriver_unittests', 27 'chromedriver_unittests',
28 'components_unittests', 28 'components_unittests',
29 'content_unittests', 29 'content_unittests',
30 'crypto_unittests', 30 'crypto_unittests',
31 'google_apis_unittests', 31 'google_apis_unittests',
32 'gpu_unittests', 32 'gpu_unittests',
33 'ipc_tests', 33 'ipc_tests',
34 'jingle_unittests', 34 'jingle_unittests',
35 'media_unittests', 35 'media_unittests',
36 'mojo_common_unittests',
37 'mojo_public_unittests',
38 'mojo_shell_unittests',
39 'mojo_system_unittests',
36 'net_unittests', 40 'net_unittests',
37 'ppapi_unittests', 41 'ppapi_unittests',
38 'printing_unittests', 42 'printing_unittests',
39 'remoting_unittests', 43 'remoting_unittests',
40 'sql_unittests', 44 'sql_unittests',
41 'sync_unit_tests', 45 'sync_unit_tests',
42 'ui_unittests', 46 'ui_unittests',
43 'unit_tests', 47 'unit_tests',
44 48
45 # Large tests. Sort alphabetically. 49 # Large tests. Sort alphabetically.
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 api.json.output(None)) 369 api.json.output(None))
366 yield invalid_json_without_patch_test 370 yield invalid_json_without_patch_test
367 371
368 for step in ('gclient revert', 'gclient runhooks', 'compile'): 372 for step in ('gclient revert', 'gclient runhooks', 'compile'):
369 yield ( 373 yield (
370 api.test(step.replace(' ', '_') + '_failure') + 374 api.test(step.replace(' ', '_') + '_failure') +
371 props() + 375 props() +
372 api.platform.name('win') + 376 api.platform.name('win') +
373 api.step_data(step, retcode=1) 377 api.step_data(step, retcode=1)
374 ) 378 )
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