Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
a-siva committed Aug 11, 2021
1 parent fe3a03f commit 6475372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/gn
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ 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 == 'android' or args.target_os == 'ios') and (
gn_args['target_cpu'] == 'x64' or gn_args['target_cpu'] == 'arm64'):
gn_args['dart_use_compressed_pointers'] = True

return gn_args
Expand Down

0 comments on commit 6475372

Please sign in to comment.