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

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

Issue 2956023003: Add enable_reporting to fix size regression in Cronet. (Closed)
Patch Set: Move build_config header back to top, to fix windows Created 3 years, 5 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 | « net/url_request/url_request_unittest.cc ('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 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after
1670 'gn_args': 'is_clang=true', 1670 'gn_args': 'is_clang=true',
1671 }, 1671 },
1672 1672
1673 'no_clang': { 1673 'no_clang': {
1674 'gn_args': 'is_clang=false', 1674 'gn_args': 'is_clang=false',
1675 }, 1675 },
1676 1676
1677 'cronet': { 1677 'cronet': {
1678 'gn_args': ('disable_file_support=true disable_ftp_support=true ' 1678 'gn_args': ('disable_file_support=true disable_ftp_support=true '
1679 'enable_websockets=false use_platform_icu_alternatives=true ' 1679 'enable_websockets=false use_platform_icu_alternatives=true '
1680 'use_partition_alloc=false'), 1680 'use_partition_alloc=false enable_reporting=false'),
1681 }, 1681 },
1682 1682
1683 'cros_chrome_sdk': { 1683 'cros_chrome_sdk': {
1684 # This is used so that the cros chrome_sdk (simplechrome) builders 1684 # This is used so that the cros chrome_sdk (simplechrome) builders
1685 # can manage the list of GN args in their .ebuild 1685 # can manage the list of GN args in their .ebuild
1686 # files and just pass through the desired arguments, hence not 1686 # files and just pass through the desired arguments, hence not
1687 # really using MB. If a bot uses this mixin, we expect that 1687 # really using MB. If a bot uses this mixin, we expect that
1688 # both GYP_DEFINES and GN_ARGS are set in the environment, 1688 # both GYP_DEFINES and GN_ARGS are set in the environment,
1689 # and that GYP_DEFINES has chromeos=1 and GN_ARGS has 1689 # and that GYP_DEFINES has chromeos=1 and GN_ARGS has
1690 # target_os="chromeos" in it. 1690 # target_os="chromeos" in it.
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1973 1973
1974 'x64': { 1974 'x64': {
1975 'gn_args': 'target_cpu="x64"', 1975 'gn_args': 'target_cpu="x64"',
1976 }, 1976 },
1977 1977
1978 'x86': { 1978 'x86': {
1979 'gn_args': 'target_cpu="x86"', 1979 'gn_args': 'target_cpu="x86"',
1980 }, 1980 },
1981 }, 1981 },
1982 } 1982 }
OLDNEW
« no previous file with comments | « net/url_request/url_request_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698