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

Side by Side Diff: scripts/slave/recipe_modules/chromium/chromium_linux.py

Issue 518663003: Add mojo python bindings tests to the waterfalls. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase Created 6 years, 3 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
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 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-linux-archive', 9 'build_gs_bucket': 'chromium-linux-archive',
10 }, 10 },
(...skipping 15 matching lines...) Expand all
26 'Linux Tests': { 26 'Linux Tests': {
27 'recipe_config': 'chromium', 27 'recipe_config': 'chromium',
28 'chromium_config_kwargs': { 28 'chromium_config_kwargs': {
29 'BUILD_CONFIG': 'Release', 29 'BUILD_CONFIG': 'Release',
30 'TARGET_BITS': 64, 30 'TARGET_BITS': 64,
31 }, 31 },
32 'bot_type': 'tester', 32 'bot_type': 'tester',
33 'tests': [ 33 'tests': [
34 steps.DynamicGTestTests('Linux Tests'), 34 steps.DynamicGTestTests('Linux Tests'),
35 steps.MojoPythonTests(), 35 steps.MojoPythonTests(),
36 steps.MojoPythonBindingsTests(),
36 steps.TelemetryUnitTests(), 37 steps.TelemetryUnitTests(),
37 steps.TelemetryPerfUnitTests(), 38 steps.TelemetryPerfUnitTests(),
38 ], 39 ],
39 'parent_buildername': 'Linux Builder', 40 'parent_buildername': 'Linux Builder',
40 'testing': { 41 'testing': {
41 'platform': 'linux', 42 'platform': 'linux',
42 }, 43 },
43 }, 44 },
44 'Linux Builder (dbg)(32)': { 45 'Linux Builder (dbg)(32)': {
45 'recipe_config': 'chromium', 46 'recipe_config': 'chromium',
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 test_data='content:content/test/data/android/device_files', 241 test_data='content:content/test/data/android/device_files',
241 adb_install_apk=( 242 adb_install_apk=(
242 'ContentShell.apk', 'org.chromium.content_shell_apk')), 243 'ContentShell.apk', 'org.chromium.content_shell_apk')),
243 ], 244 ],
244 'testing': { 245 'testing': {
245 'platform': 'linux', 246 'platform': 'linux',
246 }, 247 },
247 }, 248 },
248 }, 249 },
249 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698