OLD | NEW |
---|---|
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', | |
mtklein
2014/05/16 18:06:38
Derek, how come we exclude ssse3 and sse4 from and
| |
18 ], | 19 ], |
19 }], | 20 }], |
20 [ 'arm_neon == 1', { | 21 [ 'arm_neon == 1', { |
21 'component_libs': [ | 22 'component_libs': [ |
22 'opts.gyp:opts_neon', | 23 'opts.gyp:opts_neon', |
23 ], | 24 ], |
24 }], | 25 }], |
25 [ 'skia_gpu', { | 26 [ 'skia_gpu', { |
26 'component_libs': [ | 27 'component_libs': [ |
27 'gpu.gyp:skgpu', | 28 'gpu.gyp:skgpu', |
(...skipping 23 matching lines...) Expand all Loading... | |
51 ], | 52 ], |
52 'dependencies': [ | 53 'dependencies': [ |
53 '<@(component_libs)', | 54 '<@(component_libs)', |
54 ], | 55 ], |
55 'export_dependent_settings': [ | 56 'export_dependent_settings': [ |
56 '<@(component_libs)', | 57 '<@(component_libs)', |
57 ], | 58 ], |
58 }, | 59 }, |
59 ], | 60 ], |
60 } | 61 } |
OLD | NEW |