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

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

Issue 2873513003: Reland of Ensure that builders that use goma strip absolute paths by default. (Closed)
Patch Set: Created 3 years, 7 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 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after
1722 # We don't want to require a runtime dependency on glib in the 1722 # We don't want to require a runtime dependency on glib in the
1723 # GN binary; ideally we could just turn glib off, but that doesn't 1723 # GN binary; ideally we could just turn glib off, but that doesn't
1724 # actually work, so we need to pretend to be doing an ozone build 1724 # actually work, so we need to pretend to be doing an ozone build
1725 # in order for the flag to actually take effect. 1725 # in order for the flag to actually take effect.
1726 'gn_args': 'use_ozone=true', 1726 'gn_args': 'use_ozone=true',
1727 }, 1727 },
1728 1728
1729 'goma': { 1729 'goma': {
1730 # The MB code will properly escape goma_dir if necessary in the GYP 1730 # The MB code will properly escape goma_dir if necessary in the GYP
1731 # code path; the GN code path needs no escaping. 1731 # code path; the GN code path needs no escaping.
1732 'gn_args': 'use_goma=true', 1732 # We also set strip_absolute_paths to ensure that we can get deterministic
1733 # builds. This isn't just on by default when goma is on so that devs
1734 # can do goma builds but still be able to debug by default.
1735 'gn_args': 'use_goma=true strip_absolute_paths_from_debug_symbols=true',
1733 }, 1736 },
1734 1737
1735 'gpu_fyi_tests': { 1738 'gpu_fyi_tests': {
1736 'mixins': ['gpu_tests', 'internal_gles2_conform_tests', 'angle_deqp_tests' ], 1739 'mixins': ['gpu_tests', 'internal_gles2_conform_tests', 'angle_deqp_tests' ],
1737 }, 1740 },
1738 1741
1739 'gpu_tests': { 1742 'gpu_tests': {
1740 'mixins': ['chrome_with_codecs'], 1743 'mixins': ['chrome_with_codecs'],
1741 }, 1744 },
1742 1745
(...skipping 30 matching lines...) Expand all
1773 1776
1774 'mac_strip': { 1777 'mac_strip': {
1775 'gn_args': 'enable_stripping=true', 1778 'gn_args': 'enable_stripping=true',
1776 }, 1779 },
1777 1780
1778 'mac_views_browser': { 1781 'mac_views_browser': {
1779 'gn_args': 'mac_views_browser=true', 1782 'gn_args': 'mac_views_browser=true',
1780 }, 1783 },
1781 1784
1782 'minimal_symbols': { 1785 'minimal_symbols': {
1783 'gn_args': 'symbol_level=1 strip_absolute_paths_from_debug_symbols=true', 1786 'gn_args': 'symbol_level=1',
1784 }, 1787 },
1785 1788
1786 'mipsel': { 1789 'mipsel': {
1787 'gn_args': 'target_cpu="mipsel"', 1790 'gn_args': 'target_cpu="mipsel"',
1788 }, 1791 },
1789 1792
1790 'msan': { 1793 'msan': {
1791 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li braries=true', 1794 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li braries=true',
1792 }, 1795 },
1793 1796
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
1929 1932
1930 'x64': { 1933 'x64': {
1931 'gn_args': 'target_cpu="x64"', 1934 'gn_args': 'target_cpu="x64"',
1932 }, 1935 },
1933 1936
1934 'x86': { 1937 'x86': {
1935 'gn_args': 'target_cpu="x86"', 1938 'gn_args': 'target_cpu="x86"',
1936 }, 1939 },
1937 }, 1940 },
1938 } 1941 }
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