| 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 1525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1536 | 1536 |
| 1537 'Android Builder (dbg)': { | 1537 'Android Builder (dbg)': { |
| 1538 'chromium_config': 'android', | 1538 'chromium_config': 'android', |
| 1539 'gclient_config': 'chromium', | 1539 'gclient_config': 'chromium', |
| 1540 'gclient_apply_config': ['android'], | 1540 'gclient_apply_config': ['android'], |
| 1541 'chromium_config_kwargs': { | 1541 'chromium_config_kwargs': { |
| 1542 'BUILD_CONFIG': 'Debug', | 1542 'BUILD_CONFIG': 'Debug', |
| 1543 'TARGET_BITS': 32, | 1543 'TARGET_BITS': 32, |
| 1544 'TARGET_PLATFORM': 'android', | 1544 'TARGET_PLATFORM': 'android', |
| 1545 }, | 1545 }, |
| 1546 'chromium_apply_config': ['errorprone'], | |
| 1547 'android_config': 'main_builder', | 1546 'android_config': 'main_builder', |
| 1548 'bot_type': 'builder', | 1547 'bot_type': 'builder', |
| 1549 'compile_targets': [ | 1548 'compile_targets': [ |
| 1550 'chromedriver_webview_shell_apk', | 1549 'chromedriver_webview_shell_apk', |
| 1551 ], | 1550 ], |
| 1552 'testing': { | 1551 'testing': { |
| 1553 'platform': 'linux', | 1552 'platform': 'linux', |
| 1554 }, | 1553 }, |
| 1555 }, | 1554 }, |
| 1556 | 1555 |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1821 'test_generators': [ | 1820 'test_generators': [ |
| 1822 steps.generate_gtest, | 1821 steps.generate_gtest, |
| 1823 steps.generate_script, | 1822 steps.generate_script, |
| 1824 ], | 1823 ], |
| 1825 'testing': { | 1824 'testing': { |
| 1826 'platform': 'linux', | 1825 'platform': 'linux', |
| 1827 }, | 1826 }, |
| 1828 }, | 1827 }, |
| 1829 }, | 1828 }, |
| 1830 } | 1829 } |
| OLD | NEW |