Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1418)

Unified Diff: skia/skia_library_opts.gyp

Issue 440043002: [MIPS64] Add build support in Skia for MIPS64 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « skia/skia_library.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/skia_library_opts.gyp
diff --git a/skia/skia_library_opts.gyp b/skia/skia_library_opts.gyp
index 37f5eb44addf19bb387eb61118642ac4367e92a5..e634c0e8d496ac9029f1b56417bbb602effd671a 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',
@@ -132,7 +132,7 @@
'../third_party/skia/src/opts/SkXfermode_opts_none.cpp',
],
}],
- [ 'target_arch == "mipsel"',{
+ [ 'target_arch == "mipsel" or target_arch == "mips64el"',{
'cflags': [
'-fomit-frame-pointer',
],
@@ -208,7 +208,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',
],
« no previous file with comments | « skia/skia_library.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698