OLD | NEW |
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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 'BUILD_CONFIG': 'Debug', | 102 'BUILD_CONFIG': 'Debug', |
103 'TARGET_BITS': 64, | 103 'TARGET_BITS': 64, |
104 }, | 104 }, |
105 'bot_type': 'builder', | 105 'bot_type': 'builder', |
106 'testing': { | 106 'testing': { |
107 'platform': 'linux', | 107 'platform': 'linux', |
108 }, | 108 }, |
109 'enable_swarming': True, | 109 'enable_swarming': True, |
110 'use_isolate': True, | 110 'use_isolate': True, |
111 }, | 111 }, |
112 'Linux Tests (dbg)(1)': { | 112 'Linux Tests (dbg)': { |
113 'recipe_config': 'chromium', | 113 'recipe_config': 'chromium', |
114 'chromium_config_kwargs': { | 114 'chromium_config_kwargs': { |
115 'BUILD_CONFIG': 'Debug', | 115 'BUILD_CONFIG': 'Debug', |
116 'TARGET_BITS': 64, | 116 'TARGET_BITS': 64, |
117 }, | 117 }, |
118 'bot_type': 'tester', | 118 'bot_type': 'tester', |
119 'test_generators': [ | 119 'test_generators': [ |
120 steps.generate_gtest, | 120 steps.generate_gtest, |
121 ], | 121 ], |
122 'tests': [ | 122 'tests': [ |
| 123 steps.NaclIntegrationTest(), |
123 steps.TelemetryUnitTests(), | 124 steps.TelemetryUnitTests(), |
124 steps.TelemetryPerfUnitTests(), | 125 steps.TelemetryPerfUnitTests(), |
125 ], | 126 ], |
126 'parent_buildername': 'Linux Builder (dbg)', | 127 'parent_buildername': 'Linux Builder (dbg)', |
127 'testing': { | 128 'testing': { |
128 'platform': 'linux', | 129 'platform': 'linux', |
129 }, | 130 }, |
130 'enable_swarming': True, | 131 'enable_swarming': True, |
131 }, | 132 }, |
132 'Linux Tests (dbg)(2)': { | |
133 'recipe_config': 'chromium', | |
134 'chromium_config_kwargs': { | |
135 'BUILD_CONFIG': 'Debug', | |
136 'TARGET_BITS': 64, | |
137 }, | |
138 'bot_type': 'tester', | |
139 'test_generators': [ | |
140 steps.generate_gtest, | |
141 ], | |
142 'tests': [ | |
143 steps.NaclIntegrationTest(), | |
144 ], | |
145 'parent_buildername': 'Linux Builder (dbg)', | |
146 'testing': { | |
147 'platform': 'linux', | |
148 }, | |
149 'enable_swarming': True, | |
150 }, | |
151 | 133 |
152 'Linux Clang (dbg)': { | 134 'Linux Clang (dbg)': { |
153 'recipe_config': 'chromium_clang', | 135 'recipe_config': 'chromium_clang', |
154 'chromium_config_kwargs': { | 136 'chromium_config_kwargs': { |
155 'BUILD_CONFIG': 'Debug', | 137 'BUILD_CONFIG': 'Debug', |
156 'TARGET_BITS': 64, | 138 'TARGET_BITS': 64, |
157 }, | 139 }, |
158 'compile_targets': [ | 140 'compile_targets': [ |
159 'all', | 141 'all', |
160 ], | 142 ], |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 test_data='content:content/test/data/android/device_files', | 238 test_data='content:content/test/data/android/device_files', |
257 adb_install_apk=( | 239 adb_install_apk=( |
258 'ContentShell.apk', 'org.chromium.content_shell_apk')), | 240 'ContentShell.apk', 'org.chromium.content_shell_apk')), |
259 ], | 241 ], |
260 'testing': { | 242 'testing': { |
261 'platform': 'linux', | 243 'platform': 'linux', |
262 }, | 244 }, |
263 }, | 245 }, |
264 }, | 246 }, |
265 } | 247 } |
OLD | NEW |