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

Side by Side Diff: skia/skia.gyp

Issue 15742005: (Patch by Teodora Novkovic <teodora.petrovic@gmail.com>, originally reviewed at https://codereview… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix formatting 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 | Annotate | Revision Log
« 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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 ], 740 ],
741 }], 741 }],
742 [ 'target_arch == "mipsel"',{ 742 [ 'target_arch == "mipsel"',{
743 'cflags': [ 743 'cflags': [
744 '-fomit-frame-pointer', 744 '-fomit-frame-pointer',
745 ], 745 ],
746 'sources': [ 746 'sources': [
747 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 747 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
748 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 748 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
749 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 749 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
750 'ext/convolver_mips_dspr2.cc',
750 ], 751 ],
751 }], 752 }],
752 ], 753 ],
753 }, 754 },
754 # For the same lame reasons as what is done for skia_opts, we have to 755 # For the same lame reasons as what is done for skia_opts, we have to
755 # create another target specifically for SSSE3 code as we would not want 756 # create another target specifically for SSSE3 code as we would not want
756 # to compile the SSE2 code with -mssse3 which would potentially allow 757 # to compile the SSE2 code with -mssse3 which would potentially allow
757 # gcc to generate SSSE3 code. 758 # gcc to generate SSSE3 code.
758 { 759 {
759 'target_name': 'skia_opts_ssse3', 760 'target_name': 'skia_opts_ssse3',
(...skipping 23 matching lines...) Expand all
783 [ 'OS == "win"', { 784 [ 'OS == "win"', {
784 'include_dirs': [ 785 'include_dirs': [
785 'config/win', 786 'config/win',
786 ], 787 ],
787 'direct_dependent_settings': { 788 'direct_dependent_settings': {
788 'include_dirs': [ 789 'include_dirs': [
789 'config/win', 790 'config/win',
790 ], 791 ],
791 }, 792 },
792 }], 793 }],
793 [ 'target_arch != "arm"', { 794 [ 'target_arch != "arm" and target_arch != "mipsel"', {
794 'sources': [ 795 'sources': [
795 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp', 796 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp',
796 ], 797 ],
797 }], 798 }],
798 ], 799 ],
799 }, 800 },
800 { 801 {
801 'target_name': 'image_operations_bench', 802 'target_name': 'image_operations_bench',
802 'type': 'executable', 803 'type': 'executable',
803 'dependencies': [ 804 'dependencies': [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 'sources': [ 839 'sources': [
839 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 840 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
840 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 841 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
841 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 842 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
842 ], 843 ],
843 }, 844 },
844 ], 845 ],
845 }], 846 }],
846 ], 847 ],
847 } 848 }
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