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

Side by Side Diff: skia/skia.gyp

Issue 13293004: enable SSE2 in skia/convolver for linux32 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wrapped convolvevertically Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« skia/ext/convolver.cc ('K') | « skia/ext/image_operations.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skia', 8 'target_name': 'skia',
9 'type': '<(component)', 9 'type': '<(component)',
10 'variables': { 10 'variables': {
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 'defines': [ 651 'defines': [
652 'SK_BUILD_FOR_ANDROID_NDK', 652 'SK_BUILD_FOR_ANDROID_NDK',
653 ], 653 ],
654 }], 654 }],
655 [ 'target_arch != "arm" and target_arch != "mipsel"', { 655 [ 'target_arch != "arm" and target_arch != "mipsel"', {
656 'sources': [ 656 'sources': [
657 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp', 657 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp',
658 '../third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp', 658 '../third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp',
659 '../third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp', 659 '../third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp',
660 '../third_party/skia/src/opts/SkUtils_opts_SSE2.cpp', 660 '../third_party/skia/src/opts/SkUtils_opts_SSE2.cpp',
661 'ext/convolver_SSE2.cc',
661 ], 662 ],
662 'conditions': [ 663 'conditions': [
663 # x86 Android doesn't support SSSE3 instructions. 664 # x86 Android doesn't support SSSE3 instructions.
664 [ 'OS != "android"', { 665 [ 'OS != "android"', {
665 'dependencies': [ 666 'dependencies': [
666 'skia_opts_ssse3', 667 'skia_opts_ssse3',
667 ], 668 ],
668 }], 669 }],
669 ], 670 ],
670 }], 671 }],
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 'sources': [ 831 'sources': [
831 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 832 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
832 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 833 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
833 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 834 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
834 ], 835 ],
835 }, 836 },
836 ], 837 ],
837 }], 838 }],
838 ], 839 ],
839 } 840 }
OLDNEW
« skia/ext/convolver.cc ('K') | « skia/ext/image_operations.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698