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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_mojo.py

Issue 2112743002: Move Mojo bots to chromium_fyi; remove mojo master. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Add 'use_isolate': True and 'enable_swarming': True. Created 4 years, 5 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
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from . import steps
6
7 SPEC = {
8 'builders': {
9 'Chromium Mojo Android': {
10 'chromium_config': 'android',
11 'chromium_apply_config': ['mb'],
12 'gclient_config': 'chromium',
13 'gclient_apply_config': ['android'],
14 'android_config': 'main_builder',
15 'chromium_config_kwargs': {
16 'BUILD_CONFIG': 'Release',
17 'TARGET_PLATFORM': 'android',
18 'TARGET_ARCH': 'arm',
19 'TARGET_BITS': 32,
20 },
21 'test_generators': [
22 steps.generate_gtest,
23 steps.generate_instrumentation_test,
24 steps.generate_isolated_script,
25 steps.generate_script,
26 ],
27 'bot_type': 'builder_tester',
28 'testing': {
29 'platform': 'linux',
30 },
31 },
32 'Chromium Mojo Linux': {
33 'chromium_config': 'chromium',
34 'chromium_apply_config': ['mb'],
35 'gclient_config': 'chromium',
36 'chromium_config_kwargs': {
37 'BUILD_CONFIG': 'Release',
38 'TARGET_PLATFORM': 'linux',
39 'TARGET_BITS': 64,
40 },
41 'bot_type': 'builder_tester',
42 'test_generators': [
43 steps.generate_gtest,
44 steps.generate_script,
45 steps.generate_isolated_script,
46 ],
47 'testing': {
48 'platform': 'linux',
49 },
50 },
51 'Chromium Mojo Windows': {
52 'chromium_config': 'chromium',
53 'chromium_apply_config': ['mb'],
54 'gclient_config': 'chromium',
55 'chromium_config_kwargs': {
56 'BUILD_CONFIG': 'Release',
57 'TARGET_PLATFORM': 'win',
58 'TARGET_BITS': 32,
59 },
60 'bot_type': 'builder_tester',
61 'test_generators': [
62 steps.generate_gtest,
63 steps.generate_script,
64 steps.generate_isolated_script,
65 ],
66 'testing': {
67 'platform': 'win',
68 },
69 },
70 },
71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698