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

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

Issue 2690943007: Move stripping of debug symbols on linux behind a flag (Closed)
Patch Set: updates Created 3 years, 10 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 | « build/config/compiler/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 # 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 1738 matching lines...) Expand 10 before | Expand all | Expand 10 after
1749 1749
1750 'mac_strip': { 1750 'mac_strip': {
1751 'gn_args': 'enable_stripping=true', 1751 'gn_args': 'enable_stripping=true',
1752 }, 1752 },
1753 1753
1754 'mac_views_browser': { 1754 'mac_views_browser': {
1755 'gn_args': 'mac_views_browser=true', 1755 'gn_args': 'mac_views_browser=true',
1756 }, 1756 },
1757 1757
1758 'minimal_symbols': { 1758 'minimal_symbols': {
1759 'gn_args': 'symbol_level=1', 1759 'gn_args': 'symbol_level=1 strip_absolute_paths_from_debug_symbols=true',
1760 }, 1760 },
1761 1761
1762 'mipsel': { 1762 'mipsel': {
1763 'gn_args': 'target_cpu="mipsel"', 1763 'gn_args': 'target_cpu="mipsel"',
1764 }, 1764 },
1765 1765
1766 'msan': { 1766 'msan': {
1767 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li braries=true', 1767 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li braries=true',
1768 }, 1768 },
1769 1769
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1893 1893
1894 'x64': { 1894 'x64': {
1895 'gn_args': 'target_cpu="x64"', 1895 'gn_args': 'target_cpu="x64"',
1896 }, 1896 },
1897 1897
1898 'x86': { 1898 'x86': {
1899 'gn_args': 'target_cpu="x86"', 1899 'gn_args': 'target_cpu="x86"',
1900 }, 1900 },
1901 }, 1901 },
1902 } 1902 }
OLDNEW
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698