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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 'win-pgo': { | 446 'win-pgo': { |
447 '1': 'official_chrome_pgo_phase_1_x86', | 447 '1': 'official_chrome_pgo_phase_1_x86', |
448 '2': 'official_chrome_pgo_phase_2_x86', | 448 '2': 'official_chrome_pgo_phase_2_x86', |
449 }, | 449 }, |
450 'win64': 'official', | 450 'win64': 'official', |
451 'win64-clang': 'official_clang', | 451 'win64-clang': 'official_clang', |
452 'win64-pgo': { | 452 'win64-pgo': { |
453 '1': 'official_chrome_pgo_phase_1', | 453 '1': 'official_chrome_pgo_phase_1', |
454 '2': 'official_chrome_pgo_phase_2', | 454 '2': 'official_chrome_pgo_phase_2', |
455 }, | 455 }, |
| 456 # TODO(mmoss): Remove this once official recipes are working and this |
| 457 # just becomes the regular "win64-pgo" builder. |
| 458 'win64-pgo-recipes': { |
| 459 '1': 'official_chrome_pgo_phase_1', |
| 460 '2': 'official_chrome_pgo_phase_2', |
| 461 }, |
456 }, | 462 }, |
457 | 463 |
458 'official.desktop.continuous': { | 464 'official.desktop.continuous': { |
459 'mac beta': 'official', | 465 'mac beta': 'official', |
460 'mac stable': 'official', | 466 'mac stable': 'official', |
461 'mac trunk': 'official', | 467 'mac trunk': 'official', |
462 'precise64 beta': 'official_six_concurrent_links', | 468 'precise64 beta': 'official_six_concurrent_links', |
463 'precise64 stable': 'official_six_concurrent_links', | 469 'precise64 stable': 'official_six_concurrent_links', |
464 'precise64 trunk': 'official_six_concurrent_links', | 470 'precise64 trunk': 'official_six_concurrent_links', |
465 'win beta': 'official_six_concurrent_links', | 471 'win beta': 'official_six_concurrent_links', |
(...skipping 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1928 | 1934 |
1929 'x64': { | 1935 'x64': { |
1930 'gn_args': 'target_cpu="x64"', | 1936 'gn_args': 'target_cpu="x64"', |
1931 }, | 1937 }, |
1932 | 1938 |
1933 'x86': { | 1939 'x86': { |
1934 'gn_args': 'target_cpu="x86"', | 1940 'gn_args': 'target_cpu="x86"', |
1935 }, | 1941 }, |
1936 }, | 1942 }, |
1937 } | 1943 } |
OLD | NEW |