[Android] Support ALPHA_8 UI resources
[chromium-blink-merge.git] / skia / skia_library_opts.gyp
blob667310508fcee18551a3dec77d45c8a27bc4a673
1 # Copyright 2013 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.
6 # This gyp file contains the platform-specific optimizations for Skia
8   'targets': [
9     # Due to an unfortunate intersection of lameness between gcc and gyp,
10     # we have to build the *_SSE2.cpp files in a separate target.  The
11     # gcc lameness is that, in order to compile SSE2 intrinsics code, it
12     # must be passed the -msse2 flag.  However, with this flag, it may
13     # emit SSE2 instructions even for scalar code, such as the CPUID
14     # test used to test for the presence of SSE2.  So that, and all other
15     # code must be compiled *without* -msse2.  The gyp lameness is that it
16     # does not allow file-specific CFLAGS, so we must create this extra
17     # target for those files to be compiled with -msse2.
18     #
19     # This is actually only a problem on 32-bit Linux (all Intel Macs have
20     # SSE2, Linux x86_64 has SSE2 by definition, and MSC will happily emit
21     # SSE2 from instrinsics, which generating plain ol' 386 for everything
22     # else).  However, to keep the .gyp file simple and avoid platform-specific
23     # build breakage, we do this on all platforms.
25     # For about the same reason, we need to compile the ARM opts files
26     # separately as well.
27     {
28       'target_name': 'skia_opts',
29       'type': 'static_library',
30       'includes': [
31         'skia_common.gypi',
32         '../build/android/increase_size_for_speed.gypi',
33         # Disable LTO due to compiler error
34         # in mems_in_disjoint_alias_sets_p, at alias.c:393
35         # crbug.com/422255
36         '../build/android/disable_lto.gypi',
37       ],
38       'include_dirs': [
39         '../third_party/skia/include/core',
40         '../third_party/skia/include/effects',
41         '../third_party/skia/src/core',
42         '../third_party/skia/src/opts',
43         '../third_party/skia/src/utils',
44       ],
45       'conditions': [
46         [ 'os_posix == 1 and OS != "mac" and OS != "android" and \
47            target_arch != "arm" and target_arch != "arm64" and \
48            target_arch != "mipsel" and target_arch != "mips64el"', {
49           'cflags': [
50             '-msse2',
51           ],
52         }],
53         [ 'target_arch != "arm" and target_arch != "mipsel" and \
54            target_arch != "arm64" and target_arch != "mips64el"', {
55           'sources': [
56             '../third_party/skia/src/opts/SkBitmapFilter_opts_SSE2.cpp',
57             '../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp',
58             '../third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp',
59             '../third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp',
60             '../third_party/skia/src/opts/SkBlurImage_opts_SSE2.cpp',
61             '../third_party/skia/src/opts/SkMorphology_opts_SSE2.cpp',
62             '../third_party/skia/src/opts/SkTextureCompression_opts_none.cpp',
63             '../third_party/skia/src/opts/SkUtils_opts_SSE2.cpp',
64             '../third_party/skia/src/opts/SkXfermode_opts_SSE2.cpp',
65           ],
66           'dependencies': [
67             'skia_opts_ssse3',
68             'skia_opts_sse4',
69           ],
70         }],
71         [ 'target_arch == "arm"', {
72           'conditions': [
73             [ 'arm_version >= 7 and (arm_neon == 1 or arm_neon_optional == 1)', {
74               'dependencies': [
75                 'skia_opts_neon',
76               ]
77            }],
78           ],
79           # The assembly uses the frame pointer register (r7 in Thumb/r11 in
80           # ARM), the compiler doesn't like that. Explicitly remove the
81           # -fno-omit-frame-pointer flag for Android, as that gets added to all
82           # targets via common.gypi.
83           'cflags!': [
84             '-fno-omit-frame-pointer',
85             '-marm',
86             '-mapcs-frame',
87           ],
88           'cflags': [
89             '-fomit-frame-pointer',
90           ],
91           'sources': [
92             '../third_party/skia/src/opts/SkBitmapProcState_opts_arm.cpp',
93           ],
94         }],
95         [ 'target_arch == "arm" and (arm_version < 7 or arm_neon == 0)', {
96           'sources': [
97             '../third_party/skia/src/opts/memset.arm.S',
98           ],
99         }],
100         [ 'target_arch == "arm" and arm_version < 6', {
101           'sources': [
102             '../third_party/skia/src/opts/SkBlitMask_opts_none.cpp',
103             '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
104             '../third_party/skia/src/opts/SkBlurImage_opts_none.cpp',
105             '../third_party/skia/src/opts/SkMorphology_opts_none.cpp',
106             '../third_party/skia/src/opts/SkTextureCompression_opts_none.cpp',
107             '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
108             '../third_party/skia/src/opts/SkXfermode_opts_none.cpp',
109           ],
110         }],
111         [ 'target_arch == "arm" and arm_version >= 6', {
112           'sources': [
113             '../third_party/skia/src/opts/SkBlitMask_opts_arm.cpp',
114             '../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp',
115             '../third_party/skia/src/opts/SkBlitRow_opts_arm.h',
116             '../third_party/skia/src/opts/SkBlurImage_opts_arm.cpp',
117             '../third_party/skia/src/opts/SkMorphology_opts_arm.cpp',
118             '../third_party/skia/src/opts/SkTextureCompression_opts_arm.cpp',
119             '../third_party/skia/src/opts/SkUtils_opts_arm.cpp',
120             '../third_party/skia/src/opts/SkXfermode_opts_none.cpp',
121           ],
122         }],
123         [ 'target_arch == "mipsel" or target_arch == "mips64el"',{
124           'cflags': [
125             '-fomit-frame-pointer',
126           ],
127           'sources': [
128             '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
129             '../third_party/skia/src/opts/SkBlitMask_opts_none.cpp',
130             '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
131             '../third_party/skia/src/opts/SkBlurImage_opts_none.cpp',
132             '../third_party/skia/src/opts/SkMorphology_opts_none.cpp',
133             '../third_party/skia/src/opts/SkTextureCompression_opts_none.cpp',
134             '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
135             '../third_party/skia/src/opts/SkXfermode_opts_none.cpp',
136           ],
137         }],
138         [ 'target_arch == "arm64"', {
139           'sources': [
140             '../third_party/skia/src/opts/SkBitmapProcState_arm_neon.cpp',
141             '../third_party/skia/src/opts/SkBitmapProcState_matrixProcs_neon.cpp',
142             '../third_party/skia/src/opts/SkBitmapProcState_opts_arm.cpp',
143             '../third_party/skia/src/opts/SkBlitMask_opts_arm.cpp',
144             '../third_party/skia/src/opts/SkBlitMask_opts_arm_neon.cpp',
145             '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
146             '../third_party/skia/src/opts/SkBlurImage_opts_arm.cpp',
147             '../third_party/skia/src/opts/SkBlurImage_opts_neon.cpp',
148             '../third_party/skia/src/opts/SkMorphology_opts_arm.cpp',
149             '../third_party/skia/src/opts/SkMorphology_opts_neon.cpp',
150             '../third_party/skia/src/opts/SkTextureCompression_opts_arm.cpp',
151             '../third_party/skia/src/opts/SkTextureCompression_opts_neon.cpp',
152             '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
153             '../third_party/skia/src/opts/SkXfermode_opts_arm.cpp',
154             '../third_party/skia/src/opts/SkXfermode_opts_arm_neon.cpp',
155           ],
156         }],
157       ],
158     },
159     # For the same lame reasons as what is done for skia_opts, we have to
160     # create another target specifically for SSSE3 code as we would not want
161     # to compile the SSE2 code with -mssse3 which would potentially allow
162     # gcc to generate SSSE3 code.
163     {
164       'target_name': 'skia_opts_ssse3',
165       'type': 'static_library',
166       'includes': [
167         'skia_common.gypi',
168         '../build/android/increase_size_for_speed.gypi',
169       ],
170       'include_dirs': [
171         '../third_party/skia/include/core',
172         '../third_party/skia/include/effects',
173         '../third_party/skia/src/core',
174       ],
175       'conditions': [
176         [ 'OS in ["linux", "freebsd", "openbsd", "solaris", "android"]', {
177           'cflags': [
178             '-mssse3',
179           ],
180         }],
181         [ 'OS == "mac"', {
182           'xcode_settings': {
183             'GCC_ENABLE_SUPPLEMENTAL_SSE3_INSTRUCTIONS': 'YES',
184           },
185         }],
186         [ 'OS == "win" and clang == 1', {
187           # cl.exe's /arch flag doesn't have a setting for SSSE3, and cl.exe
188           # doesn't need it for intrinsics. clang-cl does need it, though.
189           'msvs_settings': {
190             'VCCLCompilerTool': { 'AdditionalOptions': [ '-mssse3' ] },
191           },
192         }],
193         [ 'OS == "win"', {
194           'include_dirs': [
195             'config/win',
196           ],
197           'direct_dependent_settings': {
198             'include_dirs': [
199               'config/win',
200             ],
201           },
202           'defines' : [
203             'SK_CPU_SSE_LEVEL=31'
204           ],
205         }],
206         [ 'target_arch != "arm" and target_arch != "arm64" and \
207            target_arch != "mipsel" and target_arch != "mips64el"', {
208           'sources': [
209             '../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp',
210           ],
211         }],
212       ],
213     },
214     # For the same lame reasons as what is done for skia_opts, we also have to
215     # create another target specifically for SSE4 code as we would not want
216     # to compile the SSE2 code with -msse4 which would potentially allow
217     # gcc to generate SSE4 code.
218     {
219       'target_name': 'skia_opts_sse4',
220       'type': 'static_library',
221       'includes': [
222         'skia_common.gypi',
223         '../build/android/increase_size_for_speed.gypi',
224       ],
225       'include_dirs': [
226         '../third_party/skia/include/core',
227         '../third_party/skia/src/core',
228       ],
229       'sources': [
230         '../third_party/skia/src/opts/SkBlurImage_opts_SSE4.cpp',
231       ],
232       'conditions': [
233         [ 'OS in ["linux", "freebsd", "openbsd", "solaris", "android"]', {
234           'cflags': [
235             '-msse4.1',
236           ],
237         }],
238         [ 'OS == "mac"', {
239           'xcode_settings': {
240             'GCC_ENABLE_SSE41_EXTENSIONS': 'YES',
241           },
242         }],
243         [ 'OS == "win" and clang == 1', {
244           # cl.exe's /arch flag doesn't have a setting for SSE4.1, and cl.exe
245           # doesn't need it for intrinsics. clang-cl does need it, though.
246           'msvs_settings': {
247             'VCCLCompilerTool': { 'AdditionalOptions': [ '-msse4.1' ] },
248           },
249         }],
250         [ 'OS == "win"', {
251           'defines' : [
252             'SK_CPU_SSE_LEVEL=41'
253           ],
254         }],
255         [ 'target_arch == "x64"', {
256           'sources': [
257             '../third_party/skia/src/opts/SkBlitRow_opts_SSE4_x64_asm.S',
258           ],
259         }],
260         [ 'target_arch == "ia32"', {
261           'sources': [
262             '../third_party/skia/src/opts/SkBlitRow_opts_SSE4_asm.S',
263           ],
264         }],
265       ],
266     },
267     {
268       'target_name': 'skia_opts_none',
269       'type': 'static_library',
270       'includes': [
271         'skia_common.gypi',
272         '../build/android/increase_size_for_speed.gypi',
273       ],
274       'include_dirs': [
275         '../third_party/skia/include/core',
276         '../third_party/skia/include/effects',
277         '../third_party/skia/src/core',
278         '../third_party/skia/src/utils',
279       ],
280       'sources': [
281         '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
282         '../third_party/skia/src/opts/SkBlitMask_opts_none.cpp',
283         '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
284         '../third_party/skia/src/opts/SkBlurImage_opts_none.cpp',
285         '../third_party/skia/src/opts/SkMorphology_opts_none.cpp',
286         '../third_party/skia/src/opts/SkTextureCompression_opts_none.cpp',
287         '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
288         '../third_party/skia/src/opts/SkXfermode_opts_none.cpp',
289       ],
290     },
291   ],
292   'conditions': [
293     # NEON code must be compiled with -mfpu=neon which also affects scalar
294     # code. To support dynamic NEON code paths, we need to build all
295     # NEON-specific sources in a separate static library. The situation
296     # is very similar to the SSSE3 one.
297     ['target_arch == "arm" and (arm_neon == 1 or arm_neon_optional == 1)', {
298       'targets': [
299         {
300           'target_name': 'skia_opts_neon',
301           'type': 'static_library',
302           'includes': [
303             'skia_common.gypi',
304             '../build/android/increase_size_for_speed.gypi',
305             # Disable LTO due to Neon issues
306             # crbug.com/408997
307             '../build/android/disable_lto.gypi',
308           ],
309           'include_dirs': [
310             '../third_party/skia/include/core',
311             '../third_party/skia/include/effects',
312             '../third_party/skia/src/core',
313             '../third_party/skia/src/opts',
314             '../third_party/skia/src/utils',
315           ],
316           'cflags!': [
317             '-fno-omit-frame-pointer',
318             '-mfpu=vfp',  # remove them all, just in case.
319             '-mfpu=vfpv3',
320             '-mfpu=vfpv3-d16',
321           ],
322           'cflags': [
323             '-mfpu=neon',
324             '-fomit-frame-pointer',
325           ],
326           'ldflags': [
327             '-march=armv7-a',
328             '-Wl,--fix-cortex-a8',
329           ],
330           'sources': [
331             '../third_party/skia/src/opts/SkBitmapProcState_arm_neon.cpp',
332             '../third_party/skia/src/opts/SkBitmapProcState_matrixProcs_neon.cpp',
333             '../third_party/skia/src/opts/SkBitmapProcState_matrix_clamp_neon.h',
334             '../third_party/skia/src/opts/SkBitmapProcState_matrix_repeat_neon.h',
335             '../third_party/skia/src/opts/SkBlitMask_opts_arm_neon.cpp',
336             '../third_party/skia/src/opts/SkBlitRow_opts_arm_neon.cpp',
337             '../third_party/skia/src/opts/SkBlurImage_opts_neon.cpp',
338             '../third_party/skia/src/opts/SkMorphology_opts_neon.cpp',
339             '../third_party/skia/src/opts/SkTextureCompression_opts_neon.cpp',
340             '../third_party/skia/src/opts/SkXfermode_opts_arm_neon.cpp',
341             '../third_party/skia/src/opts/memset16_neon.S',
342             '../third_party/skia/src/opts/memset32_neon.S',
343           ],
344         },
345       ],
346     }],
347   ],