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

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

Issue 2805053005: [Cronet] Enable Brotli (Closed)
Patch Set: restore 0x03 in test Created 3 years, 8 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 | « components/cronet/url_request_context_config_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 1630 matching lines...) Expand 10 before | Expand all | Expand 10 after
1641 'mixins': ['clang'], 1641 'mixins': ['clang'],
1642 }, 1642 },
1643 1643
1644 'clang': { 1644 'clang': {
1645 'gn_args': 'is_clang=true', 1645 'gn_args': 'is_clang=true',
1646 }, 1646 },
1647 1647
1648 'cronet': { 1648 'cronet': {
1649 'gn_args': ('disable_file_support=true disable_ftp_support=true ' 1649 'gn_args': ('disable_file_support=true disable_ftp_support=true '
1650 'enable_websockets=false use_platform_icu_alternatives=true ' 1650 'enable_websockets=false use_platform_icu_alternatives=true '
1651 'disable_brotli_filter=true use_partition_alloc=false'), 1651 'use_partition_alloc=false'),
1652 }, 1652 },
1653 1653
1654 'cros_chrome_sdk': { 1654 'cros_chrome_sdk': {
1655 # This is used so that the cros chrome_sdk (simplechrome) builders 1655 # This is used so that the cros chrome_sdk (simplechrome) builders
1656 # can manage the list of GN args in their .ebuild 1656 # can manage the list of GN args in their .ebuild
1657 # files and just pass through the desired arguments, hence not 1657 # files and just pass through the desired arguments, hence not
1658 # really using MB. If a bot uses this mixin, we expect that 1658 # really using MB. If a bot uses this mixin, we expect that
1659 # both GYP_DEFINES and GN_ARGS are set in the environment, 1659 # both GYP_DEFINES and GN_ARGS are set in the environment,
1660 # and that GYP_DEFINES has chromeos=1 and GN_ARGS has 1660 # and that GYP_DEFINES has chromeos=1 and GN_ARGS has
1661 # target_os="chromeos" in it. 1661 # target_os="chromeos" in it.
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « components/cronet/url_request_context_config_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698