Chromium Code Reviews| 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 366 'views', | 366 'views', |
| 367 ], | 367 ], |
| 368 project='all.sln;aura_builder', | 368 project='all.sln;aura_builder', |
| 369 factory_properties={'gclient_env': {'GYP_DEFINES': aura_gyp_defines}, | 369 factory_properties={'gclient_env': {'GYP_DEFINES': aura_gyp_defines}, |
| 370 'process_dumps': True, | 370 'process_dumps': True, |
| 371 'sharded_tests': sharded_tests, | 371 'sharded_tests': sharded_tests, |
| 372 'start_crash_handler': True, | 372 'start_crash_handler': True, |
| 373 'generate_gtest_json': True})) | 373 'generate_gtest_json': True})) |
| 374 # When the tests grow we'll need a separate tester. | 374 # When the tests grow we'll need a separate tester. |
| 375 | 375 |
| 376 # | |
| 377 # Dbg Win8 Ash | |
| 378 # | |
| 379 aura_gyp_defines = ('use_aura=1 win_debug_disable_iterator_debugging=1') | |
|
Peter Mayo
2012/12/17 20:20:22
ash_gyp_defines = ... use_ash=1 ...
Peter Mayo
2012/12/17 20:38:17
Remove this assignment, it is redundant.
Given th
scottmg
2012/12/17 20:53:08
Done.
| |
| 380 B('Win8 Ash', 'dbg_win8ash', 'compile|testers|windows', 'win_dbg', | |
| 381 notify_on_missing=True) | |
| 382 F('dbg_win8ash', win().ChromiumFactory( | |
| 383 target='Debug', | |
| 384 slave_type='BuilderTester', | |
| 385 tests=[ | |
| 386 'ash_unittests', | |
| 387 'aura', | |
| 388 'compositor', | |
| 389 'views', | |
| 390 ], | |
| 391 project='all.sln;aura_builder', | |
| 392 factory_properties={'gclient_env': {'GYP_DEFINES': aura_gyp_defines}, | |
| 393 'process_dumps': True, | |
| 394 'sharded_tests': sharded_tests, | |
| 395 'start_crash_handler': True, | |
| 396 'generate_gtest_json': True})) | |
|
Peter Mayo
2012/12/17 20:38:17
Does this actually become ash by virtue of running
scottmg
2012/12/17 20:53:08
Yes. (Sort of. Or at least, as close as we can get
| |
| 397 | |
| 376 def Update(config, active_master, c): | 398 def Update(config, active_master, c): |
| 377 return helper.Update(c) | 399 return helper.Update(c) |
| OLD | NEW |