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

Side by Side Diff: skia/skia.gyp

Issue 14929006: [MIPS] Added MIPS DSPr2 optimization for BGRAConvolve2D routine (Closed)
Patch Set: Add a non-templated parameter "has_alpha" for MIPS DSPr2 routines Created 7 years, 7 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
« no previous file with comments | « skia/ext/convolver_mips_dspr2.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 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 ], 733 ],
734 }], 734 }],
735 [ 'target_arch == "mipsel"',{ 735 [ 'target_arch == "mipsel"',{
736 'cflags': [ 736 'cflags': [
737 '-fomit-frame-pointer', 737 '-fomit-frame-pointer',
738 ], 738 ],
739 'sources': [ 739 'sources': [
740 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 740 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
741 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 741 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
742 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 742 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
743 'ext/convolver_mips_dspr2.cc',
743 ], 744 ],
744 }], 745 }],
745 ], 746 ],
746 }, 747 },
747 # For the same lame reasons as what is done for skia_opts, we have to 748 # For the same lame reasons as what is done for skia_opts, we have to
748 # create another target specifically for SSSE3 code as we would not want 749 # create another target specifically for SSSE3 code as we would not want
749 # to compile the SSE2 code with -mssse3 which would potentially allow 750 # to compile the SSE2 code with -mssse3 which would potentially allow
750 # gcc to generate SSSE3 code. 751 # gcc to generate SSSE3 code.
751 { 752 {
752 'target_name': 'skia_opts_ssse3', 753 'target_name': 'skia_opts_ssse3',
(...skipping 23 matching lines...) Expand all
776 [ 'OS == "win"', { 777 [ 'OS == "win"', {
777 'include_dirs': [ 778 'include_dirs': [
778 'config/win', 779 'config/win',
779 ], 780 ],
780 'direct_dependent_settings': { 781 'direct_dependent_settings': {
781 'include_dirs': [ 782 'include_dirs': [
782 'config/win', 783 'config/win',
783 ], 784 ],
784 }, 785 },
785 }], 786 }],
786 [ 'target_arch != "arm"', { 787 [ 'target_arch != "arm" and target_arch != "mipsel"', {
787 'sources': [ 788 'sources': [
788 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp', 789 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp',
789 ], 790 ],
790 }], 791 }],
791 ], 792 ],
792 }, 793 },
793 { 794 {
794 'target_name': 'image_operations_bench', 795 'target_name': 'image_operations_bench',
795 'type': 'executable', 796 'type': 'executable',
796 'dependencies': [ 797 'dependencies': [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 'sources': [ 832 'sources': [
832 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 833 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
833 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 834 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
834 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 835 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
835 ], 836 ],
836 }, 837 },
837 ], 838 ],
838 }], 839 }],
839 ], 840 ],
840 } 841 }
OLDNEW
« no previous file with comments | « skia/ext/convolver_mips_dspr2.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698