Skip to content

Commit d49fa9c

Browse files
committed
[Tizen] Fix Windows build
1 parent a69bf36 commit d49fa9c

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
@@ -328,7 +328,7 @@ def to_gn_args(args):
328328
# bitwidth of the 32-bit arm target.
329329
if sys.platform.startswith(
330330
('cygwin', 'win')
331-
) and args.target_os == 'android' and gn_args['target_cpu'] == 'arm':
331+
) and args.target_os != 'win' and gn_args['target_cpu'] == 'arm':
332332
gn_args['host_cpu'] = 'x86'
333333
gn_args['current_cpu'] = 'x86'
334334

0 commit comments

Comments
 (0)