We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cefdf8 commit d856fc3Copy full SHA for d856fc3
tools/gn
@@ -380,6 +380,10 @@ def to_gn_args(args):
380
# on Android.
381
gn_args['bssl_use_clang_integrated_as'] = True
382
383
+ # Enable pointer compression on 64-bit mobile targets.
384
+ if args.target_os in ['android', 'ios'] and gn_args['target_cpu'] in ['x64' , 'arm64']:
385
+ gn_args['dart_use_compressed_pointers'] = True
386
+
387
return gn_args
388
389
def parse_args(args):
0 commit comments