summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--skia/skia.gyp4
-rw-r--r--skia/skia_library.gypi2
-rw-r--r--skia/skia_library_opts.gyp8
3 files changed, 7 insertions, 7 deletions
diff --git a/skia/skia.gyp b/skia/skia.gyp
index 4c4f6f8..8800bab 100644
--- a/skia/skia.gyp
+++ b/skia/skia.gyp
@@ -100,13 +100,13 @@
'conditions': [
[ 'os_posix == 1 and OS != "mac" and OS != "android" and \
target_arch != "arm" and target_arch != "mipsel" and \
- target_arch != "arm64"', {
+ target_arch != "arm64" 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': [
'ext/convolver_SSE2.cc',
],
diff --git a/skia/skia_library.gypi b/skia/skia_library.gypi
index d1fd91e..18bfb01 100644
--- a/skia/skia_library.gypi
+++ b/skia/skia_library.gypi
@@ -233,7 +233,7 @@
],
}],
[ 'target_arch == "arm" or target_arch == "arm64" or \
- target_arch == "mipsel"', {
+ target_arch == "mipsel" or target_arch == "mips64el"', {
'sources!': [
'../third_party/skia/src/opts/opts_check_x86.cpp'
],
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',
],