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 | 9 |
10 KITCHEN_TEST_SPEC = { | 10 KITCHEN_TEST_SPEC = { |
(...skipping 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1441 'compile_targets': [ | 1441 'compile_targets': [ |
1442 'all', | 1442 'all', |
1443 ], | 1443 ], |
1444 'bot_type': 'builder', | 1444 'bot_type': 'builder', |
1445 'android_config': 'clang_tot_debug_builder', | 1445 'android_config': 'clang_tot_debug_builder', |
1446 'testing': { 'platform': 'linux', }, | 1446 'testing': { 'platform': 'linux', }, |
1447 # Workaround so that recipes doesn't add random build targets to our | 1447 # Workaround so that recipes doesn't add random build targets to our |
1448 # compile line. We want to build everything. | 1448 # compile line. We want to build everything. |
1449 'add_tests_as_compile_targets': False, | 1449 'add_tests_as_compile_targets': False, |
1450 }, | 1450 }, |
| 1451 'ClangToTAndroid x64': { |
| 1452 'chromium_config': 'clang_tot_android', |
| 1453 'gclient_config': 'chromium', |
| 1454 'chromium_apply_config': ['mb'], |
| 1455 'gclient_apply_config': ['android'], |
| 1456 'chromium_config_kwargs': { |
| 1457 'BUILD_CONFIG': 'Release', |
| 1458 'TARGET_BITS': 64, |
| 1459 'TARGET_PLATFORM': 'android', |
| 1460 }, |
| 1461 'bot_type': 'builder_tester', |
| 1462 'android_config': 'clang_builder_mb_x64', |
| 1463 'testing': { |
| 1464 'platform': 'linux', |
| 1465 }, |
| 1466 }, |
1451 'ClangToTMac': { | 1467 'ClangToTMac': { |
1452 'chromium_config': 'clang_tot_mac', | 1468 'chromium_config': 'clang_tot_mac', |
1453 'gclient_config': 'chromium', | 1469 'gclient_config': 'chromium', |
1454 'chromium_apply_config': ['mb'], | 1470 'chromium_apply_config': ['mb'], |
1455 'chromium_config_kwargs': { | 1471 'chromium_config_kwargs': { |
1456 'BUILD_CONFIG': 'Release', | 1472 'BUILD_CONFIG': 'Release', |
1457 'TARGET_BITS': 64, | 1473 'TARGET_BITS': 64, |
1458 }, | 1474 }, |
1459 'GYP_DEFINES': { | 1475 'GYP_DEFINES': { |
1460 'component': 'shared_library', | 1476 'component': 'shared_library', |
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2096 'TARGET_PLATFORM': 'win', | 2112 'TARGET_PLATFORM': 'win', |
2097 'TARGET_BITS': 32, | 2113 'TARGET_BITS': 32, |
2098 }, | 2114 }, |
2099 'bot_type': 'builder_tester', | 2115 'bot_type': 'builder_tester', |
2100 'testing': { 'platform': 'win', }, | 2116 'testing': { 'platform': 'win', }, |
2101 'use_isolate': True, | 2117 'use_isolate': True, |
2102 'enable_swarming': True, | 2118 'enable_swarming': True, |
2103 }, | 2119 }, |
2104 }, | 2120 }, |
2105 } | 2121 } |
OLD | NEW |