Chromium Code Reviews| 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 | 5 |
| 6 from . import chromium_perf | 6 from . import chromium_perf |
| 7 from . import steps | 7 from . import steps |
| 8 | 8 |
| 9 | 9 |
| 10 SPEC = { | 10 SPEC = { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 50 'mac_10_10_perf_bisect': | 50 'mac_10_10_perf_bisect': |
| 51 chromium_perf.SPEC['builders']['Mac Builder'], | 51 chromium_perf.SPEC['builders']['Mac Builder'], |
| 52 'mac_retina_perf_bisect': | 52 'mac_retina_perf_bisect': |
| 53 chromium_perf.SPEC['builders']['Mac Builder'], | 53 chromium_perf.SPEC['builders']['Mac Builder'], |
| 54 'mac_hdd_perf_bisect': | 54 'mac_hdd_perf_bisect': |
| 55 chromium_perf.SPEC['builders']['Mac Builder'], | 55 chromium_perf.SPEC['builders']['Mac Builder'], |
| 56 'mac_retina_perf_cq': | 56 'mac_retina_perf_cq': |
| 57 chromium_perf.SPEC['builders']['Mac Builder'], | 57 chromium_perf.SPEC['builders']['Mac Builder'], |
| 58 'mac_fyi_perf_bisect': | 58 'mac_fyi_perf_bisect': |
| 59 chromium_perf.SPEC['builders']['Mac Builder'], | 59 chromium_perf.SPEC['builders']['Mac Builder'], |
| 60 'linux_perf_tester':{ | |
| 61 'chromium_config': 'chromium_official', | |
| 62 'gclient_config': 'chromium', | |
| 63 'gclient_apply_config': ['chrome_internal'], | |
| 64 'parent_buildername': 'Linux Builder', | |
| 65 'chromium_config_kwargs': { | |
| 66 'BUILD_CONFIG': 'Release', | |
| 67 'TARGET_BITS': 64, | |
| 68 }, | |
| 69 'bot_type': 'tester', | |
| 70 'compile_targets': [ | |
| 71 'chromium_builder_perf', | |
| 72 ], | |
| 73 'testing': { | |
| 74 'platform': 'linux', | |
| 75 }, | |
| 76 'tests':[steps.BisectTest()], | |
| 77 'chromium_apply_config': ['chromium_perf'] | |
| 78 }, | |
| 79 'linux_perf_bisector':{ | |
| 80 'chromium_config': 'chromium_official', | |
| 81 'gclient_config': 'chromium', | |
| 82 'gclient_apply_config': ['chrome_internal'], | |
| 83 'parent_buildername': 'Linux Builder', | |
| 84 'chromium_config_kwargs': { | |
| 85 'BUILD_CONFIG': 'Release', | |
| 86 'TARGET_BITS': 64, | |
| 87 }, | |
| 88 'bot_type': 'tester', | |
| 89 'compile_targets': [ | |
| 90 'chromium_builder_perf', | |
| 91 ], | |
| 92 'testing': { | |
| 93 'platform': 'linux', | |
| 94 }, | |
| 95 'tests':[steps.BisectTest()], | |
| 96 'chromium_apply_config': ['chromium_perf'] | |
| 97 }, | |
| 98 'win64_nv_tester':{ | |
| 99 'bot_type': 'tester', | |
| 100 'chromium_config_kwargs': { | |
| 101 'BUILD_CONFIG': 'Release', | |
| 102 'TARGET_BITS': 64, | |
| 103 }, | |
| 104 'parent_buildername': 'Win x64 Builder', | |
| 105 'chromium_config': 'chromium_official', | |
| 106 'gclient_config': 'perf', | |
| 107 'testing': { | |
| 108 'platform': 'win', | |
| 109 }, | |
| 110 'tests':[steps.BisectTest()], | |
| 111 }, | |
|
hans
2016/04/27 15:49:42
Is this the dead code you're referring to in the d
| |
| 112 } | 60 } |
| 113 } | 61 } |
| 114 | 62 |
| 63 | |
| 64 for builder_config in SPEC['builders'].itervalues(): | |
| 65 if 'tests' in builder_config: | |
| 66 del builder_config['tests'] | |
| OLD | NEW |