blob: a2f5cfdcd4725b930e60d998ef1a9fe4f110f99b [file] [log] [blame]
commit-bot@chromium.orga936e372013-03-14 14:42:18 +00001# Copyright (c) 2012 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6 'variables': {
7 'use_system_libwebp%': 0,
8 },
9 'conditions': [
10 ['use_system_libwebp==0', {
11 'targets': [
12 {
13 'target_name': 'libwebp_dec',
14 'type': 'static_library',
15 'include_dirs': [
16 '../third_party/externals/libwebp',
17 ],
18 'sources': [
djsollen@google.com42416ee2013-06-10 15:19:33 +000019 '../third_party/externals/libwebp/src/dec/alpha.c',
20 '../third_party/externals/libwebp/src/dec/buffer.c',
21 '../third_party/externals/libwebp/src/dec/frame.c',
22 '../third_party/externals/libwebp/src/dec/idec.c',
23 '../third_party/externals/libwebp/src/dec/io.c',
24 '../third_party/externals/libwebp/src/dec/layer.c',
25 '../third_party/externals/libwebp/src/dec/quant.c',
26 '../third_party/externals/libwebp/src/dec/tree.c',
27 '../third_party/externals/libwebp/src/dec/vp8.c',
28 '../third_party/externals/libwebp/src/dec/vp8l.c',
29 '../third_party/externals/libwebp/src/dec/webp.c',
30 ],
31 },
32 {
33 'target_name': 'libwebp_demux',
34 'type': 'static_library',
35 'include_dirs': [
36 '../third_party/externals/libwebp',
37 ],
38 'sources': [
39 '../third_party/externals/libwebp/src/demux/demux.c',
commit-bot@chromium.orga936e372013-03-14 14:42:18 +000040 ],
commit-bot@chromium.orga936e372013-03-14 14:42:18 +000041 },
42 {
43 'target_name': 'libwebp_dsp',
44 'type': 'static_library',
45 'include_dirs': [
46 '../third_party/externals/libwebp',
47 ],
48 'sources': [
djsollen@google.com42416ee2013-06-10 15:19:33 +000049 '../third_party/externals/libwebp/src/dsp/cpu.c',
50 '../third_party/externals/libwebp/src/dsp/dec.c',
51 '../third_party/externals/libwebp/src/dsp/dec_sse2.c',
52 '../third_party/externals/libwebp/src/dsp/enc.c',
53 '../third_party/externals/libwebp/src/dsp/enc_sse2.c',
54 '../third_party/externals/libwebp/src/dsp/lossless.c',
55 '../third_party/externals/libwebp/src/dsp/upsampling.c',
56 '../third_party/externals/libwebp/src/dsp/upsampling_sse2.c',
57 '../third_party/externals/libwebp/src/dsp/yuv.c',
commit-bot@chromium.orga936e372013-03-14 14:42:18 +000058 ],
commit-bot@chromium.orga936e372013-03-14 14:42:18 +000059 'conditions': [
60 ['skia_os == "android"', {
61 'dependencies' : [
62 'android_deps.gyp:cpu_features',
63 ],
64 }],
65 ],
66 },
67 {
68 'target_name': 'libwebp_dsp_neon',
69 'conditions': [
70 ['armv7 == 1', {
71 'type': 'static_library',
72 'include_dirs': [
73 '../third_party/externals/libwebp',
74 ],
75 'sources': [
djsollen@google.com42416ee2013-06-10 15:19:33 +000076 '../third_party/externals/libwebp/src/dsp/dec_neon.c',
commit-bot@chromium.orga936e372013-03-14 14:42:18 +000077 ],
78 # behavior similar dsp_neon.c.neon in an Android.mk
skia.committer@gmail.comc49cabf2013-03-15 07:05:19 +000079 'cflags!': [
commit-bot@chromium.orga936e372013-03-14 14:42:18 +000080 '-mfpu=vfpv3-d16',
commit-bot@chromium.orga936e372013-03-14 14:42:18 +000081 ],
82 'cflags': [ '-mfpu=neon' ],
83 },{ # "armv7 != 1"
84 'type': 'none',
85 }],
86 ],
87 },
88 {
89 'target_name': 'libwebp_enc',
90 'type': 'static_library',
91 'include_dirs': [
92 '../third_party/externals/libwebp',
93 ],
94 'sources': [
djsollen@google.com42416ee2013-06-10 15:19:33 +000095 '../third_party/externals/libwebp/src/enc/alpha.c',
96 '../third_party/externals/libwebp/src/enc/analysis.c',
97 '../third_party/externals/libwebp/src/enc/backward_references.c',
98 '../third_party/externals/libwebp/src/enc/config.c',
99 '../third_party/externals/libwebp/src/enc/cost.c',
100 '../third_party/externals/libwebp/src/enc/filter.c',
101 '../third_party/externals/libwebp/src/enc/frame.c',
102 '../third_party/externals/libwebp/src/enc/histogram.c',
103 '../third_party/externals/libwebp/src/enc/iterator.c',
104 '../third_party/externals/libwebp/src/enc/layer.c',
105 '../third_party/externals/libwebp/src/enc/picture.c',
106 '../third_party/externals/libwebp/src/enc/quant.c',
107 '../third_party/externals/libwebp/src/enc/syntax.c',
108 '../third_party/externals/libwebp/src/enc/token.c',
109 '../third_party/externals/libwebp/src/enc/tree.c',
110 '../third_party/externals/libwebp/src/enc/vp8l.c',
111 '../third_party/externals/libwebp/src/enc/webpenc.c',
commit-bot@chromium.orga936e372013-03-14 14:42:18 +0000112 ],
commit-bot@chromium.orga936e372013-03-14 14:42:18 +0000113 },
114 {
115 'target_name': 'libwebp_utils',
116 'type': 'static_library',
117 'include_dirs': [
118 '../third_party/externals/libwebp',
119 ],
120 'sources': [
djsollen@google.com42416ee2013-06-10 15:19:33 +0000121 '../third_party/externals/libwebp/src/utils/bit_reader.c',
122 '../third_party/externals/libwebp/src/utils/bit_writer.c',
123 '../third_party/externals/libwebp/src/utils/color_cache.c',
124 '../third_party/externals/libwebp/src/utils/filters.c',
125 '../third_party/externals/libwebp/src/utils/huffman.c',
126 '../third_party/externals/libwebp/src/utils/huffman_encode.c',
127 '../third_party/externals/libwebp/src/utils/quant_levels.c',
128 '../third_party/externals/libwebp/src/utils/quant_levels_dec.c',
129 '../third_party/externals/libwebp/src/utils/rescaler.c',
130 '../third_party/externals/libwebp/src/utils/thread.c',
131 '../third_party/externals/libwebp/src/utils/utils.c',
commit-bot@chromium.orga936e372013-03-14 14:42:18 +0000132 ],
commit-bot@chromium.orga936e372013-03-14 14:42:18 +0000133 },
134 {
135 'target_name': 'libwebp',
136 'type': 'none',
137 'dependencies' : [
138 'libwebp_dec',
djsollen@google.com42416ee2013-06-10 15:19:33 +0000139 'libwebp_demux',
commit-bot@chromium.orga936e372013-03-14 14:42:18 +0000140 'libwebp_dsp',
141 'libwebp_dsp_neon',
142 'libwebp_enc',
143 'libwebp_utils',
144 ],
145 'direct_dependent_settings': {
146 'include_dirs': [
djsollen@google.com42416ee2013-06-10 15:19:33 +0000147 '../third_party/externals/libwebp/src',
commit-bot@chromium.orga936e372013-03-14 14:42:18 +0000148 ],
149 },
150 'conditions': [
151 ['OS!="win"', {'product_name': 'webp'}],
152 ],
153 },
154 ],
155 }, {
156 'targets': [
157 {
158 'target_name': 'libwebp',
159 'type': 'none',
160 'direct_dependent_settings': {
161 'defines': [
162 'ENABLE_WEBP',
163 ],
164 },
165 'link_settings': {
166 'libraries': [
167 '-lwebp',
168 ],
169 },
170 }
171 ],
172 }],
173 ],
174}