Update to Chromium version 117.0.5895.0 (#1171312)

This commit is contained in:
Marshall Greenblatt
2023-07-20 18:11:34 -04:00
parent 1353677a98
commit 8b46735b79
78 changed files with 489 additions and 476 deletions

View File

@ -466,6 +466,11 @@ def GetConfigArgs(args, is_debug, cpu):
"""
add_args = {}
if platform == 'windows' and cpu == 'x86':
# Disable Rust dependencies for Windows x86 builds due to
# https://crbug.com/1465165.
add_args['enable_rust'] = False
# Cannot create is_official_build=true is_debug=true builds.
# This restriction is enforced in //build/config/BUILDCONFIG.gn.
# Instead, our "official Debug" build is a Release build with dchecks and
@ -512,6 +517,9 @@ def GetConfigArgsSandbox(platform, args, is_debug, cpu):
# Enable base target customizations necessary for distribution of the
# cef_sandbox static library.
'is_cef_sandbox_build': True,
# Disable Rust dependencies.
'enable_rust': False,
}
if platform == 'windows':