blob: 04d4bfc2076606a28bb8d22f710f8c4128514ac3 [file] [log] [blame]
djsollen@google.com52f02972013-06-03 12:10:19 +00001# The minimal set of static libraries for basic Skia functionality.
2
3{
4 'variables': {
5 'component_libs': [
6 'core.gyp:core',
7 'effects.gyp:effects',
8 'images.gyp:images',
9 'opts.gyp:opts',
10 'ports.gyp:ports',
11 'sfnt.gyp:sfnt',
12 'utils.gyp:utils',
13 ],
14 'conditions': [
15 [ 'skia_arch_type == "x86" and skia_os != "android"', {
16 'component_libs': [
17 'opts.gyp:opts_ssse3',
henrik.smiding3bb195e2014-06-27 08:03:17 -070018 'opts.gyp:opts_sse4',
djsollen@google.com52f02972013-06-03 12:10:19 +000019 ],
20 }],
21 [ 'arm_neon == 1', {
22 'component_libs': [
23 'opts.gyp:opts_neon',
24 ],
25 }],
26 [ 'skia_gpu', {
27 'component_libs': [
robertphillips@google.come63296e2013-06-18 14:43:53 +000028 'gpu.gyp:skgpu',
djsollen@google.com52f02972013-06-03 12:10:19 +000029 ],
30 }],
djsollen@google.com52f02972013-06-03 12:10:19 +000031 ],
32 },
33 'targets': [
34 {
35 'target_name': 'skia_lib',
36 'conditions': [
37 [ 'skia_shared_lib', {
38 'conditions': [
39 [ 'skia_os == "android"', {
40 # The name skia will confuse the linker on android into using the system's libskia.so
41 # instead of the one packaged with the apk. We simply choose a different name to fix
42 # this.
43 'product_name': 'skia_android',
44 }, {
45 'product_name': 'skia',
46 }],
47 ],
48 'type': 'shared_library',
49 }, {
50 'type': 'none',
51 }],
52 ],
53 'dependencies': [
54 '<@(component_libs)',
55 ],
56 'export_dependent_settings': [
57 '<@(component_libs)',
58 ],
59 },
60 ],
61}