| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 from master import master_config | |
| 6 from master.factory import chromium_factory | |
| 7 | |
| 8 defaults = {} | |
| 9 | |
| 10 helper = master_config.Helper(defaults) | |
| 11 B = helper.Builder | |
| 12 F = helper.Factory | |
| 13 | |
| 14 def win(): | |
| 15 return chromium_factory.ChromiumFactory('src/build', 'win32') | |
| 16 | |
| 17 defaults['category'] = 'gpu' | |
| 18 | |
| 19 ################################################################################ | |
| 20 ## Release | |
| 21 ################################################################################ | |
| 22 | |
| 23 # | |
| 24 # GPU Win Release | |
| 25 # | |
| 26 B('GPU Win7 (NVIDIA)', 'f_gpu_win_rel', scheduler='global_scheduler') | |
| 27 F('f_gpu_win_rel', win().ChromiumFactory( | |
| 28 target='Release', | |
| 29 slave_type='BuilderTester', | |
| 30 tests=[ | |
| 31 'content_gl_tests', | |
| 32 'gles2_conform_test', | |
| 33 'gl_tests', | |
| 34 'gpu_content_tests', | |
| 35 'gpu_frame_rate', | |
| 36 'gpu_throughput', | |
| 37 'tab_capture_performance', | |
| 38 ], | |
| 39 project='all.sln;chromium_gpu_builder', | |
| 40 factory_properties={ | |
| 41 'generate_gtest_json': True, | |
| 42 'start_crash_handler': True, | |
| 43 'perf_id': 'gpu-webkit-win7-nvidia', | |
| 44 'show_perf_results': True, | |
| 45 'gclient_env': { | |
| 46 'GYP_DEFINES': 'fastbuild=1 internal_gles2_conform_tests=1', | |
| 47 }, | |
| 48 'blink_config': 'blink', | |
| 49 })) | |
| 50 | |
| 51 ################################################################################ | |
| 52 ## Debug | |
| 53 ################################################################################ | |
| 54 | |
| 55 | |
| 56 # | |
| 57 # GPU Win Debug | |
| 58 # | |
| 59 B('GPU Win7 (dbg) (NVIDIA)', 'f_gpu_win_dbg', scheduler='global_scheduler') | |
| 60 F('f_gpu_win_dbg', win().ChromiumFactory( | |
| 61 target='Debug', | |
| 62 slave_type='BuilderTester', | |
| 63 tests=[ | |
| 64 'content_gl_tests', | |
| 65 'gles2_conform_test', | |
| 66 'gl_tests', | |
| 67 'gpu_content_tests', | |
| 68 ], | |
| 69 project='all.sln;chromium_gpu_debug_builder', | |
| 70 factory_properties={ | |
| 71 'generate_gtest_json': True, | |
| 72 'start_crash_handler': True, | |
| 73 'gclient_env': { | |
| 74 'GYP_DEFINES': 'fastbuild=1 internal_gles2_conform_tests=1', | |
| 75 }, | |
| 76 'blink_config': 'blink', | |
| 77 })) | |
| 78 | |
| 79 | |
| 80 def Update(_config, _active_master, c): | |
| 81 return helper.Update(c) | |
| OLD | NEW |