| 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 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 'settings': { | 10 'settings': { |
| 11 'build_gs_bucket': 'chromium-fyi-archive', | 11 'build_gs_bucket': 'chromium-fyi-archive', |
| 12 }, | 12 }, |
| 13 'builders': { | 13 'builders': { |
| 14 'Chromium Mac 10.10': { | 14 'Chromium Mac 10.10': { |
| 15 'chromium_config': 'chromium', | 15 'chromium_config': 'chromium', |
| 16 'chromium_apply_config': ['chromium_mac_sdk_10_10'], | |
| 17 'gclient_config': 'chromium', | 16 'gclient_config': 'chromium', |
| 18 'chromium_config_kwargs': { | 17 'chromium_config_kwargs': { |
| 19 'BUILD_CONFIG': 'Release', | 18 'BUILD_CONFIG': 'Release', |
| 20 'TARGET_BITS': 64, | 19 'TARGET_BITS': 64, |
| 21 }, | 20 }, |
| 22 'test_generators': [ | 21 'test_generators': [ |
| 23 steps.generate_gtest, | 22 steps.generate_gtest, |
| 24 steps.generate_script, | 23 steps.generate_script, |
| 25 steps.generate_isolated_script, | 24 steps.generate_isolated_script, |
| 26 ], | 25 ], |
| 27 'testing': { | 26 'testing': { |
| 28 'platform': 'mac', | 27 'platform': 'mac', |
| 29 }, | 28 }, |
| 30 }, | 29 }, |
| 31 'Chromium Mac 10.11': { | 30 'Chromium Mac 10.11': { |
| 32 'chromium_config': 'chromium', | 31 'chromium_config': 'chromium', |
| 33 'chromium_apply_config': ['chromium_mac_sdk_10_10'], | |
| 34 'gclient_config': 'chromium', | 32 'gclient_config': 'chromium', |
| 35 'chromium_config_kwargs': { | 33 'chromium_config_kwargs': { |
| 36 'BUILD_CONFIG': 'Release', | 34 'BUILD_CONFIG': 'Release', |
| 37 'TARGET_BITS': 64, | 35 'TARGET_BITS': 64, |
| 38 }, | 36 }, |
| 39 'test_generators': [ | 37 'test_generators': [ |
| 40 steps.generate_gtest, | 38 steps.generate_gtest, |
| 41 steps.generate_script, | 39 steps.generate_script, |
| 42 ], | 40 ], |
| 43 'testing': { | 41 'testing': { |
| (...skipping 1877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1921 steps.generate_gtest, | 1919 steps.generate_gtest, |
| 1922 steps.generate_script, | 1920 steps.generate_script, |
| 1923 steps.generate_isolated_script, | 1921 steps.generate_isolated_script, |
| 1924 ], | 1922 ], |
| 1925 'testing': { | 1923 'testing': { |
| 1926 'platform': 'linux', | 1924 'platform': 'linux', |
| 1927 }, | 1925 }, |
| 1928 }, | 1926 }, |
| 1929 }, | 1927 }, |
| 1930 } | 1928 } |
| OLD | NEW |