Index: tools/gn.py |
diff --git a/tools/gn.py b/tools/gn.py |
index 2f8d664301bc84b8041e1d57dc7066fe4d589f64..19bc1f6be587e6a847b0f1613183af1fc08ad117 100755 |
--- a/tools/gn.py |
+++ b/tools/gn.py |
@@ -91,6 +91,8 @@ def to_gn_args(args, mode, arch, target_os): |
gn_args['dart_use_tcmalloc'] = (gn_args['target_os'] == 'linux' |
and not args.asan) |
+ gn_args['arm_float_abi'] = 'hard' |
+ |
gn_args['is_debug'] = mode == 'debug' |
gn_args['is_release'] = mode == 'release' |
gn_args['is_product'] = mode == 'product' |