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

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

Issue 2805053005: [Cronet] Enable Brotli (Closed)
Patch Set: add 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
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 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after
1638 'mixins': ['clang'], 1638 'mixins': ['clang'],
1639 }, 1639 },
1640 1640
1641 'clang': { 1641 'clang': {
1642 'gn_args': 'is_clang=true', 1642 'gn_args': 'is_clang=true',
1643 }, 1643 },
1644 1644
1645 'cronet': { 1645 'cronet': {
1646 'gn_args': ('disable_file_support=true disable_ftp_support=true ' 1646 'gn_args': ('disable_file_support=true disable_ftp_support=true '
1647 'enable_websockets=false use_platform_icu_alternatives=true ' 1647 'enable_websockets=false use_platform_icu_alternatives=true '
1648 'disable_brotli_filter=true use_partition_alloc=false'), 1648 'use_partition_alloc=false'),
1649 }, 1649 },
1650 1650
1651 'cros_chrome_sdk': { 1651 'cros_chrome_sdk': {
1652 # This is used so that the cros chrome_sdk (simplechrome) builders 1652 # This is used so that the cros chrome_sdk (simplechrome) builders
1653 # can manage the list of GN args in their .ebuild 1653 # can manage the list of GN args in their .ebuild
1654 # files and just pass through the desired arguments, hence not 1654 # files and just pass through the desired arguments, hence not
1655 # really using MB. If a bot uses this mixin, we expect that 1655 # really using MB. If a bot uses this mixin, we expect that
1656 # both GYP_DEFINES and GN_ARGS are set in the environment, 1656 # both GYP_DEFINES and GN_ARGS are set in the environment,
1657 # and that GYP_DEFINES has chromeos=1 and GN_ARGS has 1657 # and that GYP_DEFINES has chromeos=1 and GN_ARGS has
1658 # target_os="chromeos" in it. 1658 # target_os="chromeos" in it.
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
1934 1934
1935 'x64': { 1935 'x64': {
1936 'gn_args': 'target_cpu="x64"', 1936 'gn_args': 'target_cpu="x64"',
1937 }, 1937 },
1938 1938
1939 'x86': { 1939 'x86': {
1940 'gn_args': 'target_cpu="x86"', 1940 'gn_args': 'target_cpu="x86"',
1941 }, 1941 },
1942 }, 1942 },
1943 } 1943 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698