| 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 1777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1788 'gn_args': 'optimize_for_fuzzing=true', | 1788 'gn_args': 'optimize_for_fuzzing=true', |
| 1789 }, | 1789 }, |
| 1790 | 1790 |
| 1791 'ozone': { | 1791 'ozone': { |
| 1792 'gn_args': 'use_ozone=true', | 1792 'gn_args': 'use_ozone=true', |
| 1793 }, | 1793 }, |
| 1794 | 1794 |
| 1795 'ozone_linux': { | 1795 'ozone_linux': { |
| 1796 'gn_args': ('ozone_auto_platforms=false ozone_platform_wayland=true ' | 1796 'gn_args': ('ozone_auto_platforms=false ozone_platform_wayland=true ' |
| 1797 'ozone_platform_x11=true ozone_platform_gbm=true ' | 1797 'ozone_platform_x11=true ozone_platform_gbm=true ' |
| 1798 'enable_package_mash_services=true use_ash=false'), | 1798 'enable_package_mash_services=true use_ash=false ' |
| 1799 'use_xkbcommon=true'), |
| 1799 }, | 1800 }, |
| 1800 | 1801 |
| 1801 'pdf_xfa': { | 1802 'pdf_xfa': { |
| 1802 'gn_args': 'pdf_enable_xfa=true', | 1803 'gn_args': 'pdf_enable_xfa=true', |
| 1803 }, | 1804 }, |
| 1804 | 1805 |
| 1805 # Note: This is probably not what you want to use. Instead use one of the | 1806 # Note: This is probably not what you want to use. Instead use one of the |
| 1806 # chrome_with_codecs or chromeos_with_codecs mixins. | 1807 # chrome_with_codecs or chromeos_with_codecs mixins. |
| 1807 'proprietary_codecs': { | 1808 'proprietary_codecs': { |
| 1808 'gn_args': 'proprietary_codecs=true', | 1809 'gn_args': 'proprietary_codecs=true', |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1886 | 1887 |
| 1887 'x64': { | 1888 'x64': { |
| 1888 'gn_args': 'target_cpu="x64"', | 1889 'gn_args': 'target_cpu="x64"', |
| 1889 }, | 1890 }, |
| 1890 | 1891 |
| 1891 'x86': { | 1892 'x86': { |
| 1892 'gn_args': 'target_cpu="x86"', | 1893 'gn_args': 'target_cpu="x86"', |
| 1893 }, | 1894 }, |
| 1894 }, | 1895 }, |
| 1895 } | 1896 } |
| OLD | NEW |