blob: 6d101ed64c73932c43d99c6ca5b4a5cd44ec61ea [file] [log] [blame]
epoger@google.com573e8ba2012-03-16 18:28:24 +00001# Copyright 2012 The Android Open Source Project
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6{
7 # Get ready for the ugly...
8 #
9 # - We have to nest our variables dictionaries multiple levels deep, so that
10 # this and other gyp files can rely on previously-set variable values in
11 # their 'variables': { 'conditions': [] } clauses.
12 #
13 # Example 1:
14 # Within this file, we use the value of variable 'skia_os' to set the
15 # value of variable 'os_posix', so 'skia_os' must be defined within a
16 # "more inner" (enclosed) scope than 'os_posix'.
17 #
18 # Example 2:
19 # http://src.chromium.org/viewvc/chrome/trunk/src/third_party/libjpeg/libjpeg.gyp?revision=102306 ,
20 # which we currently import into our build, uses the value of 'os_posix'
21 # within the 'conditions' list in its 'variables' dict.
22 # In order for that to work, it needs the value of 'os_posix' to have been
23 # set within a "more inner" (enclosed) scope than its own 'variables' dict.
24 #
25 # - On the other hand, key/value pairs of a given 'variable' dict are only
26 # inherited by:
27 # 1. directly enclosing 'variable' dicts, and
28 # 2. "sibling" 'variable' dicts (which, I guess, are combined into a single
29 # 'variable' dict during gyp processing)
30 # and NOT inherited by "uncles" (siblings of directly enclosing 'variable'
31 # dicts), so we have to re-define every variable at every enclosure level
32 # within our ridiculous matryoshka doll of 'variable' dicts. That's why
33 # we have variable definitions like this: 'skia_os%': '<(skia_os)',
34 #
35 # See http://src.chromium.org/viewvc/chrome/trunk/src/build/common.gypi?revision=127004 ,
36 # which deals with these same constraints in a similar manner.
37 #
38 'variables': { # level 1
39 'variables': { # level 2
40
41 # Variables needed by conditions list within the level-2 variables dict.
42 'variables': { # level 3
43 # We use 'skia_os' instead of 'OS' throughout our gyp files, to allow
44 # for cross-compilation (e.g. building for either MacOS or iOS on Mac).
45 # We set it automatically based on 'OS' (the host OS), but allow the
46 # user to override it via GYP_DEFINES if they like.
47 'skia_os%': '<(OS)',
scroggo@google.comd4adfa32014-02-05 16:35:12 +000048
49 'skia_android_framework%': 0,
epoger@google.com573e8ba2012-03-16 18:28:24 +000050 },
51
52 # Re-define all variables defined within the level-3 'variables' dict,
53 # so that siblings of the level-2 'variables' dict can see them.
scroggo@google.comd4adfa32014-02-05 16:35:12 +000054 # (skia_os will depend on skia_android_framework.)
55 'skia_android_framework%': '<(skia_android_framework)',
caryclark@google.com976298e2012-09-24 19:41:43 +000056
epoger@google.com573e8ba2012-03-16 18:28:24 +000057 'conditions': [
scroggo@google.comd4adfa32014-02-05 16:35:12 +000058 [ 'skia_android_framework == 1', {
59 'skia_os%': 'android',
commit-bot@chromium.org93f5e512014-02-17 15:22:26 +000060 'skia_chrome_utils%': 0,
scroggo@google.comd4adfa32014-02-05 16:35:12 +000061 }, {
62 'skia_os%': '<(skia_os)',
commit-bot@chromium.org93f5e512014-02-17 15:22:26 +000063 'skia_chrome_utils%': 1,
scroggo@google.comd4adfa32014-02-05 16:35:12 +000064 }],
borenet@google.comefb1d772012-10-10 19:45:51 +000065 [ 'skia_os == "win"', {
epoger@google.com573e8ba2012-03-16 18:28:24 +000066 'os_posix%': 0,
67 }, {
68 'os_posix%': 1,
69 }],
commit-bot@chromium.org424fce32014-01-15 19:28:27 +000070 [ 'skia_os in ["linux", "win"]', {
commit-bot@chromium.org83f56922014-01-09 22:54:26 +000071 'skia_poppler_enabled%': 1,
72 }, {
73 'skia_poppler_enabled%': 0,
74 }],
commit-bot@chromium.orgb638a3a2014-01-14 20:49:26 +000075 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"]', {
borenet@google.coma37a5172012-08-09 20:44:32 +000076 'skia_arch_width%': 64,
77 }, {
78 'skia_arch_width%': 32,
79 }],
borenet@google.comefb1d772012-10-10 19:45:51 +000080 [ 'skia_os == "android"', {
borenet@google.comc2dd3d42012-09-11 21:37:28 +000081 'skia_static_initializers%': 0,
82 }, {
83 'skia_static_initializers%': 1,
84 }],
borenet@google.comefb1d772012-10-10 19:45:51 +000085 [ 'skia_os == "ios"', {
86 'skia_arch_type%': 'arm',
djsollen@google.comf7542ba2013-07-31 12:57:27 +000087 'arm_version%': 7,
borenet@google.comefb1d772012-10-10 19:45:51 +000088 'arm_neon%': 0, # neon asm files known not to work with the ios build
89 },{ # skia_os is not ios
90 'skia_arch_type%': 'x86',
djsollen@google.comf7542ba2013-07-31 12:57:27 +000091 'arm_version%': 0,
borenet@google.comefb1d772012-10-10 19:45:51 +000092 'arm_neon%': 0,
93 }],
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +000094 [ 'skia_os in ["android", "nacl"] and not skia_android_framework',
95 # skia_freetype_static - on OS variants that normally would
96 # dynamically link the system FreeType library, don't do
97 # that; instead statically link to the version in
98 # third_party/freetype and third_party/externals/freetype.
99 {
100 'skia_freetype_static%': '1',
101 }, {
102 'skia_freetype_static%': '0',
103 }
104 ],
epoger@google.com573e8ba2012-03-16 18:28:24 +0000105 ],
106
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +0000107 # skia_giflib_static - on OS variants that normally would link giflib
108 # with '-lgif' and include the headers from '/usr/include/gif_lib.h',
109 # don't do that; instead compile and staticlly link the version of
110 # giflib in third_party/externals/giflib.
111 'skia_giflib_static%': '0',
112
113 # skia_libpng_static - on OS variants that normally would link libpng
114 # with '-lpng' and include the headers from '/usr/include/png.h',
115 # don't do that; instead compile and staticlly link the version of
116 # libpng in third_party/externals/libpng.
117 'skia_libpng_static%': '0',
118
119 # skia_zlib_static - on OS variants that normally would link zlib with
120 # '-lz' or libz.dylib and include the headers from '<zlib.h>',
121 # don't do that; instead compile and staticlly link the version of
122 # zlib in third_party/externals/zlib.
123 'skia_zlib_static%': '0',
124
125 # skia_no_fontconfig - On POSIX systems that would normally use the
126 # SkFontHost_fontconfig interface; use the SkFontHost_linux
127 # version instead.
128 'skia_no_fontconfig%': '0',
129
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000130 'skia_sanitizer%': '',
epoger@google.com573e8ba2012-03-16 18:28:24 +0000131 'skia_scalar%': 'float',
132 'skia_mesa%': 0,
sugoi@google.come3453cb2013-01-07 14:26:40 +0000133 'skia_stroke_path_rendering%': 0,
jvanverth@google.com74dda902013-01-09 21:04:52 +0000134 'skia_android_path_rendering%': 0,
robertphillips@google.com4e5559a2013-10-30 17:04:16 +0000135 'skia_resource_cache_mb_limit%': 0,
136 'skia_resource_cache_count_limit%': 0,
robertphillips@google.com021bce92012-04-02 20:42:26 +0000137 'skia_angle%': 0,
bungeman@google.come8f05922012-08-16 16:13:40 +0000138 'skia_directwrite%': 0,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000139 'skia_gpu%': 1,
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000140 'skia_osx_deployment_target%': '',
djsollen@google.com5afbbc42012-11-29 15:09:58 +0000141 'skia_profile_enabled%': 0,
borenet@google.com663a9792013-03-08 22:22:44 +0000142 'skia_win_debuggers_path%': '',
djsollen@google.com52f02972013-06-03 12:10:19 +0000143 'skia_shared_lib%': 0,
zachr@google.comd6585682013-07-17 19:29:19 +0000144 'skia_opencl%': 0,
jvanverth@google.comd830d132013-11-11 20:54:09 +0000145 'skia_distancefield_fonts%': 0,
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000146
147 # These variables determine the default optimization level for different
148 # compilers.
149 'skia_default_vs_optimization_level': 3, # full (/Ox)
150 'skia_default_gcc_optimization_level': 3, # -O3
epoger@google.com573e8ba2012-03-16 18:28:24 +0000151 },
152
borenet@google.coma72aef82013-03-22 13:16:06 +0000153 'conditions': [
154 [ 'skia_os == "win" and skia_arch_width == 32 or '
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000155 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] '
156 'and skia_android_framework == 0 or '
borenet@google.coma72aef82013-03-22 13:16:06 +0000157 'skia_os == "mac" and skia_arch_width == 32', {
158 'skia_warnings_as_errors%': 1,
159 }, {
160 'skia_warnings_as_errors%': 0,
161 }],
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000162
163 # This variable allows the user to customize the optimization level used
164 # by the compiler. The user should be aware that this has different
165 # meanings for different compilers and should exercise caution when
166 # overriding it.
167 [ 'skia_os == "win"', {
168 'skia_release_optimization_level%': '<(skia_default_vs_optimization_level)',
169 }, {
170 'skia_release_optimization_level%': '<(skia_default_gcc_optimization_level)',
171 }],
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000172 [ 'skia_sanitizer', {
borenet@google.com47ae4b02013-08-21 18:02:50 +0000173 'skia_clang_build': 1,
commit-bot@chromium.org5003bde2013-10-25 18:14:54 +0000174 'skia_keep_frame_pointer': 1,
borenet@google.com47ae4b02013-08-21 18:02:50 +0000175 }, {
176 'skia_clang_build%': 0,
commit-bot@chromium.org5003bde2013-10-25 18:14:54 +0000177 'skia_keep_frame_pointer%': 0,
borenet@google.com47ae4b02013-08-21 18:02:50 +0000178 }],
borenet@google.coma72aef82013-03-22 13:16:06 +0000179 ],
180
epoger@google.com573e8ba2012-03-16 18:28:24 +0000181 # Re-define all variables defined within the level-2 'variables' dict,
182 # so that siblings of the level-1 'variables' dict can see them.
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000183 'arm_version%': '<(arm_version)',
borenet@google.comefb1d772012-10-10 19:45:51 +0000184 'arm_neon%': '<(arm_neon)',
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000185 'arm_neon_optional%': 0,
epoger@google.com573e8ba2012-03-16 18:28:24 +0000186 'skia_os%': '<(skia_os)',
187 'os_posix%': '<(os_posix)',
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +0000188
189 'skia_freetype_static%': '<(skia_freetype_static)',
190 'skia_giflib_static%': '<(skia_giflib_static)',
191 'skia_libpng_static%': '<(skia_libpng_static)',
192 'skia_zlib_static%': '<(skia_zlib_static)',
193 'skia_no_fontconfig%': '<(skia_no_fontconfig)',
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000194 'skia_sanitizer%': '<(skia_sanitizer)',
epoger@google.com573e8ba2012-03-16 18:28:24 +0000195 'skia_scalar%': '<(skia_scalar)',
196 'skia_mesa%': '<(skia_mesa)',
sugoi@google.come3453cb2013-01-07 14:26:40 +0000197 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)',
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000198 'skia_android_framework%': '<(skia_android_framework)',
jvanverth@google.com74dda902013-01-09 21:04:52 +0000199 'skia_android_path_rendering%': '<(skia_android_path_rendering)',
robertphillips@google.com4e5559a2013-10-30 17:04:16 +0000200 'skia_resource_cache_mb_limit%': '<(skia_resource_cache_mb_limit)',
201 'skia_resource_cache_count_limit%': '<(skia_resource_cache_count_limit)',
robertphillips@google.com021bce92012-04-02 20:42:26 +0000202 'skia_angle%': '<(skia_angle)',
commit-bot@chromium.org83f56922014-01-09 22:54:26 +0000203 'skia_poppler_enabled%': '<(skia_poppler_enabled)',
djsollen@google.come341cb32012-06-28 16:08:05 +0000204 'skia_arch_width%': '<(skia_arch_width)',
borenet@google.comefb1d772012-10-10 19:45:51 +0000205 'skia_arch_type%': '<(skia_arch_type)',
robertphillips@google.com42cc2372013-12-10 15:19:32 +0000206 'skia_chrome_utils%': '<(skia_chrome_utils)',
bungeman@google.come8f05922012-08-16 16:13:40 +0000207 'skia_directwrite%': '<(skia_directwrite)',
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000208 'skia_gpu%': '<(skia_gpu)',
commit-bot@chromium.org5a6c2d82013-06-14 17:10:09 +0000209 'skia_win_exceptions%': 0,
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000210 'skia_osx_deployment_target%': '<(skia_osx_deployment_target)',
djsollen@google.com5afbbc42012-11-29 15:09:58 +0000211 'skia_profile_enabled%': '<(skia_profile_enabled)',
djsollen@google.com52f02972013-06-03 12:10:19 +0000212 'skia_shared_lib%': '<(skia_shared_lib)',
zachr@google.comd6585682013-07-17 19:29:19 +0000213 'skia_opencl%': '<(skia_opencl)',
jvanverth@google.comd830d132013-11-11 20:54:09 +0000214 'skia_distancefield_fonts%': '<(skia_distancefield_fonts)',
chudy@google.combbad34d2012-08-13 14:26:36 +0000215 'skia_static_initializers%': '<(skia_static_initializers)',
bsalomon@google.com46638222012-10-04 12:52:03 +0000216 'ios_sdk_version%': '6.0',
edisonn@google.com184487c2013-03-08 18:00:16 +0000217 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)',
commit-bot@chromium.orgffd178c2013-11-11 15:10:47 +0000218 'skia_run_pdfviewer_in_gm%': 0,
commit-bot@chromium.org35d48722014-02-13 18:36:36 +0000219 'skia_disable_inlining%': 0,
chudy@google.combbad34d2012-08-13 14:26:36 +0000220
reed@google.combaa5d942012-08-08 20:39:17 +0000221 # These are referenced by our .gypi files that list files (e.g. core.gypi)
222 #
223 'skia_src_path%': '../src',
224 'skia_include_path%': '../include',
epoger@google.com573e8ba2012-03-16 18:28:24 +0000225 },
226}