Windows: Avoid cef_sandbox compile errors with perfetto (fixes issue #2984)

This commit is contained in:
Marshall Greenblatt 2020-07-16 12:26:53 -04:00
parent e8573173dd
commit fab2af8876
1 changed files with 4 additions and 0 deletions

View File

@ -477,6 +477,10 @@ def GetConfigArgsSandbox(platform, args, is_debug, cpu):
# Avoid Debug build linker errors caused by custom libc++.
add_args['use_custom_libcxx'] = False
# Avoid dependency on //third_party/perfetto:libperfetto which fails to
# build with MSVC libc++.
add_args['enable_base_tracing'] = False
result = MergeDicts(args, add_args, {
'is_debug': is_debug,
'target_cpu': cpu,