| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 master import master_config | 5 from master import master_config |
| 6 from master.factory import chromium_factory | 6 from master.factory import chromium_factory |
| 7 | 7 |
| 8 defaults = {} | 8 defaults = {} |
| 9 | 9 |
| 10 helper = master_config.Helper(defaults) | 10 helper = master_config.Helper(defaults) |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 factory_properties={ | 179 factory_properties={ |
| 180 'generate_gtest_json': True, | 180 'generate_gtest_json': True, |
| 181 'sharded_tests': sharded_tests, | 181 'sharded_tests': sharded_tests, |
| 182 })) | 182 })) |
| 183 | 183 |
| 184 # | 184 # |
| 185 # Linux aura bot | 185 # Linux aura bot |
| 186 # | 186 # |
| 187 | 187 |
| 188 linux_aura_tests = [ | 188 linux_aura_tests = [ |
| 189 'app_list_unittests', |
| 189 'aura', | 190 'aura', |
| 190 'base_unittests', | 191 'base_unittests', |
| 191 'browser_tests', | 192 'browser_tests', |
| 192 'cacheinvalidation_unittests', | 193 'cacheinvalidation_unittests', |
| 193 'compositor', | 194 'compositor', |
| 194 'content_browsertests', | 195 'content_browsertests', |
| 195 'content_unittests', | 196 'content_unittests', |
| 196 'crypto_unittests', | 197 'crypto_unittests', |
| 197 'device_unittests', | 198 'device_unittests', |
| 198 'googleurl', | 199 'googleurl', |
| 199 'gpu', | 200 'gpu', |
| 200 'interactive_ui_tests', | 201 'interactive_ui_tests', |
| 201 'ipc_tests', | 202 'ipc_tests', |
| 202 'jingle', | 203 'jingle', |
| 203 'media', | 204 'media', |
| 204 'net', | 205 'net', |
| 205 'ppapi_unittests', | 206 'ppapi_unittests', |
| 206 'printing', | 207 'printing', |
| 207 'remoting', | 208 'remoting', |
| 208 'sandbox_linux_unittests', | 209 'sandbox_linux_unittests', |
| 209 'ui_unittests', | 210 'ui_unittests', |
| 210 'unit_sql', | 211 'unit_sql', |
| 211 'unit_sync', | 212 'unit_sync', |
| 212 'unit_unit', | 213 'unit_unit', |
| 213 'views', | 214 'views', |
| 214 ] | 215 ] |
| 215 | 216 |
| 216 linux_aura_options = [ | 217 linux_aura_options = [ |
| 218 'app_list_unittests', |
| 217 'aura_builder', | 219 'aura_builder', |
| 218 'base_unittests', | 220 'base_unittests', |
| 219 'browser_tests', | 221 'browser_tests', |
| 220 'cacheinvalidation_unittests', | 222 'cacheinvalidation_unittests', |
| 221 'chrome', | 223 'chrome', |
| 222 'compositor_unittests', | 224 'compositor_unittests', |
| 223 'content_browsertests', | 225 'content_browsertests', |
| 224 'content_unittests', | 226 'content_unittests', |
| 225 'crypto_unittests', | 227 'crypto_unittests', |
| 226 'device_unittests', | 228 'device_unittests', |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 factory_properties={ | 454 factory_properties={ |
| 453 'gclient_env': { | 455 'gclient_env': { |
| 454 'GYP_GENERATORS':'ninja', | 456 'GYP_GENERATORS':'ninja', |
| 455 'GYP_DEFINES': | 457 'GYP_DEFINES': |
| 456 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' | 458 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' |
| 457 'test_isolation_mode=noop', | 459 'test_isolation_mode=noop', |
| 458 }})) | 460 }})) |
| 459 | 461 |
| 460 def Update(_config, _active_master, c): | 462 def Update(_config, _active_master, c): |
| 461 return helper.Update(c) | 463 return helper.Update(c) |
| OLD | NEW |