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

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: Follow review 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 17 matching lines...) Expand all
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 'test_generators': [ 33 'test_generators': [
34 steps.generate_gtest, 34 steps.generate_gtest,
35 ], 35 ],
36 'tests': [ 36 'tests': [
37 steps.MojoPythonTests(), 37 steps.MojoPythonTests(),
38 steps.MojoPythonBindingsTests(),
38 steps.TelemetryUnitTests(), 39 steps.TelemetryUnitTests(),
39 steps.TelemetryPerfUnitTests(), 40 steps.TelemetryPerfUnitTests(),
40 ], 41 ],
41 'parent_buildername': 'Linux Builder', 42 'parent_buildername': 'Linux Builder',
42 'testing': { 43 'testing': {
43 'platform': 'linux', 44 'platform': 'linux',
44 }, 45 },
45 }, 46 },
46 'Linux Builder (dbg)(32)': { 47 'Linux Builder (dbg)(32)': {
47 'recipe_config': 'chromium', 48 'recipe_config': 'chromium',
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 test_data='content:content/test/data/android/device_files', 243 test_data='content:content/test/data/android/device_files',
243 adb_install_apk=( 244 adb_install_apk=(
244 'ContentShell.apk', 'org.chromium.content_shell_apk')), 245 'ContentShell.apk', 'org.chromium.content_shell_apk')),
245 ], 246 ],
246 'testing': { 247 'testing': {
247 'platform': 'linux', 248 'platform': 'linux',
248 }, 249 },
249 }, 250 },
250 }, 251 },
251 } 252 }
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium/chromium_fyi.py ('k') | scripts/slave/recipe_modules/chromium/steps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698