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

Side by Side Diff: gyp/opts.gypi

Issue 2087343002: Add stub for avx. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add inclusion of sse4 intrinsics if needed. Created 4 years, 5 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 '<(skia_src_path)/opts/SkBlitRow_opts_SSE2.cpp', 42 '<(skia_src_path)/opts/SkBlitRow_opts_SSE2.cpp',
43 '<(skia_src_path)/opts/opts_check_x86.cpp', 43 '<(skia_src_path)/opts/opts_check_x86.cpp',
44 ], 44 ],
45 'ssse3_sources': [ 45 'ssse3_sources': [
46 '<(skia_src_path)/opts/SkBitmapProcState_opts_SSSE3.cpp', 46 '<(skia_src_path)/opts/SkBitmapProcState_opts_SSSE3.cpp',
47 '<(skia_src_path)/opts/SkOpts_ssse3.cpp', 47 '<(skia_src_path)/opts/SkOpts_ssse3.cpp',
48 ], 48 ],
49 'sse41_sources': [ 49 'sse41_sources': [
50 '<(skia_src_path)/opts/SkOpts_sse41.cpp', 50 '<(skia_src_path)/opts/SkOpts_sse41.cpp',
51 ], 51 ],
52 'avx_sources': [
53 '<(skia_src_path)/opts/SkOpts_avx.cpp',
54 ],
52 # These targets are empty, but XCode doesn't like that, so add an empty file to each. 55 # These targets are empty, but XCode doesn't like that, so add an empty file to each.
53 'sse42_sources': [ 56 'sse42_sources': [
54 '<(skia_src_path)/core/SkForceCPlusPlusLinking.cpp', 57 '<(skia_src_path)/core/SkForceCPlusPlusLinking.cpp',
55 ], 58 ],
56 'avx_sources': [
57 '<(skia_src_path)/core/SkForceCPlusPlusLinking.cpp',
58 ],
59 'avx2_sources': [ 59 'avx2_sources': [
60 '<(skia_src_path)/core/SkForceCPlusPlusLinking.cpp', 60 '<(skia_src_path)/core/SkForceCPlusPlusLinking.cpp',
61 ], 61 ],
62 } 62 }
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