Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / skia / skia_common.gypi
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.
4
5 # This gypi file handles the removal of platform-specific files from the
6 # Skia build.
7 {
8   'includes': [
9     # skia_for_chromium_defines.gypi defines skia_for_chromium_defines
10     '../third_party/skia/gyp/skia_for_chromium_defines.gypi',
11   ],
12
13   'include_dirs': [
14     '..',
15     'config',
16   ],
17
18   'conditions': [
19     [ 'OS != "android"', {
20       'sources/': [
21          ['exclude', '_android\\.(cc|cpp)$'],
22       ],
23     }],
24     [ 'OS == "android"', {
25       'defines': [
26         'SK_FONTHOST_DOES_NOT_USE_FONTMGR',
27       ],
28     }],
29     [ 'OS != "ios"', {
30       'sources/': [
31          ['exclude', '_ios\\.(cc|cpp|mm?)$'],
32       ],
33     }],
34     [ 'OS == "ios"', {
35       'defines': [
36         'SK_BUILD_FOR_IOS',
37       ],
38     }],
39     [ 'OS != "mac"', {
40       'sources/': [
41         ['exclude', '_mac\\.(cc|cpp|mm?)$'],
42       ],
43     }],
44     [ 'OS == "mac"', {
45       'defines': [
46         'SK_BUILD_FOR_MAC',
47       ],
48     }],
49     [ 'OS != "win"', {
50       'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ],
51     }],
52     [ 'OS == "win"', {
53       'defines': [
54         # On windows, GDI handles are a scarse system-wide resource so we have to keep
55         # the glyph cache, which holds up to 4 GDI handles per entry, to a fairly small
56         # size.
57         # http://crbug.com/314387
58         'SK_DEFAULT_FONT_CACHE_COUNT_LIMIT=256',
59       ],
60     }],
61     [ 'desktop_linux == 0 and chromeos == 0', {
62       'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ],
63     }],
64     [ 'use_cairo == 0', {
65       'sources/': [ ['exclude', '_cairo\\.(cc|cpp)$'] ],
66     }],
67
68     #Settings for text blitting, chosen to approximate the system browser.
69     [ 'OS == "linux"', {
70       'defines': [
71         'SK_GAMMA_EXPONENT=1.2',
72         'SK_GAMMA_CONTRAST=0.2',
73         'SK_HIGH_QUALITY_IS_LANCZOS',
74       ],
75     }],
76     ['OS == "android"', {
77       'defines': [
78         'SK_GAMMA_APPLY_TO_A8',
79         'SK_GAMMA_EXPONENT=1.4',
80         'SK_GAMMA_CONTRAST=0.0',
81       ],
82     }],
83     ['OS == "win"', {
84       'defines': [
85         'SK_GAMMA_SRGB',
86         'SK_GAMMA_CONTRAST=0.5',
87         'SK_HIGH_QUALITY_IS_LANCZOS',
88       ],
89     }],
90     ['OS == "mac"', {
91       'defines': [
92         'SK_GAMMA_SRGB',
93         'SK_GAMMA_CONTRAST=0.0',
94         'SK_HIGH_QUALITY_IS_LANCZOS',
95       ],
96     }],
97
98     # For POSIX platforms, prefer the Mutex implementation provided by Skia
99     # since it does not generate static initializers.
100     [ 'os_posix == 1', {
101       'defines+': [
102         'SK_USE_POSIX_THREADS',
103       ],
104       'direct_dependent_settings': {
105         'defines': [
106           'SK_USE_POSIX_THREADS',
107         ],
108       },
109     }],
110
111     # Neon support.
112     [ 'target_arch == "arm" and arm_version >= 7 and arm_neon == 1', {
113       'defines': [
114         '__ARM_HAVE_NEON',
115       ],
116     }],
117     [ 'target_arch == "arm" and arm_version >= 7 and arm_neon_optional == 1', {
118       'defines': [
119         '__ARM_HAVE_OPTIONAL_NEON_SUPPORT',
120       ],
121     }],
122   ],
123
124   'variables': {
125     'variables': {
126       'conditions': [
127         ['OS== "ios"', {
128           'skia_support_gpu': 0,
129         }, {
130           'skia_support_gpu': 1,
131         }],
132         ['OS=="ios" or enable_printing == 0', {
133           'skia_support_pdf': 0,
134         }, {
135           'skia_support_pdf': 1,
136         }],
137       ],
138     },
139     'skia_support_gpu': '<(skia_support_gpu)',
140     'skia_support_pdf': '<(skia_support_pdf)',
141
142     # These two set the paths so we can include skia/gyp/core.gypi
143     'skia_src_path': '../third_party/skia/src',
144     'skia_include_path': '../third_party/skia/include',
145
146     # This list will contain all defines that also need to be exported to
147     # dependent components.
148     'skia_export_defines': [
149       'SK_ENABLE_INST_COUNT=0',
150       'SK_SUPPORT_GPU=<(skia_support_gpu)',
151       'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"',
152       'SK_ENABLE_LEGACY_API_ALIASING=1',
153       'SK_ATTR_DEPRECATED=SK_NOTHING_ARG1',
154       'GR_GL_IGNORE_ES3_MSAA=0',
155       'SK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT',
156
157       # This variable contains additional defines, specified in skia's
158       # skia_for_chromium_defines.gypi file.
159       '<@(skia_for_chromium_defines)',
160       'SK_SUPPORT_LEGACY_GETTOTALCLIP',
161     ],
162
163     'default_font_cache_limit%': '(20*1024*1024)',
164
165     'conditions': [
166       ['OS== "android"', {
167         # Android devices are typically more memory constrained, so
168         # default to a smaller glyph cache (it may be overriden at runtime
169         # when the renderer starts up, depending on the actual device memory).
170         'default_font_cache_limit': '(1*1024*1024)',
171         'skia_export_defines': [
172           'SK_BUILD_FOR_ANDROID',
173         ],
174       }],
175     ],
176   },
177
178   'defines': [
179     '<@(skia_export_defines)',
180
181     # skia uses static initializers to initialize the serialization logic
182     # of its "pictures" library. This is currently not used in chrome; if
183     # it ever gets used the processes that use it need to call
184     # SkGraphics::Init().
185     'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0',
186
187     # Forcing the unoptimized path for the offset image filter in skia until
188     # all filters used in Blink support the optimized path properly
189     'SK_DISABLE_OFFSETIMAGEFILTER_OPTIMIZATION',
190
191     # Disable this check because it is too strict for some Chromium-specific
192     # subclasses of SkPixelRef. See bug: crbug.com/171776.
193     'SK_DISABLE_PIXELREF_LOCKCOUNT_BALANCE_CHECK',
194
195     'IGNORE_ROT_AA_RECT_OPT',
196
197     'SK_IGNORE_BLURRED_RRECT_OPT',
198
199     'SK_IGNORE_QUAD_RR_CORNERS_OPT',
200
201     # this flag forces Skia not to use typographic metrics with GDI.
202     'SK_GDI_ALWAYS_USE_TEXTMETRICS_FOR_FONT_METRICS',
203
204     'SK_DEFAULT_FONT_CACHE_LIMIT=<(default_font_cache_limit)',
205
206     'SK_USE_DISCARDABLE_SCALEDIMAGECACHE',
207   ],
208
209   'direct_dependent_settings': {
210     'defines': [
211       '<@(skia_export_defines)',
212     ],
213   },
214
215   # We would prefer this to be direct_dependent_settings,
216   # however we currently have no means to enforce that direct dependents
217   # re-export if they include Skia headers in their public headers.
218   'all_dependent_settings': {
219     'include_dirs': [
220       '..',
221       'config',
222     ],
223   },
224
225   'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800],
226 }