From 543a9b9ef0cd4cb18ff4403542a7f744207ea2ff Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Thu, 25 Aug 2022 16:24:53 -0400 Subject: [PATCH] Restyle --- scripts/build/builders/host.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build/builders/host.py b/scripts/build/builders/host.py index 0b00449f09e74e..a536d6650b5e8f 100644 --- a/scripts/build/builders/host.py +++ b/scripts/build/builders/host.py @@ -254,10 +254,10 @@ def __init__(self, root, runner, app: HostApp, board=HostBoard.NATIVE, self.extra_gn_options.append('chip_config_memory_debug_dmalloc=true') # this is from `dmalloc -b -l DMALLOC_LOG -i 1 high` - self.build_env['DMALLOC_OPTIONS']='debug=0x4f4ed03,inter=1,log=DMALLOC_LOG' + self.build_env['DMALLOC_OPTIONS'] = 'debug=0x4f4ed03,inter=1,log=DMALLOC_LOG' # glib interop with dmalloc - self.build_env['G_SLICE']='always-malloc' + self.build_env['G_SLICE'] = 'always-malloc' if not separate_event_loop: self.extra_gn_options.append('config_use_separate_eventloop=false')