diff options
author | Gordana.Cmiljanovic@imgtec.com <Gordana.Cmiljanovic@imgtec.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-06 17:25:22 +0000 |
---|---|---|
committer | Gordana.Cmiljanovic@imgtec.com <Gordana.Cmiljanovic@imgtec.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-06 17:25:22 +0000 |
commit | d56118e3b6b2a8e4cf4b2ace18825e3ab7edd5b9 (patch) | |
tree | 3285d0fe14df192cdd4f63a7a6a02003bf3473eb /skia/skia_library_opts.gyp | |
parent | 9e9d03e15a65902c6170cea06f9f0ed70bb5221a (diff) | |
download | chromium_src-d56118e3b6b2a8e4cf4b2ace18825e3ab7edd5b9.zip chromium_src-d56118e3b6b2a8e4cf4b2ace18825e3ab7edd5b9.tar.gz chromium_src-d56118e3b6b2a8e4cf4b2ace18825e3ab7edd5b9.tar.bz2 |
[MIPS64] Add build support in Skia for MIPS64
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
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', ], |