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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 'win-pgo': { | 449 'win-pgo': { |
450 '1': 'official_chrome_pgo_phase_1_x86', | 450 '1': 'official_chrome_pgo_phase_1_x86', |
451 '2': 'official_chrome_pgo_phase_2_x86', | 451 '2': 'official_chrome_pgo_phase_2_x86', |
452 }, | 452 }, |
453 'win64': 'official', | 453 'win64': 'official', |
454 'win64-clang': 'official_clang', | 454 'win64-clang': 'official_clang', |
455 'win64-pgo': { | 455 'win64-pgo': { |
456 '1': 'official_chrome_pgo_phase_1', | 456 '1': 'official_chrome_pgo_phase_1', |
457 '2': 'official_chrome_pgo_phase_2', | 457 '2': 'official_chrome_pgo_phase_2', |
458 }, | 458 }, |
| 459 # TODO(mmoss): Remove this once official recipes are working and this |
| 460 # just becomes the regular "win64-pgo" builder. |
| 461 'win64-pgo-recipes': { |
| 462 '1': 'official_chrome_pgo_phase_1', |
| 463 '2': 'official_chrome_pgo_phase_2', |
| 464 }, |
459 }, | 465 }, |
460 | 466 |
461 'official.desktop.continuous': { | 467 'official.desktop.continuous': { |
462 'mac beta': 'official', | 468 'mac beta': 'official', |
463 'mac stable': 'official', | 469 'mac stable': 'official', |
464 'mac trunk': 'official', | 470 'mac trunk': 'official', |
465 'precise64 beta': 'official_six_concurrent_links', | 471 'precise64 beta': 'official_six_concurrent_links', |
466 'precise64 stable': 'official_six_concurrent_links', | 472 'precise64 stable': 'official_six_concurrent_links', |
467 'precise64 trunk': 'official_six_concurrent_links', | 473 'precise64 trunk': 'official_six_concurrent_links', |
468 'win beta': 'official_six_concurrent_links', | 474 'win beta': 'official_six_concurrent_links', |
(...skipping 1468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1937 | 1943 |
1938 'x64': { | 1944 'x64': { |
1939 'gn_args': 'target_cpu="x64"', | 1945 'gn_args': 'target_cpu="x64"', |
1940 }, | 1946 }, |
1941 | 1947 |
1942 'x86': { | 1948 'x86': { |
1943 'gn_args': 'target_cpu="x86"', | 1949 'gn_args': 'target_cpu="x86"', |
1944 }, | 1950 }, |
1945 }, | 1951 }, |
1946 } | 1952 } |
OLD | NEW |