| 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 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 # We also set strip_absolute_paths to ensure that we can get deterministic | 1732 'gn_args': 'use_goma=true', |
| 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', | |
| 1736 }, | 1733 }, |
| 1737 | 1734 |
| 1738 'gpu_fyi_tests': { | 1735 'gpu_fyi_tests': { |
| 1739 'mixins': ['gpu_tests', 'internal_gles2_conform_tests', 'angle_deqp_tests'
], | 1736 'mixins': ['gpu_tests', 'internal_gles2_conform_tests', 'angle_deqp_tests'
], |
| 1740 }, | 1737 }, |
| 1741 | 1738 |
| 1742 'gpu_tests': { | 1739 'gpu_tests': { |
| 1743 'mixins': ['chrome_with_codecs'], | 1740 'mixins': ['chrome_with_codecs'], |
| 1744 }, | 1741 }, |
| 1745 | 1742 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 1776 | 1773 |
| 1777 'mac_strip': { | 1774 'mac_strip': { |
| 1778 'gn_args': 'enable_stripping=true', | 1775 'gn_args': 'enable_stripping=true', |
| 1779 }, | 1776 }, |
| 1780 | 1777 |
| 1781 'mac_views_browser': { | 1778 'mac_views_browser': { |
| 1782 'gn_args': 'mac_views_browser=true', | 1779 'gn_args': 'mac_views_browser=true', |
| 1783 }, | 1780 }, |
| 1784 | 1781 |
| 1785 'minimal_symbols': { | 1782 'minimal_symbols': { |
| 1786 'gn_args': 'symbol_level=1', | 1783 'gn_args': 'symbol_level=1 strip_absolute_paths_from_debug_symbols=true', |
| 1787 }, | 1784 }, |
| 1788 | 1785 |
| 1789 'mipsel': { | 1786 'mipsel': { |
| 1790 'gn_args': 'target_cpu="mipsel"', | 1787 'gn_args': 'target_cpu="mipsel"', |
| 1791 }, | 1788 }, |
| 1792 | 1789 |
| 1793 'msan': { | 1790 'msan': { |
| 1794 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li
braries=true', | 1791 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li
braries=true', |
| 1795 }, | 1792 }, |
| 1796 | 1793 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1932 | 1929 |
| 1933 'x64': { | 1930 'x64': { |
| 1934 'gn_args': 'target_cpu="x64"', | 1931 'gn_args': 'target_cpu="x64"', |
| 1935 }, | 1932 }, |
| 1936 | 1933 |
| 1937 'x86': { | 1934 'x86': { |
| 1938 'gn_args': 'target_cpu="x86"', | 1935 'gn_args': 'target_cpu="x86"', |
| 1939 }, | 1936 }, |
| 1940 }, | 1937 }, |
| 1941 } | 1938 } |
| OLD | NEW |