From 2432333f982a775ad77fbaba455512a008fe7647 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Fri, 11 Jun 2021 20:54:30 -0400 Subject: [PATCH] Windows: Allow non-component Debug official sandbox builds (see issue #2679) --- tools/gn_args.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/gn_args.py b/tools/gn_args.py index 8a960d0a8..d8accc85d 100644 --- a/tools/gn_args.py +++ b/tools/gn_args.py @@ -489,6 +489,9 @@ def GetConfigArgsSandbox(platform, args, is_debug, cpu): # Don't enable -Wmax-tokens in combination with MSVC libc++. add_args['enable_wmax_tokens'] = False + # Allow non-component Debug builds for the sandbox. + add_args['forbid_non_component_debug_builds'] = False + result = MergeDicts(args, add_args, { 'is_debug': is_debug, 'target_cpu': cpu,