| 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 # Sets up all the builders we want this buildbot master to run. | 5 # Sets up all the builders we want this buildbot master to run. |
| 6 | 6 |
| 7 from skia_master_scripts import utils | 7 from skia_master_scripts import utils |
| 8 from skia_master_scripts import android_factory | 8 from skia_master_scripts import android_factory |
| 9 from skia_master_scripts import factory as skia_factory | 9 from skia_master_scripts import factory as skia_factory |
| 10 from skia_master_scripts import android_factory | 10 from skia_master_scripts import android_factory |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 ########## LIST ALL PRIVATELY VISIBLE BUILDERS HERE ########## | 44 ########## LIST ALL PRIVATELY VISIBLE BUILDERS HERE ########## |
| 45 utils.MakeBuilderSet( | 45 utils.MakeBuilderSet( |
| 46 helper=helper, | 46 helper=helper, |
| 47 factory_type=android_factory.AndroidFactory, | 47 factory_type=android_factory.AndroidFactory, |
| 48 scheduler='skia_rel', | 48 scheduler='skia_rel', |
| 49 builder_base_name='Skia_Private_Builder_%s_001', | 49 builder_base_name='Skia_Private_Builder_%s_001', |
| 50 device='nexus_s', | 50 device='nexus_s', |
| 51 do_upload_results=False, | 51 do_upload_results=False, |
| 52 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 52 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
| 53 environment_variables={'GYP_DEFINES': 'skia_scalar=float'}, | 53 environment_variables={'GYP_DEFINES': 'skia_scalar=float'}, |
| 54 gm_image_subdir=None, | |
| 55 perf_output_basedir=perf_output_basedir_linux) | 54 perf_output_basedir=perf_output_basedir_linux) |
| 56 | 55 |
| 57 utils.MakeBuilderSet( | 56 utils.MakeBuilderSet( |
| 58 helper=helper, | 57 helper=helper, |
| 59 factory_type=android_factory.AndroidFactory, | 58 factory_type=android_factory.AndroidFactory, |
| 60 scheduler='skia_rel', | 59 scheduler='skia_rel', |
| 61 builder_base_name='Skia_Private_Builder_%s_002', | 60 builder_base_name='Skia_Private_Builder_%s_002', |
| 62 device='nexus_s', | 61 device='nexus_s', |
| 63 do_upload_results=False, | 62 do_upload_results=False, |
| 64 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 63 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
| 65 environment_variables={'GYP_DEFINES': 'skia_scalar=float'}, | 64 environment_variables={'GYP_DEFINES': 'skia_scalar=float'}, |
| 66 gm_image_subdir=None, | |
| 67 perf_output_basedir=perf_output_basedir_linux) | 65 perf_output_basedir=perf_output_basedir_linux) |
| 68 | 66 |
| 69 utils.MakeBuilderSet( | 67 utils.MakeBuilderSet( |
| 70 helper=helper, | 68 helper=helper, |
| 71 factory_type=android_factory.AndroidFactory, | 69 factory_type=android_factory.AndroidFactory, |
| 72 scheduler='skia_rel', | 70 scheduler='skia_rel', |
| 73 builder_base_name='Skia_Private_Builder_%s_003', | 71 builder_base_name='Skia_Private_Builder_%s_003', |
| 74 device='nexus_s', | 72 device='nexus_s', |
| 75 do_upload_results=False, | 73 do_upload_results=False, |
| 76 target_platform=skia_factory.TARGET_PLATFORM_LINUX, | 74 target_platform=skia_factory.TARGET_PLATFORM_LINUX, |
| 77 environment_variables={'GYP_DEFINES': 'skia_scalar=float'}, | 75 environment_variables={'GYP_DEFINES': 'skia_scalar=float'}, |
| 78 gm_image_subdir=None, | |
| 79 perf_output_basedir=perf_output_basedir_linux) | 76 perf_output_basedir=perf_output_basedir_linux) |
| 80 return helper.Update(c) | 77 return helper.Update(c) |
| 81 | |
| OLD | NEW |