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

Side by Side Diff: gyp/opts.gypi

Issue 2260823002: Use ARMv8 CRC32 instructions for SkOpts::hash(). (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 4 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
« no previous file with comments | « no previous file | src/core/SkOpts.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 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 { 5 {
6 'none_sources': [ 6 'none_sources': [
7 '<(skia_src_path)/opts/SkBitmapProcState_opts_none.cpp', 7 '<(skia_src_path)/opts/SkBitmapProcState_opts_none.cpp',
8 '<(skia_src_path)/opts/SkBlitMask_opts_none.cpp', 8 '<(skia_src_path)/opts/SkBlitMask_opts_none.cpp',
9 '<(skia_src_path)/opts/SkBlitRow_opts_none.cpp', 9 '<(skia_src_path)/opts/SkBlitRow_opts_none.cpp',
10 ], 10 ],
(...skipping 12 matching lines...) Expand all
23 'arm64_sources': [ 23 'arm64_sources': [
24 '<(skia_src_path)/opts/SkBitmapProcState_arm_neon.cpp', 24 '<(skia_src_path)/opts/SkBitmapProcState_arm_neon.cpp',
25 '<(skia_src_path)/opts/SkBitmapProcState_matrixProcs_neon.cpp', 25 '<(skia_src_path)/opts/SkBitmapProcState_matrixProcs_neon.cpp',
26 '<(skia_src_path)/opts/SkBitmapProcState_opts_arm.cpp', 26 '<(skia_src_path)/opts/SkBitmapProcState_opts_arm.cpp',
27 '<(skia_src_path)/opts/SkBlitMask_opts_arm.cpp', 27 '<(skia_src_path)/opts/SkBlitMask_opts_arm.cpp',
28 '<(skia_src_path)/opts/SkBlitMask_opts_arm_neon.cpp', 28 '<(skia_src_path)/opts/SkBlitMask_opts_arm_neon.cpp',
29 '<(skia_src_path)/opts/SkBlitRow_opts_arm.cpp', 29 '<(skia_src_path)/opts/SkBlitRow_opts_arm.cpp',
30 '<(skia_src_path)/opts/SkBlitRow_opts_arm_neon.cpp', 30 '<(skia_src_path)/opts/SkBlitRow_opts_arm_neon.cpp',
31 ], 31 ],
32 'crc32_sources': [ 32 'crc32_sources': [
33 '<(skia_src_path)/core/SkForceCPlusPlusLinking.cpp', 33 '<(skia_src_path)/opts/SkOpts_crc32.cpp',
34 ], 34 ],
35 35
36 'mips_dsp_sources': [ 36 'mips_dsp_sources': [
37 '<(skia_src_path)/opts/SkBitmapProcState_opts_mips_dsp.cpp', 37 '<(skia_src_path)/opts/SkBitmapProcState_opts_mips_dsp.cpp',
38 '<(skia_src_path)/opts/SkBlitMask_opts_none.cpp', 38 '<(skia_src_path)/opts/SkBlitMask_opts_none.cpp',
39 '<(skia_src_path)/opts/SkBlitRow_opts_mips_dsp.cpp', 39 '<(skia_src_path)/opts/SkBlitRow_opts_mips_dsp.cpp',
40 ], 40 ],
41 41
42 'sse2_sources': [ 42 'sse2_sources': [
43 '<(skia_src_path)/opts/SkBitmapFilter_opts_SSE2.cpp', 43 '<(skia_src_path)/opts/SkBitmapFilter_opts_SSE2.cpp',
(...skipping 12 matching lines...) Expand all
56 '<(skia_src_path)/opts/SkOpts_sse42.cpp', 56 '<(skia_src_path)/opts/SkOpts_sse42.cpp',
57 ], 57 ],
58 'avx_sources': [ 58 'avx_sources': [
59 '<(skia_src_path)/opts/SkOpts_avx.cpp', 59 '<(skia_src_path)/opts/SkOpts_avx.cpp',
60 ], 60 ],
61 # These targets are empty, but XCode doesn't like that, so add an empty file to each. 61 # These targets are empty, but XCode doesn't like that, so add an empty file to each.
62 'avx2_sources': [ 62 'avx2_sources': [
63 '<(skia_src_path)/core/SkForceCPlusPlusLinking.cpp', 63 '<(skia_src_path)/core/SkForceCPlusPlusLinking.cpp',
64 ], 64 ],
65 } 65 }
OLDNEW
« no previous file with comments | « no previous file | src/core/SkOpts.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698