Skip to content

Commit 7738f5b

Browse files
committed
[Tizen] Fix Windows build
1 parent 3cff4a3 commit 7738f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def to_gn_args(args):
325325
# bitwidth of the 32-bit arm target.
326326
if sys.platform.startswith(
327327
('cygwin', 'win')
328-
) and args.target_os == 'android' and gn_args['target_cpu'] == 'arm':
328+
) and args.target_os != 'win' and gn_args['target_cpu'] == 'arm':
329329
gn_args['host_cpu'] = 'x86'
330330
gn_args['current_cpu'] = 'x86'
331331

0 commit comments

Comments
 (0)