| 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'], |
| 1546 'android_config': 'main_builder', | 1547 'android_config': 'main_builder', |
| 1547 'bot_type': 'builder', | 1548 'bot_type': 'builder', |
| 1548 'compile_targets': [ | 1549 'compile_targets': [ |
| 1549 'chromedriver_webview_shell_apk', | 1550 'chromedriver_webview_shell_apk', |
| 1550 ], | 1551 ], |
| 1551 'testing': { | 1552 'testing': { |
| 1552 'platform': 'linux', | 1553 'platform': 'linux', |
| 1553 }, | 1554 }, |
| 1554 }, | 1555 }, |
| 1555 | 1556 |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1820 'test_generators': [ | 1821 'test_generators': [ |
| 1821 steps.generate_gtest, | 1822 steps.generate_gtest, |
| 1822 steps.generate_script, | 1823 steps.generate_script, |
| 1823 ], | 1824 ], |
| 1824 'testing': { | 1825 'testing': { |
| 1825 'platform': 'linux', | 1826 'platform': 'linux', |
| 1826 }, | 1827 }, |
| 1827 }, | 1828 }, |
| 1828 }, | 1829 }, |
| 1829 } | 1830 } |
| OLD | NEW |