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

Side by Side Diff: gyp/skia_lib.gyp

Issue 336413007: Revert of Add SSE4 optimization of S32A_Opaque_Blitrow (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « gyp/opts.gyp ('k') | src/opts/SkBlitRow_opts_SSE4.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # The minimal set of static libraries for basic Skia functionality. 1 # The minimal set of static libraries for basic Skia functionality.
2 2
3 { 3 {
4 'variables': { 4 'variables': {
5 'component_libs': [ 5 'component_libs': [
6 'core.gyp:core', 6 'core.gyp:core',
7 'effects.gyp:effects', 7 'effects.gyp:effects',
8 'images.gyp:images', 8 'images.gyp:images',
9 'opts.gyp:opts', 9 'opts.gyp:opts',
10 'ports.gyp:ports', 10 'ports.gyp:ports',
11 'sfnt.gyp:sfnt', 11 'sfnt.gyp:sfnt',
12 'utils.gyp:utils', 12 'utils.gyp:utils',
13 ], 13 ],
14 'conditions': [ 14 'conditions': [
15 [ 'skia_arch_type == "x86" and skia_os != "android"', { 15 [ 'skia_arch_type == "x86" and skia_os != "android"', {
16 'component_libs': [ 16 'component_libs': [
17 'opts.gyp:opts_ssse3', 17 'opts.gyp:opts_ssse3',
18 'opts.gyp:opts_sse4',
19 ], 18 ],
20 }], 19 }],
21 [ 'arm_neon == 1', { 20 [ 'arm_neon == 1', {
22 'component_libs': [ 21 'component_libs': [
23 'opts.gyp:opts_neon', 22 'opts.gyp:opts_neon',
24 ], 23 ],
25 }], 24 }],
26 [ 'skia_gpu', { 25 [ 'skia_gpu', {
27 'component_libs': [ 26 'component_libs': [
28 'gpu.gyp:skgpu', 27 'gpu.gyp:skgpu',
(...skipping 23 matching lines...) Expand all
52 ], 51 ],
53 'dependencies': [ 52 'dependencies': [
54 '<@(component_libs)', 53 '<@(component_libs)',
55 ], 54 ],
56 'export_dependent_settings': [ 55 'export_dependent_settings': [
57 '<@(component_libs)', 56 '<@(component_libs)',
58 ], 57 ],
59 }, 58 },
60 ], 59 ],
61 } 60 }
OLDNEW
« no previous file with comments | « gyp/opts.gyp ('k') | src/opts/SkBlitRow_opts_SSE4.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698