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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 ], | 90 ], |
91 # TODO(phajdan.jr): Automatically add _run targets when used. | 91 # TODO(phajdan.jr): Automatically add _run targets when used. |
92 'compile_targets': [ | 92 'compile_targets': [ |
93 'browser_tests_run', | 93 'browser_tests_run', |
94 ], | 94 ], |
95 'testing': { | 95 'testing': { |
96 'platform': 'linux', | 96 'platform': 'linux', |
97 }, | 97 }, |
98 'use_isolate': True, | 98 'use_isolate': True, |
99 }, | 99 }, |
100 'Linux ARM': { | |
101 'chromium_config': 'chromium', | |
102 'gclient_config': 'chromium', | |
103 'chromium_config_kwargs': { | |
104 'BUILD_CONFIG': 'Release', | |
105 'TARGET_ARCH': 'arm', | |
106 'TARGET_BITS': 32, | |
107 }, | |
108 'bot_type': 'builder', | |
109 'compile_targets': [ | |
110 'all', | |
111 ], | |
112 'use_isolate': True, | |
113 'testing': { | |
114 'platform': 'linux', | |
115 }, | |
116 }, | |
117 'Linux Trusty': { | 100 'Linux Trusty': { |
118 'chromium_config': 'chromium', | 101 'chromium_config': 'chromium', |
119 'gclient_config': 'chromium', | 102 'gclient_config': 'chromium', |
120 'chromium_config_kwargs': { | 103 'chromium_config_kwargs': { |
121 'BUILD_CONFIG': 'Release', | 104 'BUILD_CONFIG': 'Release', |
122 'TARGET_BITS': 64, | 105 'TARGET_BITS': 64, |
123 }, | 106 }, |
124 'bot_type': 'builder_tester', | 107 'bot_type': 'builder_tester', |
125 'compile_targets': [ | 108 'compile_targets': [ |
126 'all', | 109 'all', |
(...skipping 1362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1489 'ChromotingTest', 'remoting_test_apk', | 1472 'ChromotingTest', 'remoting_test_apk', |
1490 adb_install_apk=( | 1473 adb_install_apk=( |
1491 'Chromoting.apk', 'org.chromium.chromoting')), | 1474 'Chromoting.apk', 'org.chromium.chromoting')), |
1492 ], | 1475 ], |
1493 'testing': { | 1476 'testing': { |
1494 'platform': 'linux', | 1477 'platform': 'linux', |
1495 }, | 1478 }, |
1496 }, | 1479 }, |
1497 }, | 1480 }, |
1498 } | 1481 } |
OLD | NEW |