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

Commit 939b786

Browse files
committed
Address code review comments.
1 parent 73fcecb commit 939b786

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/gn

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,7 @@ def to_gn_args(args):
381381
gn_args['bssl_use_clang_integrated_as'] = True
382382

383383
# Enable pointer compression on 64-bit mobile targets.
384-
if (args.target_os == 'android' or args.target_os == 'ios') and (
385-
gn_args['target_cpu'] == 'x64' or gn_args['target_cpu'] == 'arm64'):
384+
if args.target_os in ['android', 'ios'] and gn_args['target_cpu'] in ['x64' , 'arm64']:
386385
gn_args['dart_use_compressed_pointers'] = True
387386

388387
return gn_args

0 commit comments

Comments
 (0)