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