OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |