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

Side by Side Diff: skia/skia.gyp

Issue 11342016: Fix skia build when not on armv7. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 | « no previous file | 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 '../third_party/skia/src/opts/SkBitmapProcState_arm_neon.cpp', 740 '../third_party/skia/src/opts/SkBitmapProcState_arm_neon.cpp',
741 '../third_party/skia/src/opts/SkBitmapProcState_matrixProcs_neon.cpp ', 741 '../third_party/skia/src/opts/SkBitmapProcState_matrixProcs_neon.cpp ',
742 '../third_party/skia/src/opts/SkBitmapProcState_matrix_clamp_neon.h' , 742 '../third_party/skia/src/opts/SkBitmapProcState_matrix_clamp_neon.h' ,
743 '../third_party/skia/src/opts/SkBitmapProcState_matrix_repeat_neon.h ', 743 '../third_party/skia/src/opts/SkBitmapProcState_matrix_repeat_neon.h ',
744 '../third_party/skia/src/opts/SkBlitRow_opts_arm_neon.cpp', 744 '../third_party/skia/src/opts/SkBlitRow_opts_arm_neon.cpp',
745 ], 745 ],
746 }], 746 }],
747 [ 'target_arch == "arm" and armv7 != 1', { 747 [ 'target_arch == "arm" and armv7 != 1', {
748 'sources': [ 748 'sources': [
749 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 749 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
750 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
750 ], 751 ],
751 'sources!': [ 752 'sources!': [
752 '../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp', 753 '../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp',
754 '../third_party/skia/src/opts/opts_check_arm.cpp',
Stephen White 2012/10/29 20:58:19 Not your fault, but this thing is a growing mess.
753 ], 755 ],
754 }], 756 }],
755 ], 757 ],
756 }, 758 },
757 # For the same lame reasons as what is done for skia_opts, we have to 759 # For the same lame reasons as what is done for skia_opts, we have to
758 # create another target specifically for SSSE3 code as we would not want 760 # create another target specifically for SSSE3 code as we would not want
759 # to compile the SSE2 code with -mssse3 which would potentially allow 761 # to compile the SSE2 code with -mssse3 which would potentially allow
760 # gcc to generate SSSE3 code. 762 # gcc to generate SSSE3 code.
761 { 763 {
762 'target_name': 'skia_opts_ssse3', 764 'target_name': 'skia_opts_ssse3',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 'sources': [ 840 'sources': [
839 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 841 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
840 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 842 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
841 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 843 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
842 ], 844 ],
843 }, 845 },
844 ], 846 ],
845 }], 847 }],
846 ], 848 ],
847 } 849 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698