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

Side by Side Diff: skia/skia_library_opts.gyp

Issue 229893004: Revert of roll skia DEPS to 14128 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | « DEPS ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # This gyp file contains the platform-specific optimizations for Skia 6 # This gyp file contains the platform-specific optimizations for Skia
7 { 7 {
8 'targets': [ 8 'targets': [
9 # Due to an unfortunate intersection of lameness between gcc and gyp, 9 # Due to an unfortunate intersection of lameness between gcc and gyp,
10 # we have to build the *_SSE2.cpp files in a separate target. The 10 # we have to build the *_SSE2.cpp files in a separate target. The
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 '-msse2', 44 '-msse2',
45 ], 45 ],
46 }], 46 }],
47 [ 'target_arch != "arm" and target_arch != "mipsel" and \ 47 [ 'target_arch != "arm" and target_arch != "mipsel" and \
48 target_arch != "arm64"', { 48 target_arch != "arm64"', {
49 'sources': [ 49 'sources': [
50 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp', 50 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp',
51 '../third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp', 51 '../third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp',
52 '../third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp', 52 '../third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp',
53 '../third_party/skia/src/opts/SkUtils_opts_SSE2.cpp', 53 '../third_party/skia/src/opts/SkUtils_opts_SSE2.cpp',
54 '../third_party/skia/src/opts/SkXfermode_opts_SSE2.cpp', 54 '../third_party/skia/src/opts/SkXfermode_opts_none.cpp',
55 '../third_party/skia/src/opts/SkBitmapFilter_opts_SSE2.cpp', 55 '../third_party/skia/src/opts/SkBitmapFilter_opts_SSE2.cpp',
56 '../third_party/skia/src/opts/SkMorphology_opts_SSE2.cpp', 56 '../third_party/skia/src/opts/SkMorphology_opts_SSE2.cpp',
57 '../third_party/skia/src/opts/SkBlurImage_opts_SSE2.cpp', 57 '../third_party/skia/src/opts/SkBlurImage_opts_SSE2.cpp',
58 ], 58 ],
59 'dependencies': [ 59 'dependencies': [
60 'skia_opts_ssse3', 60 'skia_opts_ssse3',
61 ], 61 ],
62 }], 62 }],
63 # TODO(rmcilroy): Add neon support for arm64 - http://crbug.com/354405 63 # TODO(rmcilroy): Add neon support for arm64 - http://crbug.com/354405
64 [ 'target_arch == "arm"', { 64 [ 'target_arch == "arm"', {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 136 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
137 '../third_party/skia/src/opts/SkBlitMask_opts_none.cpp', 137 '../third_party/skia/src/opts/SkBlitMask_opts_none.cpp',
138 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 138 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
139 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 139 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
140 '../third_party/skia/src/opts/SkXfermode_opts_none.cpp', 140 '../third_party/skia/src/opts/SkXfermode_opts_none.cpp',
141 '../third_party/skia/src/opts/SkMorphology_opts_none.cpp', 141 '../third_party/skia/src/opts/SkMorphology_opts_none.cpp',
142 '../third_party/skia/src/opts/SkBlurImage_opts_none.cpp', 142 '../third_party/skia/src/opts/SkBlurImage_opts_none.cpp',
143 ], 143 ],
144 }], 144 }],
145 [ 'target_arch == "arm64"',{ 145 [ 'target_arch == "arm64"',{
146 # TODO(rmcilroy): Update this once http://crrev.com/143423004/ lands.
146 'sources': [ 147 'sources': [
147 '../third_party/skia/src/opts/SkBitmapProcState_arm_neon.cpp', 148 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
148 '../third_party/skia/src/opts/SkBitmapProcState_matrixProcs_neon.cpp ', 149 '../third_party/skia/src/opts/SkBlitMask_opts_none.cpp',
149 '../third_party/skia/src/opts/SkBitmapProcState_opts_arm.cpp',
150 '../third_party/skia/src/opts/SkBlitMask_opts_arm.cpp',
151 '../third_party/skia/src/opts/SkBlitMask_opts_arm_neon.cpp',
152 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 150 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
153 '../third_party/skia/src/opts/SkBlurImage_opts_arm.cpp',
154 '../third_party/skia/src/opts/SkBlurImage_opts_neon.cpp',
155 '../third_party/skia/src/opts/SkMorphology_opts_arm.cpp',
156 '../third_party/skia/src/opts/SkMorphology_opts_neon.cpp',
157 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 151 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
158 '../third_party/skia/src/opts/SkXfermode_opts_arm.cpp', 152 '../third_party/skia/src/opts/SkXfermode_opts_none.cpp',
159 '../third_party/skia/src/opts/SkXfermode_opts_arm_neon.cpp', 153 '../third_party/skia/src/opts/SkMorphology_opts_none.cpp',
154 '../third_party/skia/src/opts/SkBlurImage_opts_none.cpp',
160 ], 155 ],
161 }], 156 }],
162 ], 157 ],
163 }, 158 },
164 # For the same lame reasons as what is done for skia_opts, we have to 159 # For the same lame reasons as what is done for skia_opts, we have to
165 # create another target specifically for SSSE3 code as we would not want 160 # create another target specifically for SSSE3 code as we would not want
166 # to compile the SSE2 code with -mssse3 which would potentially allow 161 # to compile the SSE2 code with -mssse3 which would potentially allow
167 # gcc to generate SSSE3 code. 162 # gcc to generate SSSE3 code.
168 { 163 {
169 'target_name': 'skia_opts_ssse3', 164 'target_name': 'skia_opts_ssse3',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 'defines': [ 278 'defines': [
284 '__ARM_HAVE_OPTIONAL_NEON_SUPPORT', 279 '__ARM_HAVE_OPTIONAL_NEON_SUPPORT',
285 ], 280 ],
286 }], 281 }],
287 ], 282 ],
288 }, 283 },
289 ], 284 ],
290 }], 285 }],
291 ], 286 ],
292 } 287 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698