Skip to content

Commit

Permalink
Address code review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
a-siva committed Aug 11, 2021
1 parent 6475372 commit c26c1d9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/gn
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,7 @@ def to_gn_args(args):
gn_args['bssl_use_clang_integrated_as'] = True

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

return gn_args
Expand Down

0 comments on commit c26c1d9

Please sign in to comment.