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

Side by Side Diff: scripts/slave/recipes/android/tester.py

Issue 792043006: android: Add entry for 'skia_unittests' to UNIT_TESTS list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: REBASE & retrain it Created 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'adb', 6 'adb',
7 'bot_update', 7 'bot_update',
8 'chromium', 8 'chromium',
9 'chromium_android', 9 'chromium_android',
10 'filter', 10 'filter',
(...skipping 20 matching lines...) Expand all
31 ['components_unittests', None], 31 ['components_unittests', None],
32 ['content_browsertests', None], 32 ['content_browsertests', None],
33 ['content_unittests', None], 33 ['content_unittests', None],
34 ['events_unittests', None], 34 ['events_unittests', None],
35 ['gl_tests', None], 35 ['gl_tests', None],
36 ['gpu_unittests', None], 36 ['gpu_unittests', None],
37 ['ipc_tests', None], 37 ['ipc_tests', None],
38 ['media_unittests', None], 38 ['media_unittests', None],
39 ['net_unittests', None], 39 ['net_unittests', None],
40 ['sandbox_linux_unittests', None], 40 ['sandbox_linux_unittests', None],
41 ['skia_unittests', None],
41 ['sql_unittests', None], 42 ['sql_unittests', None],
42 ['sync_unit_tests', None], 43 ['sync_unit_tests', None],
43 ['ui_android_unittests', None], 44 ['ui_android_unittests', None],
44 ['ui_base_unittests', None], 45 ['ui_base_unittests', None],
45 ['ui_touch_selection_unittests', None], 46 ['ui_touch_selection_unittests', None],
46 ['unit_tests', None], 47 ['unit_tests', None],
47 ] 48 ]
48 49
49 JAVA_UNIT_TESTS = [ 50 JAVA_UNIT_TESTS = [
50 'junit_unit_tests', 51 'junit_unit_tests',
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 yield ( 285 yield (
285 api.test('no_compile_because_of_analyze') + 286 api.test('no_compile_because_of_analyze') +
286 api.properties.generic( 287 api.properties.generic(
287 mastername='tryserver.chromium.linux', 288 mastername='tryserver.chromium.linux',
288 buildername='android_dbg_tests_recipe', 289 buildername='android_dbg_tests_recipe',
289 slavename='slavename') + 290 slavename='slavename') +
290 api.override_step_data( 291 api.override_step_data(
291 'analyze', 292 'analyze',
292 api.json.output({'status': 'No compile necessary'})) 293 api.json.output({'status': 'No compile necessary'}))
293 ) 294 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698