Skip to content

Commit 13679b4

Browse files
committed
[Tizen] Fix Windows build
1 parent 1fd2949 commit 13679b4

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
@@ -434,7 +434,7 @@ def to_gn_args(args):
434434
# bitwidth of the 32-bit arm target.
435435
if sys.platform.startswith(
436436
('cygwin', 'win')
437-
) and args.target_os == 'android' and gn_args['target_cpu'] == 'arm':
437+
) and args.target_os != 'win' and gn_args['target_cpu'] == 'arm':
438438
gn_args['host_cpu'] = 'x86'
439439
gn_args['current_cpu'] = 'x86'
440440

0 commit comments

Comments
 (0)