mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 117.0.5895.0 (#1171312)
This commit is contained in:
@ -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':
|
||||
|
Reference in New Issue
Block a user