| 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 1518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1529 'testing': { 'platform': 'linux', }, | 1529 'testing': { 'platform': 'linux', }, |
| 1530 # Workaround so that recipes doesn't add random build targets to our | 1530 # Workaround so that recipes doesn't add random build targets to our |
| 1531 # compile line. We want to build everything. | 1531 # compile line. We want to build everything. |
| 1532 'add_tests_as_compile_targets': False, | 1532 'add_tests_as_compile_targets': False, |
| 1533 'root_devices': True, | 1533 'root_devices': True, |
| 1534 'test_generators': [ | 1534 'test_generators': [ |
| 1535 steps.generate_gtest, | 1535 steps.generate_gtest, |
| 1536 steps.generate_junit_test, | 1536 steps.generate_junit_test, |
| 1537 ], | 1537 ], |
| 1538 }, | 1538 }, |
| 1539 'ClangToTAndroid (dbg)': { |
| 1540 'chromium_config': 'clang_tot_android_dbg', |
| 1541 'chromium_apply_config': ['mb'], |
| 1542 'gclient_config': 'chromium', |
| 1543 'gclient_apply_config': ['android'], |
| 1544 'chromium_config_kwargs': { |
| 1545 'BUILD_CONFIG': 'Debug', |
| 1546 'TARGET_PLATFORM': 'android', |
| 1547 'TARGET_ARCH': 'arm', |
| 1548 'TARGET_BITS': 32, |
| 1549 }, |
| 1550 'GYP_DEFINES': { |
| 1551 'component': 'shared_library', |
| 1552 }, |
| 1553 'compile_targets': [ |
| 1554 'all', |
| 1555 ], |
| 1556 'bot_type': 'builder', |
| 1557 'android_config': 'clang_tot_debug_builder', |
| 1558 'testing': { 'platform': 'linux', }, |
| 1559 # Workaround so that recipes doesn't add random build targets to our |
| 1560 # compile line. We want to build everything. |
| 1561 'add_tests_as_compile_targets': False, |
| 1562 }, |
| 1539 'ClangToTMac': { | 1563 'ClangToTMac': { |
| 1540 'chromium_config': 'clang_tot_mac', | 1564 'chromium_config': 'clang_tot_mac', |
| 1541 'gclient_config': 'chromium', | 1565 'gclient_config': 'chromium', |
| 1542 'chromium_apply_config': ['mb'], | 1566 'chromium_apply_config': ['mb'], |
| 1543 'chromium_config_kwargs': { | 1567 'chromium_config_kwargs': { |
| 1544 'BUILD_CONFIG': 'Release', | 1568 'BUILD_CONFIG': 'Release', |
| 1545 'TARGET_BITS': 64, | 1569 'TARGET_BITS': 64, |
| 1546 }, | 1570 }, |
| 1547 'GYP_DEFINES': { | 1571 'GYP_DEFINES': { |
| 1548 'component': 'shared_library', | 1572 'component': 'shared_library', |
| (...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2226 steps.generate_gtest, | 2250 steps.generate_gtest, |
| 2227 steps.generate_script, | 2251 steps.generate_script, |
| 2228 steps.generate_isolated_script, | 2252 steps.generate_isolated_script, |
| 2229 ], | 2253 ], |
| 2230 'testing': { 'platform': 'win', }, | 2254 'testing': { 'platform': 'win', }, |
| 2231 'use_isolate': True, | 2255 'use_isolate': True, |
| 2232 'enable_swarming': True, | 2256 'enable_swarming': True, |
| 2233 }, | 2257 }, |
| 2234 }, | 2258 }, |
| 2235 } | 2259 } |
| OLD | NEW |