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

Side by Side Diff: gyp/opts.gyp

Issue 302283003: ARM Skia NEON patches - 38 - arm64 8888 blitters (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Comments Created 6 years, 6 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
« no previous file with comments | « no previous file | src/opts/SkBlitRow_opts_arm_neon.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Gyp file for opts projects 1 # Gyp file for opts projects
2 { 2 {
3 'targets': [ 3 'targets': [
4 # Due to an unfortunate intersection of lameness between gcc and gyp, 4 # Due to an unfortunate intersection of lameness between gcc and gyp,
5 # we have to build the *_SSE2.cpp files in a separate target. The 5 # we have to build the *_SSE2.cpp files in a separate target. The
6 # gcc lameness is that, in order to compile SSE2 intrinsics code, it 6 # gcc lameness is that, in order to compile SSE2 intrinsics code, it
7 # must be passed the -msse2 flag. However, with this flag, it may 7 # must be passed the -msse2 flag. However, with this flag, it may
8 # emit SSE2 instructions even for scalar code, such as the CPUID 8 # emit SSE2 instructions even for scalar code, such as the CPUID
9 # test used to test for the presence of SSE2. So that, and all other 9 # test used to test for the presence of SSE2. So that, and all other
10 # code must be compiled *without* -msse2. The gyp lameness is that it 10 # code must be compiled *without* -msse2. The gyp lameness is that it
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 '-mno-apcs-frame', 121 '-mno-apcs-frame',
122 ] 122 ]
123 }], 123 }],
124 [ 'skia_arch_type == "arm64"', { 124 [ 'skia_arch_type == "arm64"', {
125 'sources': [ 125 'sources': [
126 '../src/opts/SkBitmapProcState_arm_neon.cpp', 126 '../src/opts/SkBitmapProcState_arm_neon.cpp',
127 '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp', 127 '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp',
128 '../src/opts/SkBitmapProcState_opts_arm.cpp', 128 '../src/opts/SkBitmapProcState_opts_arm.cpp',
129 '../src/opts/SkBlitMask_opts_arm.cpp', 129 '../src/opts/SkBlitMask_opts_arm.cpp',
130 '../src/opts/SkBlitMask_opts_arm_neon.cpp', 130 '../src/opts/SkBlitMask_opts_arm_neon.cpp',
131 '../src/opts/SkBlitRow_opts_none.cpp', 131 '../src/opts/SkBlitRow_opts_arm.cpp',
132 '../src/opts/SkBlitRow_opts_arm_neon.cpp',
132 '../src/opts/SkBlurImage_opts_arm.cpp', 133 '../src/opts/SkBlurImage_opts_arm.cpp',
133 '../src/opts/SkBlurImage_opts_neon.cpp', 134 '../src/opts/SkBlurImage_opts_neon.cpp',
134 '../src/opts/SkMorphology_opts_arm.cpp', 135 '../src/opts/SkMorphology_opts_arm.cpp',
135 '../src/opts/SkMorphology_opts_neon.cpp', 136 '../src/opts/SkMorphology_opts_neon.cpp',
136 '../src/opts/SkUtils_opts_none.cpp', 137 '../src/opts/SkUtils_opts_none.cpp',
137 '../src/opts/SkXfermode_opts_arm.cpp', 138 '../src/opts/SkXfermode_opts_arm.cpp',
138 '../src/opts/SkXfermode_opts_arm_neon.cpp', 139 '../src/opts/SkXfermode_opts_arm_neon.cpp',
139 ], 140 ],
140 }], 141 }],
141 ], 142 ],
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 '../src/opts/SkBitmapProcState_matrix_neon.h', 215 '../src/opts/SkBitmapProcState_matrix_neon.h',
215 '../src/opts/SkBlitMask_opts_arm_neon.cpp', 216 '../src/opts/SkBlitMask_opts_arm_neon.cpp',
216 '../src/opts/SkBlitRow_opts_arm_neon.cpp', 217 '../src/opts/SkBlitRow_opts_arm_neon.cpp',
217 '../src/opts/SkBlurImage_opts_neon.cpp', 218 '../src/opts/SkBlurImage_opts_neon.cpp',
218 '../src/opts/SkMorphology_opts_neon.cpp', 219 '../src/opts/SkMorphology_opts_neon.cpp',
219 '../src/opts/SkXfermode_opts_arm_neon.cpp', 220 '../src/opts/SkXfermode_opts_arm_neon.cpp',
220 ], 221 ],
221 }, 222 },
222 ], 223 ],
223 } 224 }
OLDNEW
« no previous file with comments | « no previous file | src/opts/SkBlitRow_opts_arm_neon.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698