diff options
Diffstat (limited to 'skia/skia_library_opts.gyp')
-rw-r--r-- | skia/skia_library_opts.gyp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/skia/skia_library_opts.gyp b/skia/skia_library_opts.gyp index 1536ee7..cb15f2d 100644 --- a/skia/skia_library_opts.gyp +++ b/skia/skia_library_opts.gyp @@ -40,13 +40,13 @@ 'conditions': [ [ 'os_posix == 1 and OS != "mac" and OS != "android" and \ target_arch != "arm" and target_arch != "arm64" and \ - target_arch != "mipsel"', { + target_arch != "mipsel" and target_arch != "mips64el"', { 'cflags': [ '-msse2', ], }], [ 'target_arch != "arm" and target_arch != "mipsel" and \ - target_arch != "arm64"', { + target_arch != "arm64" and target_arch != "mips64el"', { 'sources': [ '../third_party/skia/src/opts/SkBitmapFilter_opts_SSE2.cpp', '../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp', @@ -122,7 +122,7 @@ '../third_party/skia/src/opts/SkXfermode_opts_none.cpp', ], }], - [ 'target_arch == "mipsel"',{ + [ 'target_arch == "mipsel" or target_arch == "mips64el"',{ 'cflags': [ '-fomit-frame-pointer', ], @@ -198,7 +198,7 @@ ], }], [ 'target_arch != "arm" and target_arch != "arm64" and \ - target_arch != "mipsel"', { + target_arch != "mipsel" and target_arch != "mips64el"', { 'sources': [ '../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp', ], |