Skip to content

Commit

Permalink
[MIPS64] Add build support in Skia for MIPS64
Browse files Browse the repository at this point in the history
BUG=400684

Review URL: https://codereview.chromium.org/440043002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287795 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
Gordana.Cmiljanovic@imgtec.com authored and Gordana.Cmiljanovic@imgtec.com committed Aug 6, 2014
1 parent 9e9d03e commit d56118e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions skia/skia.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -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',
],
Expand Down
2 changes: 1 addition & 1 deletion skia/skia_library.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -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'
],
Expand Down
8 changes: 4 additions & 4 deletions skia/skia_library_opts.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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',
],
Expand Down Expand Up @@ -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',
],
Expand Down

0 comments on commit d56118e

Please sign in to comment.