Index: skia/skia_library_opts.gyp |
diff --git a/skia/skia_library_opts.gyp b/skia/skia_library_opts.gyp |
index 1c9713f718a6b1b655ab8b1091efc1103a0650c6..9dab280bed23856563354bc0b23e7bb33827f030 100644 |
--- a/skia/skia_library_opts.gyp |
+++ b/skia/skia_library_opts.gyp |
@@ -245,13 +245,18 @@ |
'../third_party/skia/src/core', |
'../third_party/skia/src/opts', |
], |
+ # The special cases are performance critical and suffer from lack |
mtklein
2014/05/07 14:49:42
Is there any way we can do this with SK_ALWAYS_INL
|
+ # of inlining. Keep below in sync with -finline-limit=XX usage. |
'cflags!': [ |
+ '-Os', |
+ '-finline-limit=64', |
'-fno-omit-frame-pointer', |
'-mfpu=vfp', # remove them all, just in case. |
'-mfpu=vfpv3', |
'-mfpu=vfpv3-d16', |
], |
'cflags': [ |
+ '-O2', |
'-mfpu=neon', |
'-fomit-frame-pointer', |
], |