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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
737 ], | 737 ], |
738 }], | 738 }], |
739 [ 'target_arch == "mipsel"',{ | 739 [ 'target_arch == "mipsel"',{ |
740 'cflags': [ | 740 'cflags': [ |
741 '-fomit-frame-pointer', | 741 '-fomit-frame-pointer', |
742 ], | 742 ], |
743 'sources': [ | 743 'sources': [ |
744 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', | 744 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', |
745 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', | 745 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', |
746 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', | 746 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', |
747 'ext/convolver_mips_dspr2.cc', | |
747 ], | 748 ], |
748 }], | 749 }], |
749 ], | 750 ], |
750 }, | 751 }, |
751 # For the same lame reasons as what is done for skia_opts, we have to | 752 # For the same lame reasons as what is done for skia_opts, we have to |
752 # create another target specifically for SSSE3 code as we would not want | 753 # create another target specifically for SSSE3 code as we would not want |
753 # to compile the SSE2 code with -mssse3 which would potentially allow | 754 # to compile the SSE2 code with -mssse3 which would potentially allow |
754 # gcc to generate SSSE3 code. | 755 # gcc to generate SSSE3 code. |
755 { | 756 { |
756 'target_name': 'skia_opts_ssse3', | 757 'target_name': 'skia_opts_ssse3', |
(...skipping 23 matching lines...) Expand all Loading... | |
780 [ 'OS == "win"', { | 781 [ 'OS == "win"', { |
781 'include_dirs': [ | 782 'include_dirs': [ |
782 'config/win', | 783 'config/win', |
783 ], | 784 ], |
784 'direct_dependent_settings': { | 785 'direct_dependent_settings': { |
785 'include_dirs': [ | 786 'include_dirs': [ |
786 'config/win', | 787 'config/win', |
787 ], | 788 ], |
788 }, | 789 }, |
789 }], | 790 }], |
790 [ 'target_arch != "arm"', { | 791 [ 'target_arch != "arm" and target_arch !="mipsel"', { |
Justin Novosad
2013/05/23 15:32:03
Missing space
Teodora Novkovic
2013/05/24 16:02:20
Done.
| |
791 'sources': [ | 792 'sources': [ |
792 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp', | 793 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp', |
793 ], | 794 ], |
794 }], | 795 }], |
795 ], | 796 ], |
796 }, | 797 }, |
797 { | 798 { |
798 'target_name': 'image_operations_bench', | 799 'target_name': 'image_operations_bench', |
799 'type': 'executable', | 800 'type': 'executable', |
800 'dependencies': [ | 801 'dependencies': [ |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
835 'sources': [ | 836 'sources': [ |
836 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', | 837 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', |
837 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', | 838 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', |
838 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', | 839 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', |
839 ], | 840 ], |
840 }, | 841 }, |
841 ], | 842 ], |
842 }], | 843 }], |
843 ], | 844 ], |
844 } | 845 } |
OLD | NEW |