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

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

Issue 2687203002: Add a build arg to control whether to use a jessie sysroot. (Closed)
Patch Set: Created 3 years, 10 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/sysroot.gni ('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 1791 matching lines...) Expand 10 before | Expand all | Expand 10 after
1802 }, 1802 },
1803 1803
1804 'ozone': { 1804 'ozone': {
1805 'gn_args': 'use_ozone=true', 1805 'gn_args': 'use_ozone=true',
1806 }, 1806 },
1807 1807
1808 'ozone_linux': { 1808 'ozone_linux': {
1809 'gn_args': ('ozone_auto_platforms=false ozone_platform_wayland=true ' 1809 'gn_args': ('ozone_auto_platforms=false ozone_platform_wayland=true '
1810 'ozone_platform_x11=true ozone_platform_gbm=true ' 1810 'ozone_platform_x11=true ozone_platform_gbm=true '
1811 'enable_package_mash_services=true use_ash=false ' 1811 'enable_package_mash_services=true use_ash=false '
1812 'use_xkbcommon=true'), 1812 'use_jessie_sysroot=true use_xkbcommon=true'),
1813 }, 1813 },
1814 1814
1815 'pdf_xfa': { 1815 'pdf_xfa': {
1816 'gn_args': 'pdf_enable_xfa=true', 1816 'gn_args': 'pdf_enable_xfa=true',
1817 }, 1817 },
1818 1818
1819 # Note: This is probably not what you want to use. Instead use one of the 1819 # Note: This is probably not what you want to use. Instead use one of the
1820 # chrome_with_codecs or chromeos_with_codecs mixins. 1820 # chrome_with_codecs or chromeos_with_codecs mixins.
1821 'proprietary_codecs': { 1821 'proprietary_codecs': {
1822 'gn_args': 'proprietary_codecs=true', 1822 'gn_args': 'proprietary_codecs=true',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
1900 1900
1901 'x64': { 1901 'x64': {
1902 'gn_args': 'target_cpu="x64"', 1902 'gn_args': 'target_cpu="x64"',
1903 }, 1903 },
1904 1904
1905 'x86': { 1905 'x86': {
1906 'gn_args': 'target_cpu="x86"', 1906 'gn_args': 'target_cpu="x86"',
1907 }, 1907 },
1908 }, 1908 },
1909 } 1909 }
OLDNEW
« no previous file with comments | « build/config/sysroot.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698