| 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': { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'Linux ARM Cross-Compile': { | 75 'Linux ARM Cross-Compile': { |
| 76 'chromium_config': 'chromium', | 76 'chromium_config': 'chromium', |
| 77 'gclient_config': 'chromium', | 77 'gclient_config': 'chromium', |
| 78 'chromium_config_kwargs': { | 78 'chromium_config_kwargs': { |
| 79 'BUILD_CONFIG': 'Release', | 79 'BUILD_CONFIG': 'Release', |
| 80 'TARGET_ARCH': 'arm', | 80 'TARGET_ARCH': 'arm', |
| 81 'TARGET_BITS': 32, | 81 'TARGET_BITS': 32, |
| 82 }, | 82 }, |
| 83 'bot_type': 'builder', | 83 'bot_type': 'builder', |
| 84 'GYP_DEFINES': { | 84 'GYP_DEFINES': { |
| 85 'arm_float_abi': 'hard', | |
| 86 'test_isolation_mode': 'archive', | 85 'test_isolation_mode': 'archive', |
| 87 }, | 86 }, |
| 88 'test_generators': [ | 87 'test_generators': [ |
| 89 steps.generate_gtest, | 88 steps.generate_gtest, |
| 90 steps.generate_script, | 89 steps.generate_script, |
| 91 ], | 90 ], |
| 92 # TODO(phajdan.jr): Automatically add _run targets when used. | 91 # TODO(phajdan.jr): Automatically add _run targets when used. |
| 93 'compile_targets': [ | 92 'compile_targets': [ |
| 94 'browser_tests_run', | 93 'browser_tests_run', |
| 95 ], | 94 ], |
| 96 'testing': { | 95 'testing': { |
| 97 'platform': 'linux', | 96 'platform': 'linux', |
| 98 }, | 97 }, |
| 99 'use_isolate': True, | 98 'use_isolate': True, |
| 100 }, | 99 }, |
| 101 'Linux ARM': { | 100 'Linux ARM': { |
| 102 'chromium_config': 'chromium', | 101 'chromium_config': 'chromium', |
| 103 'gclient_config': 'chromium', | 102 'gclient_config': 'chromium', |
| 104 'chromium_config_kwargs': { | 103 'chromium_config_kwargs': { |
| 105 'BUILD_CONFIG': 'Release', | 104 'BUILD_CONFIG': 'Release', |
| 106 'TARGET_ARCH': 'arm', | 105 'TARGET_ARCH': 'arm', |
| 107 'TARGET_BITS': 32, | 106 'TARGET_BITS': 32, |
| 108 }, | 107 }, |
| 109 'bot_type': 'builder', | 108 'bot_type': 'builder', |
| 110 'GYP_DEFINES': { | |
| 111 'arm_float_abi': 'hard', | |
| 112 }, | |
| 113 'use_isolate': True, | 109 'use_isolate': True, |
| 114 'testing': { | 110 'testing': { |
| 115 'platform': 'linux', | 111 'platform': 'linux', |
| 116 }, | 112 }, |
| 117 }, | 113 }, |
| 118 'Linux Trusty': { | 114 'Linux Trusty': { |
| 119 'chromium_config': 'chromium', | 115 'chromium_config': 'chromium', |
| 120 'gclient_config': 'chromium', | 116 'gclient_config': 'chromium', |
| 121 'chromium_config_kwargs': { | 117 'chromium_config_kwargs': { |
| 122 'BUILD_CONFIG': 'Release', | 118 'BUILD_CONFIG': 'Release', |
| (...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 'ChromotingTest', 'remoting_test_apk', | 1254 'ChromotingTest', 'remoting_test_apk', |
| 1259 adb_install_apk=( | 1255 adb_install_apk=( |
| 1260 'Chromoting.apk', 'org.chromium.chromoting')), | 1256 'Chromoting.apk', 'org.chromium.chromoting')), |
| 1261 ], | 1257 ], |
| 1262 'testing': { | 1258 'testing': { |
| 1263 'platform': 'linux', | 1259 'platform': 'linux', |
| 1264 }, | 1260 }, |
| 1265 }, | 1261 }, |
| 1266 }, | 1262 }, |
| 1267 } | 1263 } |
| OLD | NEW |