Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: tools/mb/mb_config.pyl

Issue 2792913003: Add new official.desktop Win PGO recipe builder. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 'win64-pgo-recipes': {
dimu 2017/04/03 20:38:52 TODO that we will delete it after verifying the re
457 '1': 'official_chrome_pgo_phase_1',
458 '2': 'official_chrome_pgo_phase_2',
459 },
456 }, 460 },
457 461
458 'official.desktop.continuous': { 462 'official.desktop.continuous': {
459 'mac beta': 'official', 463 'mac beta': 'official',
460 'mac stable': 'official', 464 'mac stable': 'official',
461 'mac trunk': 'official', 465 'mac trunk': 'official',
462 'precise64 beta': 'official_six_concurrent_links', 466 'precise64 beta': 'official_six_concurrent_links',
463 'precise64 stable': 'official_six_concurrent_links', 467 'precise64 stable': 'official_six_concurrent_links',
464 'precise64 trunk': 'official_six_concurrent_links', 468 'precise64 trunk': 'official_six_concurrent_links',
465 'win beta': 'official_six_concurrent_links', 469 'win beta': 'official_six_concurrent_links',
(...skipping 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after
1928 1932
1929 'x64': { 1933 'x64': {
1930 'gn_args': 'target_cpu="x64"', 1934 'gn_args': 'target_cpu="x64"',
1931 }, 1935 },
1932 1936
1933 'x86': { 1937 'x86': {
1934 'gn_args': 'target_cpu="x86"', 1938 'gn_args': 'target_cpu="x86"',
1935 }, 1939 },
1936 }, 1940 },
1937 } 1941 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698