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

Side by Side Diff: gyp/opts.gyp

Issue 21120007: ARM Skia NEON patches - 15 - Preparation work for Blitmask optims (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 4 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 | « no previous file | src/opts/SkBlitMask_opts_arm_neon.cpp » ('j') | src/opts/SkBlitRow_opts_arm.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 # Due to an unfortunate intersection of lameness between gcc and gyp, 3 # Due to an unfortunate intersection of lameness between gcc and gyp,
4 # we have to build the *_SSE2.cpp files in a separate target. The 4 # we have to build the *_SSE2.cpp files in a separate target. The
5 # gcc lameness is that, in order to compile SSE2 intrinsics code, it 5 # gcc lameness is that, in order to compile SSE2 intrinsics code, it
6 # must be passed the -msse2 flag. However, with this flag, it may 6 # must be passed the -msse2 flag. However, with this flag, it may
7 # emit SSE2 instructions even for scalar code, such as the CPUID 7 # emit SSE2 instructions even for scalar code, such as the CPUID
8 # test used to test for the presence of SSE2. So that, and all other 8 # test used to test for the presence of SSE2. So that, and all other
9 # code must be compiled *without* -msse2. The gyp lameness is that it 9 # code must be compiled *without* -msse2. The gyp lameness is that it
10 # does not allow file-specific CFLAGS, so we must create this extra 10 # does not allow file-specific CFLAGS, so we must create this extra
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 '-march=armv7-a', 162 '-march=armv7-a',
163 '-Wl,--fix-cortex-a8', 163 '-Wl,--fix-cortex-a8',
164 ], 164 ],
165 'sources': [ 165 'sources': [
166 '../src/opts/memset16_neon.S', 166 '../src/opts/memset16_neon.S',
167 '../src/opts/memset32_neon.S', 167 '../src/opts/memset32_neon.S',
168 '../src/opts/SkBitmapProcState_arm_neon.cpp', 168 '../src/opts/SkBitmapProcState_arm_neon.cpp',
169 '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp', 169 '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp',
170 '../src/opts/SkBitmapProcState_matrix_clamp_neon.h', 170 '../src/opts/SkBitmapProcState_matrix_clamp_neon.h',
171 '../src/opts/SkBitmapProcState_matrix_repeat_neon.h', 171 '../src/opts/SkBitmapProcState_matrix_repeat_neon.h',
172 '../src/opts/SkBlitMask_opts_arm_neon.cpp',
172 '../src/opts/SkBlitRow_opts_arm_neon.cpp', 173 '../src/opts/SkBlitRow_opts_arm_neon.cpp',
173 ], 174 ],
174 }, 175 },
175 ], 176 ],
176 } 177 }
177 178
178 # Local Variables: 179 # Local Variables:
179 # tab-width:2 180 # tab-width:2
180 # indent-tabs-mode:nil 181 # indent-tabs-mode:nil
181 # End: 182 # End:
182 # vim: set expandtab tabstop=2 shiftwidth=2: 183 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | src/opts/SkBlitMask_opts_arm_neon.cpp » ('j') | src/opts/SkBlitRow_opts_arm.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698