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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |