| 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 1824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1835 }, | 1835 }, |
| 1836 | 1836 |
| 1837 'ozone': { | 1837 'ozone': { |
| 1838 'gn_args': 'use_ozone=true', | 1838 'gn_args': 'use_ozone=true', |
| 1839 }, | 1839 }, |
| 1840 | 1840 |
| 1841 'ozone_linux': { | 1841 'ozone_linux': { |
| 1842 'gn_args': ('ozone_auto_platforms=false ozone_platform_wayland=true ' | 1842 'gn_args': ('ozone_auto_platforms=false ozone_platform_wayland=true ' |
| 1843 'ozone_platform_x11=true ozone_platform_gbm=true ' | 1843 'ozone_platform_x11=true ozone_platform_gbm=true ' |
| 1844 'enable_package_mash_services=true use_ash=false ' | 1844 'enable_package_mash_services=true use_ash=false ' |
| 1845 'use_jessie_sysroot=true use_xkbcommon=true'), | 1845 'use_xkbcommon=true'), |
| 1846 }, | 1846 }, |
| 1847 | 1847 |
| 1848 'pdf_xfa': { | 1848 'pdf_xfa': { |
| 1849 'gn_args': 'pdf_enable_xfa=true', | 1849 'gn_args': 'pdf_enable_xfa=true', |
| 1850 }, | 1850 }, |
| 1851 | 1851 |
| 1852 # Note: This is probably not what you want to use. Instead use one of the | 1852 # Note: This is probably not what you want to use. Instead use one of the |
| 1853 # chrome_with_codecs or chromeos_with_codecs mixins. | 1853 # chrome_with_codecs or chromeos_with_codecs mixins. |
| 1854 'proprietary_codecs': { | 1854 'proprietary_codecs': { |
| 1855 'gn_args': 'proprietary_codecs=true', | 1855 'gn_args': 'proprietary_codecs=true', |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1937 | 1937 |
| 1938 'x64': { | 1938 'x64': { |
| 1939 'gn_args': 'target_cpu="x64"', | 1939 'gn_args': 'target_cpu="x64"', |
| 1940 }, | 1940 }, |
| 1941 | 1941 |
| 1942 'x86': { | 1942 'x86': { |
| 1943 'gn_args': 'target_cpu="x86"', | 1943 'gn_args': 'target_cpu="x86"', |
| 1944 }, | 1944 }, |
| 1945 }, | 1945 }, |
| 1946 } | 1946 } |
| OLD | NEW |