| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # This is a .pyl, or "Python Literal", file. You can treat it just like a | 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a |
| 6 # .json file, with the following exceptions: | 6 # .json file, with the following exceptions: |
| 7 # * all keys must be quoted (use single quotes, please); | 7 # * all keys must be quoted (use single quotes, please); |
| 8 # * comments are allowed, using '#' syntax; and | 8 # * comments are allowed, using '#' syntax; and |
| 9 # * trailing commas are allowed. | 9 # * trailing commas are allowed. |
| 10 | 10 |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 'win_clang_x64_dbg': 'win_clang_debug_bot', | 660 'win_clang_x64_dbg': 'win_clang_debug_bot', |
| 661 'win_clang_x64_rel': 'clang_official_release_trybot', | 661 'win_clang_x64_rel': 'clang_official_release_trybot', |
| 662 'win_mojo': 'release_trybot_x86', | 662 'win_mojo': 'release_trybot_x86', |
| 663 'win_nacl_sdk': 'release_bot_x86', | 663 'win_nacl_sdk': 'release_bot_x86', |
| 664 'win_nacl_sdk_build': 'release_bot_x86', | 664 'win_nacl_sdk_build': 'release_bot_x86', |
| 665 'win_optional_gpu_tests_rel': 'gpu_tests_deqp_gles_release_trybot_x86', | 665 'win_optional_gpu_tests_rel': 'gpu_tests_deqp_gles_release_trybot_x86', |
| 666 'win_pgo': { | 666 'win_pgo': { |
| 667 '1': 'official_optimize_chrome_pgo_phase_1_x86', | 667 '1': 'official_optimize_chrome_pgo_phase_1_x86', |
| 668 '2': 'official_optimize_chrome_pgo_phase_2_x86', | 668 '2': 'official_optimize_chrome_pgo_phase_2_x86', |
| 669 }, | 669 }, |
| 670 'win_pgo_x64': { |
| 671 '1': 'official_optimize_chrome_pgo_phase_1', |
| 672 '2': 'official_optimize_chrome_pgo_phase_2', |
| 673 }, |
| 670 'win_upload_clang': 'release_bot', | 674 'win_upload_clang': 'release_bot', |
| 671 'win_chrome_official': 'official_goma_x86', | 675 'win_chrome_official': 'official_goma_x86', |
| 672 }, | 676 }, |
| 673 | 677 |
| 674 'tryserver.v8': { | 678 'tryserver.v8': { |
| 675 'v8_android_chromium_gn_dbg': 'android_debug_bot', | 679 'v8_android_chromium_gn_dbg': 'android_debug_bot', |
| 676 'v8_linux_blink_rel': 'release_trybot', | 680 'v8_linux_blink_rel': 'release_trybot', |
| 677 'v8_linux_chromium_gn_rel': 'release_trybot', | 681 'v8_linux_chromium_gn_rel': 'release_trybot', |
| 678 }, | 682 }, |
| 679 }, | 683 }, |
| (...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1915 | 1919 |
| 1916 'x64': { | 1920 'x64': { |
| 1917 'gn_args': 'target_cpu="x64"', | 1921 'gn_args': 'target_cpu="x64"', |
| 1918 }, | 1922 }, |
| 1919 | 1923 |
| 1920 'x86': { | 1924 'x86': { |
| 1921 'gn_args': 'target_cpu="x86"', | 1925 'gn_args': 'target_cpu="x86"', |
| 1922 }, | 1926 }, |
| 1923 }, | 1927 }, |
| 1924 } | 1928 } |
| OLD | NEW |