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

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

Issue 1737843003: Use regular chromium recipes for Chromium Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 9 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 | « masters/master.chromium.mojo/builders.pyl ('k') | scripts/slave/recipes/chromium_mojo.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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', 'ninja_confirm_noop'],
12 'gclient_config': 'chromium',
13 'gclient_apply_config': ['android'],
14 'chromium_config_kwargs': {
15 'BUILD_CONFIG': 'Release',
16 'TARGET_PLATFORM': 'android',
17 'TARGET_ARCH': 'arm',
18 # TODO(msw): Leave default? 'TARGET_BITS': 32,
Dirk Pranke 2016/02/26 00:15:54 uncomment.
msw 2016/02/26 01:38:01 Done.
19 },
20
21 # TODO(msw): Is any of the following necessary?
22 # See 'Android GN Builder (dbg)' and 'Android GN'
23
24 # 'android_config': 'main_builder_mb',
Dirk Pranke 2016/02/26 00:15:54 not sure about this one; uncomment or ask stip@, m
msw 2016/02/26 01:38:01 Done.
25
26 # 'test_generators': [
27 # steps.generate_gtest,
28 # steps.generate_instrumentation_test,
29 # steps.generate_isolated_script,
30 # steps.generate_script,
31 # ],
Dirk Pranke 2016/02/26 00:15:54 you need this block.
msw 2016/02/26 01:38:01 Done.
32
33 # 'tests': [
34 # steps.AndroidInstrumentationTest('MojoTest'),
35 # steps.GTestTest(
36 # 'breakpad_unittests',
37 # override_compile_targets=['breakpad_unittests_deps'],
38 # android_isolate_path='breakpad/breakpad_unittests.isolate'),
39 # steps.GTestTest(
40 # 'sandbox_linux_unittests',
41 # override_compile_targets=['sandbox_linux_unittests_deps']),
42 # steps.AndroidJunitTest('base_junit_tests'),
43 # ],
Dirk Pranke 2016/02/26 00:15:54 don't need this.
msw 2016/02/26 01:38:01 Done.
44
45 # 'bot_type': 'builder',
Dirk Pranke 2016/02/26 00:15:54 this should be 'builder_tester', and you need it.
msw 2016/02/26 01:38:01 Done.
46
47 # 'testing': {
48 # 'platform': 'linux',
49 # },
Dirk Pranke 2016/02/26 00:15:54 uncomment; needed.
msw 2016/02/26 01:38:01 Done.
50 },
51 'Chromium Mojo Linux': {
52 'chromium_config': 'chromium',
53 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
54 'gclient_config': 'chromium',
55 'chromium_config_kwargs': {
56 'BUILD_CONFIG': 'Release',
57 # TODO(msw): Leave default? 'TARGET_PLATFORM': 'linux',
58 # TODO(msw): Leave default? 'TARGET_BITS': 64,
59 },
60
61 # TODO(msw): Is any of the following necessary?
62 # See 'Linux Tests' and 'Linux Builder (dbg)'
63
64 # 'bot_type': 'builder',
65
66 # 'test_generators': [
67 # steps.generate_gtest,
68 # steps.generate_script,
69 # steps.generate_isolated_script,
70 # ],
71
72 # 'testing': {
73 # 'platform': 'linux',
74 # },
75 },
76 'Chromium Mojo Windows': {
77 'chromium_config': 'chromium',
78 'chromium_apply_config': ['mb', 'ninja_confirm_noop'],
79 'gclient_config': 'chromium',
80 'chromium_config_kwargs': {
81 'BUILD_CONFIG': 'Release',
82 # TODO(msw): Leave default? 'TARGET_PLATFORM': 'win',
83 # TODO(msw): Leave default? 'TARGET_BITS': 32,
84 },
85
86 # TODO(msw): Is any of the following necessary?
87 # See 'Win8 GN (dbg)' and 'Win7 Tests (1)'
88
89 # 'bot_type': 'builder',
90
91 # 'test_generators': [
92 # steps.generate_gtest,
93 # steps.generate_script,
94 # steps.generate_isolated_script,
95 # ],
96
97 # 'testing': {
98 # 'platform': 'win',
99 # },
100 },
101 },
102 }
OLDNEW
« no previous file with comments | « masters/master.chromium.mojo/builders.pyl ('k') | scripts/slave/recipes/chromium_mojo.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698