blob: 9fef11b1dad3c333d3caebf930fb8a5996c5c52d [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
hendrikw10b371c2015-07-21 14:50:07 -070039 'angle_path%': '../',
yujieqin916de9f2016-01-25 08:26:16 -080040
epoger@google.com573e8ba2012-03-16 18:28:24 +000041 'variables': { # level 2
epoger@google.com573e8ba2012-03-16 18:28:24 +000042 # Variables needed by conditions list within the level-2 variables dict.
43 'variables': { # level 3
scroggodf1c3372015-02-12 10:48:25 -080044 'variables': { # level 4
45 # We use 'skia_os' instead of 'OS' throughout our gyp files, to allow
46 # for cross-compilation (e.g. building for either MacOS or iOS on Mac).
47 # We set it automatically based on 'OS' (the host OS), but allow the
48 # user to override it via GYP_DEFINES if they like.
49 'skia_os%': '<(OS)',
50 },
51 'skia_os%': '<(skia_os)',
bsalomon365bbff2016-02-19 14:26:30 -080052 'vulkan_merged_into_skia': '1',
scroggo@google.comd4adfa32014-02-05 16:35:12 +000053 'skia_android_framework%': 0,
yujieqin4334ff22016-04-06 06:47:15 -070054 # RAW codec needs exceptions. Due to that, it is a separate target. Its usage can be
55 # controlled by skia_codec_decodes_raw.
56 'skia_codec_decodes_raw%' : 1,
scroggodf1c3372015-02-12 10:48:25 -080057 'conditions' : [
58 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"]', {
59 'skia_arch_type%': 'x86_64',
60 }, {
61 'skia_arch_type%': 'x86',
62 }],
63 ],
djsollen@google.com6ee7a092014-05-29 17:00:28 +000064 'arm_version%': 0,
65 'arm_neon%': 0,
derekf29dda802014-10-01 10:52:52 -070066 'skia_egl%': 0,
epoger@google.com573e8ba2012-03-16 18:28:24 +000067 },
68
69 # Re-define all variables defined within the level-3 'variables' dict,
70 # so that siblings of the level-2 'variables' dict can see them.
scroggo@google.comd4adfa32014-02-05 16:35:12 +000071 # (skia_os will depend on skia_android_framework.)
72 'skia_android_framework%': '<(skia_android_framework)',
scroggo1497f9f2016-02-02 11:56:33 -080073 'skia_codec_decodes_raw%': '<(skia_codec_decodes_raw)',
commit-bot@chromium.org6f2d4d42014-04-02 15:03:56 +000074 'skia_arch_type%': '<(skia_arch_type)',
djsollen@google.com6ee7a092014-05-29 17:00:28 +000075 'arm_version%': '<(arm_version)',
76 'arm_neon%': '<(arm_neon)',
derekf29dda802014-10-01 10:52:52 -070077 'skia_egl%': '<(skia_egl)',
brianosmane3031b62016-08-26 10:37:57 -070078 'use_ozone%': 0, # ANGLE requires this to be defined.
bsalomon365bbff2016-02-19 14:26:30 -080079 'vulkan_merged_into_skia%': '<(vulkan_merged_into_skia)',
epoger@google.com573e8ba2012-03-16 18:28:24 +000080 'conditions': [
scroggo@google.comd4adfa32014-02-05 16:35:12 +000081 [ 'skia_android_framework == 1', {
82 'skia_os%': 'android',
commit-bot@chromium.org93f5e512014-02-17 15:22:26 +000083 'skia_chrome_utils%': 0,
borenet243406e2015-07-22 13:29:25 -070084 'skia_use_android_framework_defines%': 1,
scroggof01a6c32014-06-18 10:31:40 -070085 'skia_use_system_json%': 1,
djsollend5fd2ff2016-07-06 09:17:35 -070086 'skia_vulkan%': 1,
egdaniel735109c2016-07-27 08:03:57 -070087 'skia_vulkan_debug_layers%': 0,
scroggo@google.comd4adfa32014-02-05 16:35:12 +000088 }, {
89 'skia_os%': '<(skia_os)',
commit-bot@chromium.org93f5e512014-02-17 15:22:26 +000090 'skia_chrome_utils%': 1,
borenet243406e2015-07-22 13:29:25 -070091 'skia_use_android_framework_defines%': 0,
scroggof01a6c32014-06-18 10:31:40 -070092 'skia_use_system_json%': 0,
scroggo@google.comd4adfa32014-02-05 16:35:12 +000093 }],
borenet@google.comefb1d772012-10-10 19:45:51 +000094 [ 'skia_os == "win"', {
epoger@google.com573e8ba2012-03-16 18:28:24 +000095 'os_posix%': 0,
96 }, {
97 'os_posix%': 1,
98 }],
hendrikw6f0fdac2015-09-23 11:35:55 -070099 [ 'skia_os == "linux"', {
100 # ANGLE on linux require these two variable be defined.
101 'chromeos%': 0,
102 'use_x11%': 1,
103 }],
borenet@google.comefb1d772012-10-10 19:45:51 +0000104 [ 'skia_os == "android"', {
borenet@google.comc2dd3d42012-09-11 21:37:28 +0000105 'skia_static_initializers%': 0,
derekf29dda802014-10-01 10:52:52 -0700106 'skia_egl%': 1,
borenet@google.comc2dd3d42012-09-11 21:37:28 +0000107 }, {
108 'skia_static_initializers%': 1,
109 }],
borenet@google.comefb1d772012-10-10 19:45:51 +0000110 [ 'skia_os == "ios"', {
111 'skia_arch_type%': 'arm',
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000112 'arm_version%': 7,
borenet@google.comefb1d772012-10-10 19:45:51 +0000113 'arm_neon%': 0, # neon asm files known not to work with the ios build
borenet@google.comefb1d772012-10-10 19:45:51 +0000114 }],
borenet48087572015-04-02 12:16:36 -0700115 [ 'skia_os == "android" and not skia_android_framework',
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +0000116 # skia_freetype_static - on OS variants that normally would
117 # dynamically link the system FreeType library, don't do
118 # that; instead statically link to the version in
119 # third_party/freetype and third_party/externals/freetype.
120 {
121 'skia_freetype_static%': '1',
122 }, {
123 'skia_freetype_static%': '0',
124 }
125 ],
epoger@google.com573e8ba2012-03-16 18:28:24 +0000126 ],
127
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +0000128 # skia_no_fontconfig - On POSIX systems that would normally use the
129 # SkFontHost_fontconfig interface; use the SkFontHost_linux
130 # version instead.
131 'skia_no_fontconfig%': '0',
bungeman5c9fa282015-03-30 12:53:48 -0700132 'skia_embedded_fonts%': '0',
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +0000133
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000134 'skia_sanitizer%': '',
epoger@google.com573e8ba2012-03-16 18:28:24 +0000135 'skia_mesa%': 0,
egdaniel86e31a12015-03-09 09:40:42 -0700136 'skia_gpu_extra_dependency_path%': '',
egdaniel4b5472b2015-08-12 06:51:08 -0700137 'skia_gpu_extra_tests_path%': '',
sugoi@google.come3453cb2013-01-07 14:26:40 +0000138 'skia_stroke_path_rendering%': 0,
jvanverth@google.com74dda902013-01-09 21:04:52 +0000139 'skia_android_path_rendering%': 0,
robertphillips@google.com4e5559a2013-10-30 17:04:16 +0000140 'skia_resource_cache_mb_limit%': 0,
141 'skia_resource_cache_count_limit%': 0,
mtkleinee2a3ea2015-02-25 08:16:19 -0800142 'skia_angle%': 0,
hendrikw885bf092015-08-27 10:38:39 -0700143 'skia_command_buffer%': 0,
Mike Klein93587062014-07-16 13:06:04 -0400144 'skia_gdi%': 0,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000145 'skia_gpu%': 1,
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000146 'skia_osx_deployment_target%': '',
halcanary8ee06f22015-08-11 10:30:12 -0700147 'skia_pdf%': 1,
djsollen@google.com5afbbc42012-11-29 15:09:58 +0000148 'skia_profile_enabled%': 0,
jvanverth65bd7ae2015-08-12 12:58:13 -0700149 'skia_vulkan%': 0,
egdaniel735109c2016-07-27 08:03:57 -0700150 'skia_vulkan_debug_layers%': 1,
borenet@google.com663a9792013-03-08 22:22:44 +0000151 'skia_win_debuggers_path%': '',
djsollen@google.com52f02972013-06-03 12:10:19 +0000152 'skia_shared_lib%': 0,
jvanverth4736e142014-11-07 07:12:46 -0800153 'skia_force_distance_field_text%': 0,
mtkleinf7c08222015-10-27 11:24:40 -0700154 'skia_is_bot%': '<!(python -c "import os; print os.environ.get(\'CHROME_HEADLESS\', 0)")',
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000155
156 # These variables determine the default optimization level for different
157 # compilers.
158 'skia_default_vs_optimization_level': 3, # full (/Ox)
159 'skia_default_gcc_optimization_level': 3, # -O3
epoger@google.com573e8ba2012-03-16 18:28:24 +0000160 },
161
borenet@google.coma72aef82013-03-22 13:16:06 +0000162 'conditions': [
mtkleinf19ec512014-12-15 10:38:42 -0800163 [ 'skia_os in ["mac", "linux", "freebsd", "openbsd", "solaris", "android", "win"] '
164 'and skia_android_framework == 0', {
mtklein161b6de2014-12-15 09:45:00 -0800165 'skia_warnings_as_errors%': 1,
mtklein616e4512014-12-15 09:49:12 -0800166 }, {
167 'skia_warnings_as_errors%': 0,
borenet@google.coma72aef82013-03-22 13:16:06 +0000168 }],
commit-bot@chromium.org06b38642013-06-20 20:28:54 +0000169
170 # This variable allows the user to customize the optimization level used
171 # by the compiler. The user should be aware that this has different
172 # meanings for different compilers and should exercise caution when
173 # overriding it.
174 [ 'skia_os == "win"', {
175 'skia_release_optimization_level%': '<(skia_default_vs_optimization_level)',
176 }, {
177 'skia_release_optimization_level%': '<(skia_default_gcc_optimization_level)',
178 }],
hendrikw6f0fdac2015-09-23 11:35:55 -0700179 [ 'skia_os == "linux"', {
180 # ANGLE on linux require these two variable be defined.
181 'chromeos%': 0,
182 'use_x11%': 1,
183 }],
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000184 [ 'skia_sanitizer', {
borenet@google.com47ae4b02013-08-21 18:02:50 +0000185 'skia_clang_build': 1,
commit-bot@chromium.org5003bde2013-10-25 18:14:54 +0000186 'skia_keep_frame_pointer': 1,
borenet@google.com47ae4b02013-08-21 18:02:50 +0000187 }, {
188 'skia_clang_build%': 0,
commit-bot@chromium.org5003bde2013-10-25 18:14:54 +0000189 'skia_keep_frame_pointer%': 0,
borenet@google.com47ae4b02013-08-21 18:02:50 +0000190 }],
hendrikwb1ac52f2015-10-01 18:29:34 -0700191 [ 'skia_shared_lib or skia_sanitizer or skia_os == "android" or (skia_os == "linux" and (skia_angle == 1 or skia_command_buffer == 1))', {
scroggoc0bc9132014-07-22 12:09:30 -0700192 'skia_pic%' : 1,
193 }, {
194 'skia_pic%' : 0,
195 }
196 ],
borenet@google.coma72aef82013-03-22 13:16:06 +0000197 ],
198
epoger@google.com573e8ba2012-03-16 18:28:24 +0000199 # Re-define all variables defined within the level-2 'variables' dict,
200 # so that siblings of the level-1 'variables' dict can see them.
djsollen@google.comf7542ba2013-07-31 12:57:27 +0000201 'arm_version%': '<(arm_version)',
borenet@google.comefb1d772012-10-10 19:45:51 +0000202 'arm_neon%': '<(arm_neon)',
djordje.pesutaaf1df62014-06-06 14:09:12 -0700203 'mips_arch_variant%': 'mips32',
204 'mips_dsp%': 0,
epoger@google.com573e8ba2012-03-16 18:28:24 +0000205 'skia_os%': '<(skia_os)',
206 'os_posix%': '<(os_posix)',
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +0000207
brianosmana3f9d592016-08-26 12:33:58 -0700208 'pkg-config%': 'pkg-config',
209
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +0000210 'skia_freetype_static%': '<(skia_freetype_static)',
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +0000211 'skia_no_fontconfig%': '<(skia_no_fontconfig)',
bungeman5c9fa282015-03-30 12:53:48 -0700212 'skia_embedded_fonts%': '<(skia_embedded_fonts)',
mtklein@google.com9f3b0e42013-10-08 15:16:36 +0000213 'skia_sanitizer%': '<(skia_sanitizer)',
mtkleinbb5b77d2015-12-08 14:26:17 -0800214 'skia_sanitizer_blacklist%':
215 '<!(python -c "import sys; import os; print os.path.abspath(sys.argv[1])" ../tools/xsan.blacklist)',
epoger@google.com573e8ba2012-03-16 18:28:24 +0000216 'skia_mesa%': '<(skia_mesa)',
egdaniel86e31a12015-03-09 09:40:42 -0700217 'skia_gpu_extra_dependency_path%': '<(skia_gpu_extra_dependency_path)',
egdaniel4b5472b2015-08-12 06:51:08 -0700218 'skia_gpu_extra_tests_path%': '<(skia_gpu_extra_tests_path)',
sugoi@google.come3453cb2013-01-07 14:26:40 +0000219 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)',
scroggo@google.comd4adfa32014-02-05 16:35:12 +0000220 'skia_android_framework%': '<(skia_android_framework)',
scroggo1497f9f2016-02-02 11:56:33 -0800221 'skia_codec_decodes_raw%': '<(skia_codec_decodes_raw)',
borenet243406e2015-07-22 13:29:25 -0700222 'skia_use_android_framework_defines%': '<(skia_use_android_framework_defines)',
scroggof01a6c32014-06-18 10:31:40 -0700223 'skia_use_system_json%': '<(skia_use_system_json)',
jvanverth@google.com74dda902013-01-09 21:04:52 +0000224 'skia_android_path_rendering%': '<(skia_android_path_rendering)',
robertphillips@google.com4e5559a2013-10-30 17:04:16 +0000225 'skia_resource_cache_mb_limit%': '<(skia_resource_cache_mb_limit)',
226 'skia_resource_cache_count_limit%': '<(skia_resource_cache_count_limit)',
robertphillips@google.com021bce92012-04-02 20:42:26 +0000227 'skia_angle%': '<(skia_angle)',
borenet@google.comefb1d772012-10-10 19:45:51 +0000228 'skia_arch_type%': '<(skia_arch_type)',
robertphillips@google.com42cc2372013-12-10 15:19:32 +0000229 'skia_chrome_utils%': '<(skia_chrome_utils)',
hendrikw885bf092015-08-27 10:38:39 -0700230 'skia_command_buffer%': '<(skia_command_buffer)',
Mike Klein720c66b2014-07-16 13:26:19 -0400231 'skia_gdi%': '<(skia_gdi)',
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000232 'skia_gpu%': '<(skia_gpu)',
jvanverth65bd7ae2015-08-12 12:58:13 -0700233 'skia_vulkan%': '<(skia_vulkan)',
egdaniel735109c2016-07-27 08:03:57 -0700234 'skia_vulkan_debug_layers%': '<(skia_vulkan_debug_layers)',
commit-bot@chromium.org5a6c2d82013-06-14 17:10:09 +0000235 'skia_win_exceptions%': 0,
mtkleinf7c08222015-10-27 11:24:40 -0700236 'skia_win_ltcg%': '<(skia_is_bot)',
senorblanco@chromium.org29f351a2014-01-20 16:14:02 +0000237 'skia_osx_deployment_target%': '<(skia_osx_deployment_target)',
halcanary8ee06f22015-08-11 10:30:12 -0700238 'skia_pdf%': '<(skia_pdf)',
djsollen@google.com5afbbc42012-11-29 15:09:58 +0000239 'skia_profile_enabled%': '<(skia_profile_enabled)',
djsollen@google.com52f02972013-06-03 12:10:19 +0000240 'skia_shared_lib%': '<(skia_shared_lib)',
jvanverth4736e142014-11-07 07:12:46 -0800241 'skia_force_distance_field_text%': '<(skia_force_distance_field_text)',
chudy@google.combbad34d2012-08-13 14:26:36 +0000242 'skia_static_initializers%': '<(skia_static_initializers)',
bsalomon@google.com46638222012-10-04 12:52:03 +0000243 'ios_sdk_version%': '6.0',
edisonn@google.com184487c2013-03-08 18:00:16 +0000244 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)',
commit-bot@chromium.org35d48722014-02-13 18:36:36 +0000245 'skia_disable_inlining%': 0,
commit-bot@chromium.org199cf692014-05-08 15:29:57 +0000246 'skia_moz2d%': 0,
mtkleinf7c08222015-10-27 11:24:40 -0700247 'skia_is_bot%': '<(skia_is_bot)',
derekf29dda802014-10-01 10:52:52 -0700248 'skia_egl%': '<(skia_egl)',
joshualitt474a9ea2015-11-05 11:49:35 -0800249 'skia_use_sdl%': 0,
mtkleindee3df92015-03-26 05:30:44 -0700250 'skia_fast%': 0,
joshualittf16f88b2015-12-02 13:00:37 -0800251 'skia_dump_stats%': 0,
bsalomon365bbff2016-02-19 14:26:30 -0800252 'vulkan_merged_into_skia%': '<(vulkan_merged_into_skia)',
mtkleindee3df92015-03-26 05:30:44 -0700253 'skia_fast_flags': [
254 '-O3', # Even for Debug builds.
255 '-march=native', # Use all features of and optimize for THIS machine.
256 '-fomit-frame-pointer', # Sometimes an extra register is nice, and cuts a push/pop.
mtklein6f659572016-02-16 06:42:51 -0800257 #'-ffast-math', # Optimize float math even when it breaks IEEE compliance.
mtkleindee3df92015-03-26 05:30:44 -0700258 #'-flto' # Enable link-time optimization.
259 ],
vjiaoblack95302da2016-07-21 10:25:54 -0700260 'skia_experimental_shadowing': 0, # for experimental shadow-drawing
chudy@google.combbad34d2012-08-13 14:26:36 +0000261
reed@google.combaa5d942012-08-08 20:39:17 +0000262 # These are referenced by our .gypi files that list files (e.g. core.gypi)
263 #
264 'skia_src_path%': '../src',
265 'skia_include_path%': '../include',
epoger@google.com573e8ba2012-03-16 18:28:24 +0000266 },
267}