| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 . import steps | 5 from . import steps |
| 6 | 6 |
| 7 RESULTS_URL = 'https://chromeperf.appspot.com' | 7 RESULTS_URL = 'https://chromeperf.appspot.com' |
| 8 | 8 |
| 9 SPEC = { | 9 SPEC = { |
| 10 'builders': { | 10 'builders': { |
| 11 'Linux x64': { | 11 'Linux x64': { |
| 12 'chromium_config': 'chromium', | 12 'chromium_config': 'chromium', |
| 13 'chromium_apply_config': [ | 13 'chromium_apply_config': [ |
| 14 'clobber', | 14 'clobber', |
| 15 'isolation_mode_noop', | 15 'isolation_mode_noop', |
| 16 'mb', | |
| 17 'ninja_confirm_noop', | 16 'ninja_confirm_noop', |
| 18 'no_dump_symbols', | 17 'no_dump_symbols', |
| 19 ], | 18 ], |
| 20 'gclient_config': 'chromium', | 19 'gclient_config': 'chromium', |
| 21 'chromium_config_kwargs': { | 20 'chromium_config_kwargs': { |
| 22 'BUILD_CONFIG': 'Release', | 21 'BUILD_CONFIG': 'Release', |
| 23 'TARGET_BITS': 64, | 22 'TARGET_BITS': 64, |
| 24 }, | 23 }, |
| 25 'compile_targets': [ | 24 'compile_targets': [ |
| 26 'all', | 25 'all', |
| 27 ], | 26 ], |
| 28 'tests': [ | 27 'tests': [ |
| 29 steps.SizesStep(RESULTS_URL, 'chromium-rel-linux-64'), | 28 steps.SizesStep(RESULTS_URL, 'chromium-rel-linux-64'), |
| 30 ], | 29 ], |
| 31 'test_generators': [ | 30 'test_generators': [ |
| 32 steps.generate_gtest, | 31 steps.generate_gtest, |
| 33 steps.generate_script, | 32 steps.generate_script, |
| 34 steps.generate_isolated_script, | 33 steps.generate_isolated_script, |
| 35 ], | 34 ], |
| 36 'archive_build': True, | 35 'archive_build': True, |
| 37 'gs_bucket': 'chromium-browser-snapshots', | 36 'gs_bucket': 'chromium-browser-snapshots', |
| 38 'gs_acl': 'public-read', | 37 'gs_acl': 'public-read', |
| 39 'testing': { | 38 'testing': { |
| 40 'platform': 'linux', | 39 'platform': 'linux', |
| 41 }, | 40 }, |
| 42 }, | 41 }, |
| 43 }, | 42 }, |
| 44 } | 43 } |
| OLD | NEW |