From 859fb0837fad3d362ac6395c59d7e38fef677151 Mon Sep 17 00:00:00 2001 From: Swift Kim Date: Wed, 25 Jan 2023 15:21:15 +0900 Subject: [PATCH] [Tizen] Fix Windows build --- tools/gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gn b/tools/gn index 09cfe690b0231..3a71cc2eeda79 100755 --- a/tools/gn +++ b/tools/gn @@ -328,7 +328,7 @@ def to_gn_args(args): # bitwidth of the 32-bit arm target. if sys.platform.startswith( ('cygwin', 'win') - ) and args.target_os == 'android' and gn_args['target_cpu'] == 'arm': + ) and args.target_os != 'win' and gn_args['target_cpu'] == 'arm': gn_args['host_cpu'] = 'x86' gn_args['current_cpu'] = 'x86'