| OLD | NEW |
| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 '-march=armv7-a', | 168 '-march=armv7-a', |
| 169 '-Wl,--fix-cortex-a8', | 169 '-Wl,--fix-cortex-a8', |
| 170 ], | 170 ], |
| 171 'sources': [ | 171 'sources': [ |
| 172 '../src/opts/memset16_neon.S', | 172 '../src/opts/memset16_neon.S', |
| 173 '../src/opts/memset32_neon.S', | 173 '../src/opts/memset32_neon.S', |
| 174 '../src/opts/SkBitmapProcState_arm_neon.cpp', | 174 '../src/opts/SkBitmapProcState_arm_neon.cpp', |
| 175 '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp', | 175 '../src/opts/SkBitmapProcState_matrixProcs_neon.cpp', |
| 176 '../src/opts/SkBitmapProcState_matrix_clamp_neon.h', | 176 '../src/opts/SkBitmapProcState_matrix_clamp_neon.h', |
| 177 '../src/opts/SkBitmapProcState_matrix_repeat_neon.h', | 177 '../src/opts/SkBitmapProcState_matrix_repeat_neon.h', |
| 178 '../src/opts/SkBlitMask_opts_arm_neon.cpp', |
| 178 '../src/opts/SkBlitRow_opts_arm_neon.cpp', | 179 '../src/opts/SkBlitRow_opts_arm_neon.cpp', |
| 179 '../src/opts/SkXfermode_opts_arm_neon.cpp', | 180 '../src/opts/SkXfermode_opts_arm_neon.cpp', |
| 180 ], | 181 ], |
| 181 }, | 182 }, |
| 182 ], | 183 ], |
| 183 } | 184 } |
| 184 | 185 |
| 185 # Local Variables: | 186 # Local Variables: |
| 186 # tab-width:2 | 187 # tab-width:2 |
| 187 # indent-tabs-mode:nil | 188 # indent-tabs-mode:nil |
| 188 # End: | 189 # End: |
| 189 # vim: set expandtab tabstop=2 shiftwidth=2: | 190 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |