| 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 1738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |