OLD | NEW |
| (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 } | |
OLD | NEW |