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

Side by Side Diff: gyp/skia_lib.gyp

Issue 17101010: Fuse skgr & gr targets in gyp files (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « gyp/gpu.gypi ('k') | no next file » | 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 ], 18 ],
19 }], 19 }],
20 [ 'arm_neon == 1', { 20 [ 'arm_neon == 1', {
21 'component_libs': [ 21 'component_libs': [
22 'opts.gyp:opts_neon', 22 'opts.gyp:opts_neon',
23 ], 23 ],
24 }], 24 }],
25 [ 'skia_gpu', { 25 [ 'skia_gpu', {
26 'component_libs': [ 26 'component_libs': [
27 'gpu.gyp:gr', 27 'gpu.gyp:skgpu',
28 'gpu.gyp:skgr',
29 ], 28 ],
30 }], 29 }],
31 [ 'skia_os == "nacl"', { 30 [ 'skia_os == "nacl"', {
32 'component_libs': [ 31 'component_libs': [
33 'freetype.gyp:freetype', 32 'freetype.gyp:freetype',
34 ], 33 ],
35 }], 34 }],
36 ], 35 ],
37 }, 36 },
38 'targets': [ 37 'targets': [
(...skipping 24 matching lines...) Expand all
63 ], 62 ],
64 }, 63 },
65 ], 64 ],
66 } 65 }
67 66
68 # Local Variables: 67 # Local Variables:
69 # tab-width:2 68 # tab-width:2
70 # indent-tabs-mode:nil 69 # indent-tabs-mode:nil
71 # End: 70 # End:
72 # vim: set expandtab tabstop=2 shiftwidth=2: 71 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/gpu.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698