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

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

Issue 2520863002: Enable precompiled headers for Blink on Windows. (Closed)
Patch Set: rebased Created 4 years 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 | « third_party/WebKit/Source/wtf/BUILD.gn ('k') | 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 { 5 {
6 # This is a map of buildbot master names -> buildbot builder names -> 6 # This is a map of buildbot master names -> buildbot builder names ->
7 # config names (where each config name is a key in the 'configs' dict, 7 # config names (where each config name is a key in the 'configs' dict,
8 # below). MB uses this dict to look up which config to use for a given bot. 8 # below). MB uses this dict to look up which config to use for a given bot.
9 'masters': { 9 'masters': {
10 'chromeos.chrome': { 10 'chromeos.chrome': {
(...skipping 1677 matching lines...) Expand 10 before | Expand all | Expand 10 after
1688 1688
1689 'msan': { 1689 'msan': {
1690 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li braries=true', 1690 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li braries=true',
1691 }, 1691 },
1692 1692
1693 'msan_no_origins': { 1693 'msan_no_origins': {
1694 'gn_args': 'is_msan=true msan_track_origins=0 use_prebuilt_instrumented_li braries=true', 1694 'gn_args': 'is_msan=true msan_track_origins=0 use_prebuilt_instrumented_li braries=true',
1695 }, 1695 },
1696 1696
1697 'no_pch': { 1697 'no_pch': {
1698 'gn_args': 'disable_precompiled_headers=true', 1698 'gn_args': 'enable_precompiled_headers=false',
1699 }, 1699 },
1700 1700
1701 'no_symbols': { 1701 'no_symbols': {
1702 'gn_args': 'symbol_level=0', 1702 'gn_args': 'symbol_level=0',
1703 }, 1703 },
1704 1704
1705 'official': { 1705 'official': {
1706 'mixins': ['official_optimize'], 1706 'mixins': ['official_optimize'],
1707 'gn_args': 'is_chrome_branded=true', 1707 'gn_args': 'is_chrome_branded=true',
1708 }, 1708 },
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1813 1813
1814 'x64': { 1814 'x64': {
1815 'gn_args': 'target_cpu="x64"', 1815 'gn_args': 'target_cpu="x64"',
1816 }, 1816 },
1817 1817
1818 'x86': { 1818 'x86': {
1819 'gn_args': 'target_cpu="x86"', 1819 'gn_args': 'target_cpu="x86"',
1820 }, 1820 },
1821 }, 1821 },
1822 } 1822 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/wtf/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698