Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 46c18f0

Browse files
committed
Switch Android windows builds to also use clang.
1 parent e71f51a commit 46c18f0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tools/gn

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,7 @@ def to_gn_args(args):
9999
gn_args['is_debug'] = args.unoptimized
100100
gn_args['android_full_debug'] = args.target_os == 'android' and args.unoptimized
101101
if args.clang is None:
102-
# Android gen_snapshot currently isn't buildable with clang on Windows.
103-
# For everything else, default to clang.
104-
gn_args['is_clang'] = not (sys.platform.startswith(('cygwin', 'win')) and
105-
args.target_os == 'android')
102+
gn_args['is_clang'] = True
106103
else:
107104
gn_args['is_clang'] = args.clang
108105

0 commit comments

Comments
 (0)