blob: 97ed982b4c18635f20323e9d361acb73148d59f6 [file] [log] [blame]
mtkleinc04ff472016-06-23 10:29:30 -07001# Copyright 2016 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
Brian Osmanf2c90142017-07-13 15:50:03 -04006import("gn/flutter_defines.gni")
Mike Reed025f7832018-11-12 09:27:05 -05007import("gn/fuchsia_defines.gni")
mikejurka8c24f4f2016-09-12 16:51:58 -07008import("gn/shared_sources.gni")
Hal Canary32498f02019-02-04 15:36:31 -05009import("gn/skia.gni")
brettwb9447282016-09-01 14:24:39 -070010
Forrest Reiling30229ac2017-04-17 13:36:39 -070011if (is_fuchsia) {
12 import("//build/vulkan/config.gni")
13}
14
mtkleinc04ff472016-06-23 10:29:30 -070015declare_args() {
Mike Klein26a60492018-10-15 10:38:25 -040016 skia_enable_flutter_defines = false
17}
18
19declare_args() {
Mike Kleinc168a3a2016-11-14 14:53:13 +000020 skia_use_angle = false
Kevin Lubick4a24e102017-03-29 11:19:01 -040021 skia_use_egl = false
mtklein63213812016-08-24 09:55:56 -070022 skia_use_expat = true
mtklein3cc22182016-08-29 13:26:14 -070023 skia_use_fontconfig = is_linux
Leon Scroggins III85e22fc2018-11-28 08:58:47 -050024 skia_use_fonthost_mac = is_mac
mtkleincdedd0e2016-09-12 15:15:44 -070025 skia_use_freetype = is_android || is_fuchsia || is_linux
Leon Scroggins IIIc41a5f52018-11-15 15:54:59 -050026 skia_use_fixed_gamma_text = is_android
mtklein63213812016-08-24 09:55:56 -070027 skia_use_libjpeg_turbo = true
28 skia_use_libpng = true
mtkleineb3c4252016-08-23 07:38:09 -070029 skia_use_libwebp = !is_fuchsia
Mike Kleinfae86b72018-01-08 15:49:09 -050030 skia_use_lua = is_skia_dev_build && !is_ios
Mike Kleinf9ae6702018-06-20 14:05:05 -040031 skia_use_opencl = false
Mike Klein10d665d2016-11-01 11:46:10 -040032 skia_use_piex = !is_win
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -040033 skia_use_wuffs = false
mtklein63213812016-08-24 09:55:56 -070034 skia_use_zlib = true
Greg Daniele5ddff52017-07-05 16:49:36 -040035 skia_use_metal = false
Mike Klein36f182f2017-10-20 12:33:53 -040036 skia_use_libheif = is_skia_dev_build
Chinmay Garded92d0352018-09-17 10:23:28 -070037 skia_use_x11 = is_linux
Leon Scroggins IIIee0e5d02019-02-27 10:59:11 -050038 skia_use_xps = true
mtklein1bd72ba2016-09-16 07:45:52 -070039
Mike Klein7d921032017-01-05 12:20:41 -050040 skia_android_serial = ""
Kevin Lubick93faa672018-10-10 15:54:53 -040041 skia_enable_ccpr = true
Kevin Lubickca7c2972018-10-17 13:52:24 +000042 skia_enable_nvpr = !skia_enable_flutter_defines
Brian Osman3f375d02016-12-28 11:19:22 -050043 skia_enable_discrete_gpu = true
Kevin Lubick134be1d2018-10-30 15:05:04 -040044 skia_enable_nima = false
Hal Canary43fb7a02016-12-30 13:09:03 -050045 skia_enable_pdf = true
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -040046 skia_enable_spirv_validation = is_skia_dev_build && is_debug
Kevin Lubick32dfdbe2018-10-18 09:47:01 -040047 skia_enable_skpicture = true
Mike Klein3669a822017-03-03 10:55:02 -050048 skia_enable_vulkan_debug_layers = is_skia_dev_build && is_debug
Robert Phillipsa6d2d702017-09-01 12:17:03 -040049 skia_qt_path = getenv("QT_PATH")
Ethan Nicholas762466e2017-06-29 10:03:38 -040050 skia_compile_processors = false
Adrienne Walker1df7cd82018-04-18 13:46:25 -070051 skia_generate_workarounds = false
Ethan Nicholas5b5f0962017-09-11 13:50:14 -070052 skia_lex = false
Mike Kleinc55a6cb2017-06-28 13:21:47 -040053
Hal Canary2331c822018-02-01 14:06:13 -050054 skia_skqp_global_error_tolerance = 0
Ethan Nicholas26a9aad2018-03-27 14:10:52 -040055
56 skia_llvm_path = ""
57 skia_llvm_lib = "LLVM"
Hal Canaryfd9bcab2018-04-24 11:47:23 -040058
59 skia_tools_require_resources = false
mtkleinc04ff472016-06-23 10:29:30 -070060}
Brian Salomon23d73ea2016-10-27 13:31:37 -040061declare_args() {
Matt Sarett189491c2017-03-20 18:09:30 -040062 skia_use_dng_sdk = !is_fuchsia && skia_use_libjpeg_turbo && skia_use_zlib
Mike Klein10d665d2016-11-01 11:46:10 -040063 skia_use_sfntly = skia_use_icu
Brian Salomoncbcb0a12017-11-19 13:20:13 -050064 skia_enable_atlas_text = is_skia_dev_build && skia_enable_gpu
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -050065 skia_enable_fontmgr_empty = false
Kevin Lubickddd0a332018-12-12 10:35:13 -050066 skia_enable_fontmgr_custom =
67 is_linux && skia_use_freetype && !skia_use_fontconfig
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -050068 skia_enable_fontmgr_custom_empty = is_fuchsia && skia_use_freetype
69 skia_enable_fontmgr_android = skia_use_expat && skia_use_freetype
Sergey Ulanovf3babcd2018-11-30 17:42:00 -080070 skia_enable_fontmgr_fuchsia = is_fuchsia
Leon Scroggins III631dbc82019-03-04 13:54:02 -050071 skia_enable_fontmgr_win = is_win
72 skia_enable_fontmgr_win_gdi = is_win
Mike Klein10d665d2016-11-01 11:46:10 -040073
Kevin Lubick27ba7032019-03-21 08:13:54 -040074 if (is_mac) {
75 skia_gl_standard = "gl"
76 } else if (is_ios) {
77 skia_gl_standard = "gles"
78 } else {
79 skia_gl_standard = ""
80 }
81
Mike Klein4d598a32016-10-31 13:44:49 -040082 if (is_android) {
83 skia_use_vulkan = defined(ndk_api) && ndk_api >= 24
Forrest Reiling30229ac2017-04-17 13:36:39 -070084 } else if (is_fuchsia) {
85 skia_use_vulkan = fuchsia_use_vulkan
Mike Klein4d598a32016-10-31 13:44:49 -040086 } else {
Mike Klein98dea7b2019-01-15 11:26:43 -050087 skia_use_vulkan = defined(skia_moltenvk_path) && skia_moltenvk_path != ""
Mike Klein4d598a32016-10-31 13:44:49 -040088 }
Jim Van Verth4e502972017-12-07 15:16:10 -050089
90 if (is_ios) {
91 skia_ios_identity = ".*Google.*"
92 skia_ios_profile = "Google Development"
93 }
Brian Salomon23d73ea2016-10-27 13:31:37 -040094}
Brian Salomon789e25e2016-09-30 13:41:03 -040095
Adam Barth54ef74a2017-10-13 10:59:38 -070096if (defined(skia_settings)) {
97 import(skia_settings)
98}
99
mtkleinc04ff472016-06-23 10:29:30 -0700100# Skia public API, generally provided by :skia.
101config("skia_public") {
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500102 include_dirs = [
103 ".",
104 "third_party/skcms",
105 "include/third_party/vulkan",
106 ]
Mike Kleinae7e6712016-10-11 17:49:33 -0400107 defines = []
108 if (is_component_build) {
109 defines += [ "SKIA_DLL" ]
110 }
Mike Kleinc4cbd742016-09-26 21:37:09 -0400111 if (is_fuchsia || is_linux) {
jcgregorio5561e3d2016-08-25 09:25:11 -0700112 defines += [ "SK_SAMPLES_FOR_X" ]
113 }
Brian Osmanf2c90142017-07-13 15:50:03 -0400114 if (skia_enable_flutter_defines) {
115 defines += flutter_defines
116 }
mtklein06c35c02016-09-20 12:28:12 -0700117 if (!skia_enable_gpu) {
118 defines += [ "SK_SUPPORT_GPU=0" ]
119 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500120 if (skia_enable_atlas_text) {
121 defines += [ "SK_SUPPORT_ATLAS_TEXT=1" ]
122 }
Mike Reed025f7832018-11-12 09:27:05 -0500123 if (is_fuchsia) {
124 defines += fuchsia_defines
125 }
Kevin Lubick27ba7032019-03-21 08:13:54 -0400126 if (skia_gl_standard == "gles") {
127 defines += [ "SK_ASSUME_GL_ES=1" ]
128 } else if (skia_gl_standard == "gl") {
129 defines += [ "SK_ASSUME_GL=1" ]
Kevin Lubick39026282019-03-28 12:46:40 -0400130 } else if (skia_gl_standard == "webgl") {
131 defines += [ "SK_ASSUME_WEBGL=1" ]
Kevin Lubick27ba7032019-03-21 08:13:54 -0400132 }
mtkleinc04ff472016-06-23 10:29:30 -0700133}
134
135# Skia internal APIs, used by Skia itself and a few test tools.
136config("skia_private") {
137 visibility = [ ":*" ]
138
139 include_dirs = [
Jim Van Verth1676cb92019-01-15 13:24:45 -0500140 "third_party/etc1",
scroggo19b91532016-10-24 09:03:26 -0700141 "third_party/gif",
mtkleinc04ff472016-06-23 10:29:30 -0700142 ]
mtklein150d1132016-08-01 06:56:40 -0700143
Mike Reeda9e241d2017-05-03 10:52:00 -0400144 defines = [ "SK_GAMMA_APPLY_TO_A8" ]
Leon Scroggins IIIc41a5f52018-11-15 15:54:59 -0500145 if (skia_use_fixed_gamma_text) {
mtkleinb37c0342016-09-09 11:07:45 -0700146 defines += [
147 "SK_GAMMA_EXPONENT=1.4",
148 "SK_GAMMA_CONTRAST=0.0",
149 ]
150 }
mtklein88a7ac02016-09-14 11:16:49 -0700151 if (is_official_build || is_android) {
152 # TODO(bsalomon): it'd be nice to make Android normal.
153 defines += [ "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0" ]
154 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400155 libs = []
156 lib_dirs = []
Brian Osman34755e22016-12-05 09:46:02 -0500157 if (skia_use_angle) {
158 defines += [ "SK_ANGLE" ]
159 }
Brian Salomon0c26a9d2017-07-06 10:09:38 -0400160 if (!is_official_build) {
161 defines += [ "GR_TEST_UTILS=1" ]
162 }
Ethan Nicholas26a9aad2018-03-27 14:10:52 -0400163 if (skia_llvm_path != "") {
164 defines += [ "SK_LLVM_AVAILABLE" ]
165 include_dirs += [ "$skia_llvm_path/include" ]
166 libs += [ skia_llvm_lib ]
167 lib_dirs += [ "$skia_llvm_path/lib/" ]
168 }
mtkleinc04ff472016-06-23 10:29:30 -0700169}
170
171# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
172config("skia_library") {
173 visibility = [ ":*" ]
mtkleinc04ff472016-06-23 10:29:30 -0700174 defines = [ "SKIA_IMPLEMENTATION=1" ]
175}
176
177skia_library_configs = [
178 ":skia_public",
179 ":skia_private",
180 ":skia_library",
181]
182
mtklein9b8583d2016-08-24 17:32:30 -0700183# Use for CPU-specific Skia code that needs particular compiler flags.
184template("opts") {
Mike Klein6d1df6d2018-11-07 15:03:58 -0500185 visibility = [ ":*" ]
mtklein9b8583d2016-08-24 17:32:30 -0700186 if (invoker.enabled) {
187 source_set(target_name) {
Hal Canaryc25f4e92019-02-26 11:54:25 -0500188 check_includes = false
mtklein9b8583d2016-08-24 17:32:30 -0700189 forward_variables_from(invoker, "*")
190 configs += skia_library_configs
191 }
192 } else {
193 # If not enabled, a phony empty target that swallows all otherwise unused variables.
194 source_set(target_name) {
Hal Canaryc25f4e92019-02-26 11:54:25 -0500195 check_includes = false
mtklein9b8583d2016-08-24 17:32:30 -0700196 forward_variables_from(invoker,
197 "*",
198 [
199 "sources",
200 "cflags",
201 ])
202 }
203 }
anmittala7eaf2e2016-08-17 13:57:26 -0700204}
205
mtklein422310d2016-08-16 18:28:43 -0700206is_x86 = current_cpu == "x64" || current_cpu == "x86"
mtkleinc04ff472016-06-23 10:29:30 -0700207
mtklein7d6fb2c2016-08-25 14:50:44 -0700208opts("none") {
209 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
brettwb9447282016-09-01 14:24:39 -0700210 sources = skia_opts.none_sources
anmittalb8b3f712016-08-25 04:55:19 -0700211 cflags = []
212}
213
mtklein7d6fb2c2016-08-25 14:50:44 -0700214opts("armv7") {
anmittalb8b3f712016-08-25 04:55:19 -0700215 enabled = current_cpu == "arm"
brettwb9447282016-09-01 14:24:39 -0700216 sources = skia_opts.armv7_sources + skia_opts.neon_sources
mtklein7d6fb2c2016-08-25 14:50:44 -0700217 cflags = []
anmittalb8b3f712016-08-25 04:55:19 -0700218}
219
220opts("arm64") {
221 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700222 sources = skia_opts.arm64_sources
anmittalb8b3f712016-08-25 04:55:19 -0700223 cflags = []
224}
225
226opts("crc32") {
227 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700228 sources = skia_opts.crc32_sources
anmittalb8b3f712016-08-25 04:55:19 -0700229 cflags = [ "-march=armv8-a+crc" ]
230}
231
mtklein9b8583d2016-08-24 17:32:30 -0700232opts("sse2") {
233 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700234 sources = skia_opts.sse2_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400235 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400236 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
237 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400238 cflags = [ "-msse2" ]
239 }
mtklein9b8583d2016-08-24 17:32:30 -0700240}
mtkleinc04ff472016-06-23 10:29:30 -0700241
mtklein9b8583d2016-08-24 17:32:30 -0700242opts("ssse3") {
243 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700244 sources = skia_opts.ssse3_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400245 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400246 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
247 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400248 cflags = [ "-mssse3" ]
249 }
mtklein9b8583d2016-08-24 17:32:30 -0700250}
mtkleinc04ff472016-06-23 10:29:30 -0700251
mtklein9b8583d2016-08-24 17:32:30 -0700252opts("sse41") {
253 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700254 sources = skia_opts.sse41_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400255 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400256 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
257 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400258 cflags = [ "-msse4.1" ]
259 }
mtklein9b8583d2016-08-24 17:32:30 -0700260}
mtklein4e976072016-08-08 09:06:27 -0700261
mtklein9b8583d2016-08-24 17:32:30 -0700262opts("sse42") {
263 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700264 sources = skia_opts.sse42_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400265 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400266 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
267 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400268 cflags = [ "-msse4.2" ]
269 }
mtklein9b8583d2016-08-24 17:32:30 -0700270}
271
272opts("avx") {
273 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700274 sources = skia_opts.avx_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400275 if (is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000276 cflags = [ "/arch:AVX" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400277 } else {
278 cflags = [ "-mavx" ]
279 }
mtkleinc04ff472016-06-23 10:29:30 -0700280}
281
Mike Klein1b9b7d52018-02-27 10:37:40 -0500282opts("hsw") {
283 enabled = is_x86
284 sources = skia_opts.hsw_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400285 if (is_win) {
Mike Klein1b9b7d52018-02-27 10:37:40 -0500286 cflags = [ "/arch:AVX2" ]
287 } else {
Mike Kleine87c4862018-03-23 00:13:58 +0000288 cflags = [ "-march=haswell" ]
Mike Klein1b9b7d52018-02-27 10:37:40 -0500289 }
290
291 # Oddly, clang-cl doesn't recognize this as a valid flag.
292 # If it ever does, it'd nice to move this up with -mavx2 and co.
293 if (is_clang && !is_win) {
294 # This flag lets Clang generate FMAs when it sees a mul-then-add. It's optional,
295 # but nice to have, generating slightly better code for paths without explicit FMAs.
296 cflags += [ "-ffp-contract=fast" ]
297 }
298}
299
mtkleinc095df52016-08-24 12:23:52 -0700300# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700301template("optional") {
Mike Klein6d1df6d2018-11-07 15:03:58 -0500302 visibility = [ ":*" ]
mtklein457b42a2016-08-23 13:56:37 -0700303 if (invoker.enabled) {
304 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700305 if (defined(invoker.public_defines)) {
306 defines = invoker.public_defines
307 }
Chris Dalton3a67b8e2018-05-03 09:30:29 -0600308 if (defined(invoker.public_configs)) {
309 configs = invoker.public_configs
310 }
mtklein457b42a2016-08-23 13:56:37 -0700311 }
312 source_set(target_name) {
Hal Canaryc25f4e92019-02-26 11:54:25 -0500313 check_includes = false
mtkleincd01b032016-08-31 04:58:19 -0700314 forward_variables_from(invoker,
315 "*",
316 [
317 "public_defines",
318 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700319 "configs_to_remove",
mtkleincd01b032016-08-31 04:58:19 -0700320 ])
mtklein457b42a2016-08-23 13:56:37 -0700321 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein9b8583d2016-08-24 17:32:30 -0700322 configs += skia_library_configs
scroggof84ad642016-10-31 09:02:57 -0700323 if (defined(invoker.configs_to_remove)) {
324 configs -= invoker.configs_to_remove
325 }
mtklein457b42a2016-08-23 13:56:37 -0700326 }
327 } else {
mtklein457b42a2016-08-23 13:56:37 -0700328 source_set(target_name) {
329 forward_variables_from(invoker,
330 "*",
331 [
332 "public_defines",
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400333 "public_deps",
mtklein457b42a2016-08-23 13:56:37 -0700334 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700335 "libs",
mtklein457b42a2016-08-23 13:56:37 -0700336 "sources",
mtkleincd01b032016-08-31 04:58:19 -0700337 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700338 "configs_to_remove",
mtklein457b42a2016-08-23 13:56:37 -0700339 ])
mtkleincd01b032016-08-31 04:58:19 -0700340 if (defined(invoker.sources_when_disabled)) {
341 sources = invoker.sources_when_disabled
342 }
343 configs += skia_library_configs
mtklein457b42a2016-08-23 13:56:37 -0700344 }
mtkleineb3c4252016-08-23 07:38:09 -0700345 }
mtklein457b42a2016-08-23 13:56:37 -0700346}
mtklein457b42a2016-08-23 13:56:37 -0700347
mtkleina45be612016-08-29 15:22:10 -0700348optional("fontmgr_android") {
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500349 enabled = skia_enable_fontmgr_android
mtkleina45be612016-08-29 15:22:10 -0700350
351 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500352 ":typeface_freetype",
mtkleina45be612016-08-29 15:22:10 -0700353 "//third_party/expat",
mtkleina45be612016-08-29 15:22:10 -0700354 ]
355 sources = [
356 "src/ports/SkFontMgr_android.cpp",
357 "src/ports/SkFontMgr_android_factory.cpp",
358 "src/ports/SkFontMgr_android_parser.cpp",
359 ]
360}
361
mtkleind2e39db2016-09-07 07:52:55 -0700362optional("fontmgr_custom") {
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500363 enabled = skia_enable_fontmgr_custom
mtkleind2e39db2016-09-07 07:52:55 -0700364
365 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500366 ":typeface_freetype",
mtkleind2e39db2016-09-07 07:52:55 -0700367 ]
368 sources = [
369 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500370 "src/ports/SkFontMgr_custom.h",
371 "src/ports/SkFontMgr_custom_directory.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700372 "src/ports/SkFontMgr_custom_directory_factory.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500373 "src/ports/SkFontMgr_custom_embedded.cpp",
374 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700375 ]
376}
377
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500378optional("fontmgr_custom_empty") {
379 enabled = skia_enable_fontmgr_custom_empty
Kevin Lubickddd0a332018-12-12 10:35:13 -0500380
381 deps = [
382 ":typeface_freetype",
383 ]
384 sources = [
385 "src/ports/SkFontMgr_custom.cpp",
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500386 "src/ports/SkFontMgr_custom_empty.cpp",
387 "src/ports/SkFontMgr_custom_empty_factory.cpp",
Sergey Ulanovf3babcd2018-11-30 17:42:00 -0800388 ]
389}
390
Hal Canaryff2742e2018-01-30 11:35:47 -0500391optional("fontmgr_empty") {
392 enabled = skia_enable_fontmgr_empty
393 sources = [
394 "src/ports/SkFontMgr_empty_factory.cpp",
395 ]
396}
397
mtklein3cc22182016-08-29 13:26:14 -0700398optional("fontmgr_fontconfig") {
399 enabled = skia_use_freetype && skia_use_fontconfig
mtklein3cc22182016-08-29 13:26:14 -0700400
401 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500402 ":typeface_freetype",
mtklein3cc22182016-08-29 13:26:14 -0700403 "//third_party:fontconfig",
mtklein3cc22182016-08-29 13:26:14 -0700404 ]
405 sources = [
bungeman1ae0e012016-09-19 12:13:16 -0700406 "src/ports/SkFontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700407 "src/ports/SkFontConfigInterface_direct.cpp",
408 "src/ports/SkFontConfigInterface_direct_factory.cpp",
409 "src/ports/SkFontMgr_FontConfigInterface.cpp",
410 "src/ports/SkFontMgr_fontconfig.cpp",
411 "src/ports/SkFontMgr_fontconfig_factory.cpp",
412 ]
413}
414
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500415optional("fontmgr_fuchsia") {
416 enabled = skia_enable_fontmgr_fuchsia
417
418 deps = [
419 "//sdk/fidl/fuchsia.fonts",
420 ]
421 sources = [
422 "src/ports/SkFontMgr_fuchsia.cpp",
423 "src/ports/SkFontMgr_fuchsia.h",
424 ]
425}
426
427optional("fontmgr_wasm") {
Kevin Lubick0e3342c2019-04-16 13:31:25 -0400428 enabled = !skia_enable_fontmgr_empty && target_cpu == "wasm"
mtkleincdedd0e2016-09-12 15:15:44 -0700429
430 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500431 ":typeface_freetype",
mtkleincdedd0e2016-09-12 15:15:44 -0700432 ]
433 sources = [
434 "src/ports/SkFontMgr_custom.cpp",
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500435 "src/ports/SkFontMgr_custom.h",
436 "src/ports/SkFontMgr_custom_embedded.cpp",
437 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
mtkleincdedd0e2016-09-12 15:15:44 -0700438 ]
439}
440
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500441optional("fontmgr_win") {
442 enabled = skia_enable_fontmgr_win
443
444 sources = [
445 "src/fonts/SkFontMgr_indirect.cpp",
446 "src/ports/SkFontMgr_win_dw.cpp",
447 "src/ports/SkFontMgr_win_dw_factory.cpp",
448 "src/ports/SkScalerContext_win_dw.cpp",
449 "src/ports/SkTypeface_win_dw.cpp",
450 ]
451}
452
453optional("fontmgr_win_gdi") {
454 enabled = skia_enable_fontmgr_win_gdi
455
456 sources = [
457 "src/ports/SkFontHost_win.cpp",
458 ]
459 libs = [ "Gdi32.lib" ]
460}
461
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700462if (skia_lex) {
Ethan Nicholasca82a922017-09-07 09:39:50 -0400463 executable("sksllex") {
464 sources = [
465 "src/sksl/lex/Main.cpp",
466 "src/sksl/lex/NFA.cpp",
467 "src/sksl/lex/RegexNode.cpp",
468 "src/sksl/lex/RegexParser.cpp",
469 ]
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500470 include_dirs = [ "." ]
Ethan Nicholasca82a922017-09-07 09:39:50 -0400471 }
472
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700473 action("run_sksllex") {
474 script = "gn/run_sksllex.py"
Ethan Nicholase148bf72017-10-06 14:22:22 -0400475 deps = [
476 ":sksllex(//gn/toolchain:$host_toolchain)",
477 ]
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700478 sources = [
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700479 "src/sksl/lex/sksl.lex",
480 ]
481
482 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
483 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
484 outputs = [
485 "$target_out_dir/" +
486 rebase_path("src/sksl/lex/SkSLLexer.h", target_out_dir),
487 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
488 # confused due to the same file being named by two different paths
489 ]
490 sksllex_path = "$root_out_dir/"
491 sksllex_path += "sksllex"
492 if (host_os == "win") {
493 sksllex_path += ".exe"
494 }
495 args = [
496 rebase_path(sksllex_path),
497 rebase_path("bin/clang-format"),
498 rebase_path("src"),
499 ]
500 }
501} else {
502 group("run_sksllex") {
503 }
504}
505
506if (skia_compile_processors) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400507 executable("skslc") {
508 defines = [ "SKSL_STANDALONE" ]
509 sources = [
510 "src/sksl/SkSLMain.cpp",
511 ]
512 sources += skia_sksl_sources
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500513 include_dirs = [ "." ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400514 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500515 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400516 "//third_party/spirv-tools",
517 ]
518 }
519
520 skia_gpu_processor_outputs = []
521 foreach(src, skia_gpu_processor_sources) {
522 dir = get_path_info(src, "dir")
523 name = get_path_info(src, "name")
524
525 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
526 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
527 skia_gpu_processor_outputs += [
528 "$target_out_dir/" + rebase_path("$dir/$name.h", target_out_dir),
529 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
530 # confused due to the same file being named by two different paths
531 ]
532 }
533
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500534 action("create_sksl_enums") {
535 script = "gn/create_sksl_enums.py"
536 sources = [
537 "include/private/GrSharedEnums.h",
538 ]
539 outputs = [
540 "$target_out_dir/" +
Ben Wagnera56c4d22018-01-24 17:32:17 -0500541 rebase_path("src/sksl/sksl_enums.inc", target_out_dir),
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500542 ]
543 args = [
544 rebase_path(sources[0]),
545 rebase_path(outputs[0]),
546 ]
547 }
548
Ethan Nicholas762466e2017-06-29 10:03:38 -0400549 action("compile_processors") {
550 script = "gn/compile_processors.py"
551 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500552 ":create_sksl_enums",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400553 ":skslc(//gn/toolchain:$host_toolchain)",
554 ]
555 sources = skia_gpu_processor_sources
556 outputs = skia_gpu_processor_outputs
557 skslc_path = "$root_out_dir/"
558 if (host_toolchain != default_toolchain_name) {
559 skslc_path += "$host_toolchain/"
560 }
561 skslc_path += "skslc"
562 if (host_os == "win") {
563 skslc_path += ".exe"
564 }
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400565 args = [
566 rebase_path(skslc_path),
Eric Borenb121be72017-07-28 10:00:51 -0400567 rebase_path("bin/clang-format"),
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400568 ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400569 args += rebase_path(skia_gpu_processor_sources)
570 }
571} else {
572 skia_gpu_processor_outputs = []
573 group("compile_processors") {
574 }
575}
576
Ben Wagnere27ee6c2019-02-15 14:59:30 -0500577optional("gpu") {
mtklein06c35c02016-09-20 12:28:12 -0700578 enabled = skia_enable_gpu
Ethan Nicholas762466e2017-06-29 10:03:38 -0400579 deps = [
580 ":compile_processors",
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700581 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400582 ]
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700583 if (skia_generate_workarounds) {
584 deps += [ ":workaround_list" ]
585 }
mtkleine9fb3d52016-09-20 15:11:46 -0700586 public_defines = []
Chris Dalton3a67b8e2018-05-03 09:30:29 -0600587 public_configs = []
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400588 public_deps = []
mtkleine9fb3d52016-09-20 15:11:46 -0700589
Brian Salomon3d6801e2017-12-11 10:06:31 -0500590 sources = skia_gpu_sources + skia_sksl_sources + skia_gpu_processor_outputs
Kevin Lubick93faa672018-10-10 15:54:53 -0400591 if (!skia_enable_ccpr) {
592 sources -= skia_ccpr_sources
593 sources += [ "src/gpu/ccpr/GrCoverageCountingPathRenderer_none.cpp" ]
594 }
Kevin Lubick4bf2c262018-10-15 09:35:54 -0400595 if (!skia_enable_nvpr) {
596 sources -= skia_nvpr_sources
597 sources += [ "src/gpu/GrPathRendering_none.cpp" ]
598 }
mtklein06c35c02016-09-20 12:28:12 -0700599
600 # These paths need to be absolute to match the ones produced by shared_sources.gni.
Brian Salomon3d6801e2017-12-11 10:06:31 -0500601 sources -= get_path_info([ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ],
mtklein06c35c02016-09-20 12:28:12 -0700602 "abspath")
Mike Klein703cf5a2016-10-13 17:18:04 -0400603 libs = []
mtklein06c35c02016-09-20 12:28:12 -0700604 if (is_android) {
Hal Canary25375e82018-03-14 15:16:56 -0400605 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Derek Sollenberger7a869872017-06-27 15:37:25 -0400606
607 # this lib is required to link against AHardwareBuffer
608 if (defined(ndk_api) && ndk_api >= 26) {
609 libs += [ "android" ]
610 }
Kevin Lubick4a24e102017-03-29 11:19:01 -0400611 } else if (skia_use_egl) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500612 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Kevin Lubick4a24e102017-03-29 11:19:01 -0400613 libs += [ "EGL" ]
Chinmay Garded92d0352018-09-17 10:23:28 -0700614 } else if (is_linux && skia_use_x11) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500615 sources += [ "src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp" ]
Mike Kleina27f2692018-06-20 11:06:39 -0400616 libs += [ "GL" ]
mtklein06c35c02016-09-20 12:28:12 -0700617 } else if (is_mac) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500618 sources += [ "src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
Chinmay Garde130a1182016-11-23 11:43:56 -0800619 } else if (is_ios) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500620 sources += [ "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400621 } else if (is_win) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500622 sources += [ "src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp" ]
Brian Osman0c757272018-12-10 10:27:26 -0500623 if (target_cpu != "arm64") {
624 libs += [ "OpenGL32.lib" ]
625 }
mtklein06c35c02016-09-20 12:28:12 -0700626 } else {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500627 sources += [ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ]
mtklein06c35c02016-09-20 12:28:12 -0700628 }
mtkleine9fb3d52016-09-20 15:11:46 -0700629
630 if (skia_use_vulkan) {
Greg Danielda16cce2018-08-01 09:23:57 -0400631 public_defines += [ "SK_VULKAN" ]
Greg Daniel18dbfd02018-05-29 10:46:51 -0400632 deps += [ "third_party/vulkanmemoryallocator" ]
mtkleine9fb3d52016-09-20 15:11:46 -0700633 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700634 if (skia_enable_vulkan_debug_layers) {
635 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
636 }
Craig Stoutcb6b4bd2018-12-13 10:20:07 -0800637 if (is_fuchsia) {
Kevin Lubickec1c6202018-12-14 11:42:53 -0500638 public_deps +=
639 [ "//third_party/vulkan_loader_and_validation_layers:vulkan" ]
Craig Stoutcb6b4bd2018-12-13 10:20:07 -0800640 }
mtkleine9fb3d52016-09-20 15:11:46 -0700641 }
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400642
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400643 if (skia_enable_spirv_validation) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400644 deps += [ "//third_party/spirv-tools" ]
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400645 public_defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
646 }
Greg Daniele5ddff52017-07-05 16:49:36 -0400647
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400648 cflags_objcc = []
Greg Daniele5ddff52017-07-05 16:49:36 -0400649 if (skia_use_metal) {
650 public_defines += [ "SK_METAL" ]
651 sources += skia_metal_sources
652 libs += [ "Metal.framework" ]
Greg Daniel53956d92018-08-08 14:41:19 -0400653 libs += [ "Foundation.framework" ]
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400654 cflags_objcc += [ "-fobjc-arc" ]
Greg Daniele5ddff52017-07-05 16:49:36 -0400655 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500656
657 if (skia_enable_atlas_text) {
658 sources += skia_atlas_text_sources
659 }
Kevin Lubickf4def342018-10-04 12:52:50 -0400660
661 if (is_debug) {
662 public_defines += [ "SK_ENABLE_DUMP_GPU" ]
663 }
mtklein06c35c02016-09-20 12:28:12 -0700664}
665
Leon Scroggins III41169202019-01-29 09:29:57 -0500666optional("gif") {
667 enabled = !skia_use_wuffs
668 sources = [
669 "src/codec/SkGifCodec.cpp",
670 "third_party/gif/SkGifImageReader.cpp",
671 ]
672}
673
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400674optional("heif") {
675 enabled = skia_use_libheif
676 public_defines = [ "SK_HAS_HEIF_LIBRARY" ]
677
678 deps = []
679
680 sources = [
681 "src/codec/SkHeifCodec.cpp",
682 ]
683}
684
mtklein63213812016-08-24 09:55:56 -0700685optional("jpeg") {
686 enabled = skia_use_libjpeg_turbo
687 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
688
mtklein63213812016-08-24 09:55:56 -0700689 deps = [
690 "//third_party/libjpeg-turbo:libjpeg",
691 ]
Mike Kleinf105dc72018-06-05 15:22:54 -0400692 public = [
693 "include/encode/SkJpegEncoder.h",
694 ]
mtklein63213812016-08-24 09:55:56 -0700695 sources = [
696 "src/codec/SkJpegCodec.cpp",
697 "src/codec/SkJpegDecoderMgr.cpp",
698 "src/codec/SkJpegUtility.cpp",
mtklein63213812016-08-24 09:55:56 -0700699 "src/images/SkJPEGWriteUtility.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400700 "src/images/SkJpegEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700701 ]
702}
703
704optional("pdf") {
Hal Canary43fb7a02016-12-30 13:09:03 -0500705 enabled = skia_use_zlib && skia_enable_pdf
706 public_defines = [ "SK_SUPPORT_PDF" ]
mtklein63213812016-08-24 09:55:56 -0700707
mtklein63213812016-08-24 09:55:56 -0700708 deps = [
709 "//third_party/zlib",
710 ]
Hal Canary83e0f1b2018-04-05 16:58:41 -0400711 if (skia_use_libjpeg_turbo) {
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700712 deps += [ ":jpeg" ]
Hal Canary83e0f1b2018-04-05 16:58:41 -0400713 }
brettwb9447282016-09-01 14:24:39 -0700714 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -0700715 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
Hal Canary2a3093c2019-02-20 11:25:45 -0500716 if (skia_use_icu && skia_use_harfbuzz && skia_pdf_subset_harfbuzz) {
717 deps += [ "//third_party/harfbuzz" ]
718 defines = [ "SK_PDF_USE_HARFBUZZ_SUBSET" ]
719 } else if (skia_use_icu && skia_use_sfntly) {
mtklein63213812016-08-24 09:55:56 -0700720 deps += [ "//third_party/sfntly" ]
Hal Canary32498f02019-02-04 15:36:31 -0500721 defines = [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -0700722 }
723}
724
725optional("png") {
726 enabled = skia_use_libpng
727 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
728
mtklein63213812016-08-24 09:55:56 -0700729 deps = [
730 "//third_party/libpng",
731 ]
732 sources = [
733 "src/codec/SkIcoCodec.cpp",
734 "src/codec/SkPngCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400735 "src/images/SkPngEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700736 ]
737}
738
scroggof84ad642016-10-31 09:02:57 -0700739optional("raw") {
Mike Klein10d665d2016-11-01 11:46:10 -0400740 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -0700741 public_defines = [ "SK_CODEC_DECODES_RAW" ]
742
743 deps = [
744 "//third_party/dng_sdk",
745 "//third_party/libjpeg-turbo:libjpeg",
746 "//third_party/piex",
747 ]
748
749 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
750 # Skia.
751 configs_to_remove = [ "//gn:no_exceptions" ]
752
753 sources = [
scroggof84ad642016-10-31 09:02:57 -0700754 "src/codec/SkRawCodec.cpp",
755 ]
756}
757
Mike Klein852a8cb2018-05-15 10:46:58 -0400758import("third_party/skcms/skcms.gni")
Brian Osman8dc68c62018-05-30 12:57:45 -0400759source_set("skcms") {
Mike Klein852a8cb2018-05-15 10:46:58 -0400760 cflags = []
761 if (!is_win || is_clang) {
762 cflags += [
763 "-w",
764 "-std=c11",
765 ]
766 }
767
768 public = [
769 "third_party/skcms/skcms.h",
770 ]
771 sources = rebase_path(skcms_sources, ".", "third_party/skcms")
772}
773
mtklein3cc22182016-08-29 13:26:14 -0700774optional("typeface_freetype") {
775 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -0700776
777 deps = [
778 "//third_party/freetype2",
779 ]
780 sources = [
781 "src/ports/SkFontHost_FreeType.cpp",
782 "src/ports/SkFontHost_FreeType_common.cpp",
783 ]
784}
785
mtklein457b42a2016-08-23 13:56:37 -0700786optional("webp") {
787 enabled = skia_use_libwebp
788 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
789
mtklein457b42a2016-08-23 13:56:37 -0700790 deps = [
791 "//third_party/libwebp",
792 ]
793 sources = [
mtklein457b42a2016-08-23 13:56:37 -0700794 "src/codec/SkWebpCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400795 "src/images/SkWebpEncoder.cpp",
mtklein457b42a2016-08-23 13:56:37 -0700796 ]
mtkleineb3c4252016-08-23 07:38:09 -0700797}
798
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400799optional("wuffs") {
800 enabled = skia_use_wuffs
801 public_defines = [ "SK_HAS_WUFFS_LIBRARY" ]
802
803 deps = [
804 "//third_party/wuffs",
805 ]
806 sources = [
807 "src/codec/SkWuffsCodec.cpp",
808 ]
809}
810
mtklein63213812016-08-24 09:55:56 -0700811optional("xml") {
812 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +0000813 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -0700814
mtklein63213812016-08-24 09:55:56 -0700815 deps = [
816 "//third_party/expat",
817 ]
818 sources = [
Mike Kleinbd41bcc2017-02-09 16:38:15 -0500819 "src/svg/SkSVGCanvas.cpp",
820 "src/svg/SkSVGDevice.cpp",
mtklein63213812016-08-24 09:55:56 -0700821 "src/xml/SkDOM.cpp",
822 "src/xml/SkXMLParser.cpp",
823 "src/xml/SkXMLWriter.cpp",
824 ]
825}
826
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700827if (skia_enable_gpu && skia_generate_workarounds) {
828 action("workaround_list") {
829 script = "tools/build_workaround_header.py"
830
831 inputs = [
832 "src/gpu/gpu_workaround_list.txt",
833 ]
834
835 # see comments in skia_compile_processors about out dir path shenanigans.
836 output_file =
Adrienne Walkerab7181d2018-05-14 14:02:03 -0700837 rebase_path("include/gpu/GrDriverBugWorkaroundsAutogen.h", root_out_dir)
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700838
839 outputs = [
840 "$root_out_dir/$output_file",
841 ]
842 args = [
843 "--output-file",
844 "$output_file",
845 ]
846
847 foreach(file, inputs) {
848 args += [ rebase_path(file, root_build_dir) ]
849 }
850 }
851}
852
mtkleinc04ff472016-06-23 10:29:30 -0700853component("skia") {
854 public_configs = [ ":skia_public" ]
855 configs += skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -0700856
Mike Klein607b0a72018-11-07 16:17:34 -0500857 public_deps = [
Ben Wagnere27ee6c2019-02-15 14:59:30 -0500858 ":gpu",
Mike Klein607b0a72018-11-07 16:17:34 -0500859 ":pdf",
860 ":skcms",
861 ]
862
mtkleinc04ff472016-06-23 10:29:30 -0700863 deps = [
anmittalb8b3f712016-08-25 04:55:19 -0700864 ":arm64",
865 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -0700866 ":avx",
Mike Klein54378232018-11-08 12:08:05 +0000867 ":compile_processors",
anmittalb8b3f712016-08-25 04:55:19 -0700868 ":crc32",
mtkleina45be612016-08-29 15:22:10 -0700869 ":fontmgr_android",
mtkleind2e39db2016-09-07 07:52:55 -0700870 ":fontmgr_custom",
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500871 ":fontmgr_custom_empty",
Hal Canaryff2742e2018-01-30 11:35:47 -0500872 ":fontmgr_empty",
mtklein3cc22182016-08-29 13:26:14 -0700873 ":fontmgr_fontconfig",
Sergey Ulanovf3babcd2018-11-30 17:42:00 -0800874 ":fontmgr_fuchsia",
Kevin Lubickddd0a332018-12-12 10:35:13 -0500875 ":fontmgr_wasm",
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500876 ":fontmgr_win",
877 ":fontmgr_win_gdi",
Leon Scroggins III41169202019-01-29 09:29:57 -0500878 ":gif",
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400879 ":heif",
Mike Klein1b9b7d52018-02-27 10:37:40 -0500880 ":hsw",
mtklein63213812016-08-24 09:55:56 -0700881 ":jpeg",
mtklein9b8583d2016-08-24 17:32:30 -0700882 ":none",
mtklein63213812016-08-24 09:55:56 -0700883 ":png",
scroggof84ad642016-10-31 09:02:57 -0700884 ":raw",
mtklein9b8583d2016-08-24 17:32:30 -0700885 ":sse2",
886 ":sse41",
887 ":sse42",
888 ":ssse3",
mtkleineb3c4252016-08-23 07:38:09 -0700889 ":webp",
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400890 ":wuffs",
mtklein63213812016-08-24 09:55:56 -0700891 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -0700892 ]
893
Kevin Lubick134be1d2018-10-30 15:05:04 -0400894 if (skia_enable_nima) {
895 deps += [ "//third_party/Nima-Cpp" ]
896 }
897
Chinmay Garde43f115c2016-11-16 15:04:12 -0800898 # This file (and all GN files in Skia) are designed to work with an
899 # empty sources assignment filter; we handle all that explicitly.
900 # We clear the filter here for clients who may have set up a global filter.
901 set_sources_assignment_filter([])
902
Hal Canaryc25f4e92019-02-26 11:54:25 -0500903 public = skia_core_public
904 public += skia_utils_public
905 public += skia_effects_public
906 public += skia_effects_imagefilter_public
907 public += skia_xps_public
908
mtkleinc04ff472016-06-23 10:29:30 -0700909 sources = []
brettwb9447282016-09-01 14:24:39 -0700910 sources += skia_core_sources
brettwb9447282016-09-01 14:24:39 -0700911 sources += skia_utils_sources
Leon Scroggins IIIee0e5d02019-02-27 10:59:11 -0500912 if (skia_use_xps) {
913 sources += skia_xps_sources
914 }
Mike Klein54378232018-11-08 12:08:05 +0000915 sources += skia_effects_sources
916 sources += skia_effects_imagefilter_sources
mtkleinc04ff472016-06-23 10:29:30 -0700917 sources += [
Stan Iliev73d8fd92017-08-02 15:36:24 -0400918 "src/android/SkAndroidFrameworkUtils.cpp",
Leon Scroggins III42ee2842018-01-14 14:46:51 -0500919 "src/android/SkAnimatedImage.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700920 "src/android/SkBitmapRegionCodec.cpp",
921 "src/android/SkBitmapRegionDecoder.cpp",
922 "src/codec/SkAndroidCodec.cpp",
Nigel Tao612a65d2018-11-09 10:10:31 +1100923 "src/codec/SkAndroidCodecAdapter.cpp",
Leon Scroggins IIId81fed92017-06-01 13:42:28 -0400924 "src/codec/SkBmpBaseCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700925 "src/codec/SkBmpCodec.cpp",
926 "src/codec/SkBmpMaskCodec.cpp",
927 "src/codec/SkBmpRLECodec.cpp",
928 "src/codec/SkBmpStandardCodec.cpp",
929 "src/codec/SkCodec.cpp",
930 "src/codec/SkCodecImageGenerator.cpp",
Leon Scroggins III22f673d2018-05-30 15:33:46 -0400931 "src/codec/SkColorTable.cpp",
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400932 "src/codec/SkEncodedInfo.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700933 "src/codec/SkMaskSwizzler.cpp",
934 "src/codec/SkMasks.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700935 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700936 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -0700937 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700938 "src/codec/SkSwizzler.cpp",
939 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700940 "src/images/SkImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700941 "src/ports/SkDiscardableMemory_none.cpp",
Mike Klein54378232018-11-08 12:08:05 +0000942 "src/ports/SkGlobalInitialization_default.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700943 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700944 "src/ports/SkMemory_malloc.cpp",
945 "src/ports/SkOSFile_stdio.cpp",
946 "src/sfnt/SkOTTable_name.cpp",
947 "src/sfnt/SkOTUtils.cpp",
948 "src/utils/mac/SkStream_mac.cpp",
Jim Van Verth1676cb92019-01-15 13:24:45 -0500949 "third_party/etc1/etc1.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700950 ]
brettwb9447282016-09-01 14:24:39 -0700951
Kevin Lubick32dfdbe2018-10-18 09:47:01 -0400952 defines = []
953 if (!skia_enable_skpicture) {
954 defines = [ "SK_DISABLE_SKPICTURE" ]
Hal Canaryc25f4e92019-02-26 11:54:25 -0500955 public -= skia_skpicture_public
Kevin Lubick32dfdbe2018-10-18 09:47:01 -0400956 sources -= skia_skpicture_sources
Mike Klein54378232018-11-08 12:08:05 +0000957 sources -= [ "//src/effects/imagefilters/SkPictureImageFilter.cpp" ]
Kevin Lubick32dfdbe2018-10-18 09:47:01 -0400958 sources += [ "src/core/SkPicture_none.cpp" ]
959 }
960
mtklein7d6fb2c2016-08-25 14:50:44 -0700961 libs = []
962
mtkleinc04ff472016-06-23 10:29:30 -0700963 if (is_win) {
964 sources += [
965 "src/ports/SkDebug_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700966 "src/ports/SkImageEncoder_WIC.cpp",
967 "src/ports/SkImageGeneratorWIC.cpp",
968 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -0700969 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700970 "src/ports/SkTLS_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700971 ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400972 libs += [
973 "FontSub.lib",
974 "Ole32.lib",
975 "OleAut32.lib",
976 "User32.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500977 "Usp10.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400978 ]
mtkleinc04ff472016-06-23 10:29:30 -0700979 } else {
980 sources += [
mtkleinc04ff472016-06-23 10:29:30 -0700981 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -0700982 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700983 "src/ports/SkTLS_pthread.cpp",
984 ]
Ben Wagnerbe6ae5b2017-08-31 16:45:23 -0400985 libs += [ "dl" ]
mtkleinc04ff472016-06-23 10:29:30 -0700986 }
987
mtklein7d6fb2c2016-08-25 14:50:44 -0700988 if (is_android) {
Mike Klein1c471872017-01-13 15:27:45 -0500989 deps += [ "//third_party/expat" ]
Mike Kleine459afd2017-03-03 09:21:30 -0500990 if (defined(ndk) && ndk != "") {
Mike Klein1c471872017-01-13 15:27:45 -0500991 deps += [ "//third_party/cpu-features" ]
992 }
mtklein06c35c02016-09-20 12:28:12 -0700993 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -0700994 libs += [
995 "EGL",
996 "GLESv2",
997 "log",
998 ]
999 }
1000
Kevin Lubick217056c2018-09-20 17:39:31 -04001001 if (is_linux || target_cpu == "wasm") {
mtklein06c35c02016-09-20 12:28:12 -07001002 sources += [ "src/ports/SkDebug_stdio.cpp" ]
Hal Canary25375e82018-03-14 15:16:56 -04001003 if (skia_use_egl) {
1004 libs += [ "GLESv2" ]
1005 }
mtkleinc04ff472016-06-23 10:29:30 -07001006 }
1007
Leon Scroggins III85e22fc2018-11-28 08:58:47 -05001008 if (skia_use_fonthost_mac) {
Sergey Ulanovf3babcd2018-11-30 17:42:00 -08001009 sources += [ "src/ports/SkFontHost_mac.cpp" ]
Leon Scroggins III85e22fc2018-11-28 08:58:47 -05001010 }
1011
mtkleinc04ff472016-06-23 10:29:30 -07001012 if (is_mac) {
1013 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -07001014 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -07001015 "src/ports/SkImageEncoder_CG.cpp",
1016 "src/ports/SkImageGeneratorCG.cpp",
1017 ]
mtklein09e61f72016-08-23 13:35:28 -07001018 libs += [
bungeman3e306f62017-03-29 11:32:02 -04001019 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
1020 "AppKit.framework",
mtklein09e61f72016-08-23 13:35:28 -07001021 "ApplicationServices.framework",
1022 "OpenGL.framework",
1023 ]
mtkleinc04ff472016-06-23 10:29:30 -07001024 }
abarth6fc8ff02016-07-15 15:15:15 -07001025
Mike Klein7d302882016-11-03 14:06:31 -04001026 if (is_ios) {
1027 sources += [
1028 "src/ports/SkDebug_stdio.cpp",
1029 "src/ports/SkFontHost_mac.cpp",
1030 "src/ports/SkImageEncoder_CG.cpp",
1031 "src/ports/SkImageGeneratorCG.cpp",
1032 ]
1033 libs += [
1034 "CoreFoundation.framework",
1035 "CoreGraphics.framework",
1036 "CoreText.framework",
1037 "ImageIO.framework",
1038 "MobileCoreServices.framework",
bungeman3e306f62017-03-29 11:32:02 -04001039
1040 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
1041 "UIKit.framework",
Mike Klein7d302882016-11-03 14:06:31 -04001042 ]
1043 }
1044
abarth6fc8ff02016-07-15 15:15:15 -07001045 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -07001046 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -07001047 }
mtkleinc04ff472016-06-23 10:29:30 -07001048}
1049
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001050# DebugCanvas used in experimental/wasm-skp-debugger
1051if (target_cpu == "wasm") {
1052 static_library("debugcanvas") {
1053 public_configs = [ ":skia_public" ]
1054
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001055 sources = [
1056 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05001057 "tools/debugger/DebugCanvas.cpp",
1058 "tools/debugger/DrawCommand.cpp",
1059 "tools/debugger/JsonWriteBuffer.cpp",
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001060 ]
1061
1062 deps = [
1063 ":fontmgr_wasm",
1064 ]
1065 }
1066}
1067
Kevin Lubickcbcff382018-10-02 09:02:18 -04001068static_library("pathkit") {
Hal Canaryc25f4e92019-02-26 11:54:25 -05001069 check_includes = false
Kevin Lubickcbcff382018-10-02 09:02:18 -04001070 public_configs = [ ":skia_public" ]
1071 configs += skia_library_configs
1072
1073 deps = [
1074 ":arm64",
1075 ":armv7",
1076 ":avx",
1077 ":crc32",
1078 ":hsw",
1079 ":none",
1080 ":sse2",
1081 ":sse41",
1082 ":sse42",
1083 ":ssse3",
1084 ]
1085
1086 # This file (and all GN files in Skia) are designed to work with an
1087 # empty sources assignment filter; we handle all that explicitly.
1088 # We clear the filter here for clients who may have set up a global filter.
1089 set_sources_assignment_filter([])
1090
1091 sources = []
1092 sources += skia_pathops_sources
Hal Canaryc25f4e92019-02-26 11:54:25 -05001093 sources += skia_pathops_public
Kevin Lubickcbcff382018-10-02 09:02:18 -04001094 sources += [
1095 "src/core/SkAnalyticEdge.cpp",
1096 "src/core/SkArenaAlloc.cpp",
Mike Reedcc88f3a2019-02-06 11:40:27 -05001097 "src/core/SkContourMeasure.cpp",
Kevin Lubickcbcff382018-10-02 09:02:18 -04001098 "src/core/SkCubicMap.cpp",
1099 "src/core/SkEdge.cpp",
1100 "src/core/SkEdgeBuilder.cpp",
1101 "src/core/SkEdgeClipper.cpp",
1102 "src/core/SkGeometry.cpp",
1103 "src/core/SkLineClipper.cpp",
1104 "src/core/SkMallocPixelRef.cpp",
1105 "src/core/SkMath.cpp",
1106 "src/core/SkMatrix.cpp",
1107 "src/core/SkOpts.cpp",
1108 "src/core/SkPaint.cpp",
1109 "src/core/SkPath.cpp",
1110 "src/core/SkPathEffect.cpp",
1111 "src/core/SkPathMeasure.cpp",
1112 "src/core/SkPathRef.cpp",
1113 "src/core/SkPoint.cpp",
1114 "src/core/SkRRect.cpp",
1115 "src/core/SkRect.cpp",
1116 "src/core/SkSemaphore.cpp",
1117 "src/core/SkStream.cpp",
1118 "src/core/SkString.cpp",
1119 "src/core/SkStringUtils.cpp",
1120 "src/core/SkStroke.cpp",
1121 "src/core/SkStrokeRec.cpp",
1122 "src/core/SkStrokerPriv.cpp",
1123 "src/core/SkThreadID.cpp",
1124 "src/core/SkUtils.cpp",
1125 "src/effects/SkDashPathEffect.cpp",
1126 "src/effects/SkTrimPathEffect.cpp",
1127 "src/ports/SkDebug_stdio.cpp",
1128 "src/ports/SkMemory_malloc.cpp",
1129 "src/utils/SkDashPath.cpp",
1130 "src/utils/SkParse.cpp",
1131 "src/utils/SkParsePath.cpp",
1132 "src/utils/SkUTF.cpp",
1133 ]
1134}
1135
Kevin Lubick1ba9c4d2019-02-22 10:04:06 -05001136group("modules") {
1137 deps = [
Kevin Lubick96634842019-03-05 14:09:24 -05001138 "modules/particles",
Kevin Lubick1ba9c4d2019-02-22 10:04:06 -05001139 "modules/skottie",
1140 "modules/skshaper",
1141 ]
1142}
1143
mtkleinc095df52016-08-24 12:23:52 -07001144# Targets guarded by skia_enable_tools may use //third_party freely.
1145if (skia_enable_tools) {
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001146 skia_public_includes = [
1147 "include/android",
1148 "include/atlastext",
1149 "include/c",
1150 "include/codec",
1151 "include/config",
1152 "include/core",
1153 "include/docs",
1154 "include/effects",
1155 "include/encode",
1156 "include/gpu",
1157 "include/pathops",
1158 "include/ports",
1159 "include/svg",
1160 "include/utils",
1161 "include/utils/mac",
1162 "modules/sksg/include",
1163 "modules/skshaper/include",
1164 "modules/skottie/include",
1165 ]
1166
Mike Klein308b5ac2016-12-06 16:03:52 -05001167 # Used by gn_to_bp.py to list our public include dirs.
1168 source_set("public") {
1169 configs += [ ":skia_public" ]
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001170 include_dirs = skia_public_includes
Mike Klein308b5ac2016-12-06 16:03:52 -05001171 }
1172
Mike Kleinc36dedf2016-11-18 09:35:28 -05001173 config("skia.h_config") {
1174 include_dirs = [ "$target_gen_dir" ]
1175 }
1176 action("skia.h") {
1177 public_configs = [ ":skia.h_config" ]
1178 skia_h = "$target_gen_dir/skia.h"
1179 script = "gn/find_headers.py"
Florin Malita6e4d95f2018-05-30 09:27:32 -04001180
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001181 args = [ rebase_path("//bin/gn") ] + [ rebase_path("//") ] +
1182 [ rebase_path(skia_h, root_build_dir) ] +
1183 rebase_path(skia_public_includes)
Mike Kleinc36dedf2016-11-18 09:35:28 -05001184 depfile = "$skia_h.deps"
1185 outputs = [
1186 skia_h,
1187 ]
1188 }
1189
Brian Osmanc9a42472018-05-31 13:17:12 -04001190 if (target_cpu == "x64") {
Mike Kleinc36dedf2016-11-18 09:35:28 -05001191 executable("fiddle") {
Hal Canaryc25f4e92019-02-26 11:54:25 -05001192 check_includes = false
Mike Kleinc36dedf2016-11-18 09:35:28 -05001193 libs = []
Mike Kleinc36dedf2016-11-18 09:35:28 -05001194 sources = [
Mike Kleinc36dedf2016-11-18 09:35:28 -05001195 "tools/fiddle/draw.cpp",
1196 "tools/fiddle/fiddle_main.cpp",
1197 ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -04001198
1199 if (skia_use_egl) {
1200 sources += [ "tools/fiddle/egl_context.cpp" ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -04001201 } else {
1202 sources += [ "tools/fiddle/null_context.cpp" ]
1203 }
Joe Gregorio1e735c02017-04-19 14:05:14 -04001204 testonly = true
Mike Kleinc36dedf2016-11-18 09:35:28 -05001205 deps = [
Joe Gregorio1e735c02017-04-19 14:05:14 -04001206 ":flags",
Robert Phillips57e08282017-11-16 14:59:48 -05001207 ":gpu_tool_utils",
Mike Kleinc36dedf2016-11-18 09:35:28 -05001208 ":skia",
1209 ":skia.h",
Florin Malita6e4d95f2018-05-30 09:27:32 -04001210 "modules/skottie",
Florin Malitaa1dcaae2019-03-25 17:38:43 -04001211 "modules/skshaper",
Mike Kleinc36dedf2016-11-18 09:35:28 -05001212 ]
1213 }
1214 }
1215
Brian Osmanc9a42472018-05-31 13:17:12 -04001216 source_set("public_headers_warnings_check") {
1217 sources = [
1218 "tools/public_headers_warnings_check.cpp",
1219 ]
1220 configs -= [ "//gn:warnings_except_public_headers" ]
1221 deps = [
1222 ":skia",
1223 ":skia.h",
1224 "modules/skottie",
Florin Malitaa1dcaae2019-03-25 17:38:43 -04001225 "modules/skshaper",
Brian Osmanc9a42472018-05-31 13:17:12 -04001226 ]
Greg Daniel54bfb182018-11-20 17:12:36 -05001227
1228 # We add this directory to simulate the client already have
1229 # vulkan/vulkan_core.h on their path.
Greg Daniel54200e42018-12-11 17:03:39 -05001230 include_dirs = [ "include/third_party/vulkan" ]
Mike Kleinc36dedf2016-11-18 09:35:28 -05001231 }
1232
mtkleinc095df52016-08-24 12:23:52 -07001233 template("test_lib") {
1234 config(target_name + "_config") {
mtkleina627b5c2016-09-20 13:36:47 -07001235 if (defined(invoker.public_defines)) {
1236 defines = invoker.public_defines
1237 }
mtklein25c81d42016-07-27 13:55:26 -07001238 }
mtkleinc095df52016-08-24 12:23:52 -07001239 source_set(target_name) {
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001240 forward_variables_from(invoker, "*", [])
Hal Canaryc25f4e92019-02-26 11:54:25 -05001241 check_includes = false
mtkleinc095df52016-08-24 12:23:52 -07001242 public_configs = [
1243 ":" + target_name + "_config",
1244 ":skia_private",
1245 ]
1246
1247 if (!defined(deps)) {
1248 deps = []
1249 }
1250 deps += [ ":skia" ]
1251 testonly = true
1252 }
mtklein25c81d42016-07-27 13:55:26 -07001253 }
mtklein25c81d42016-07-27 13:55:26 -07001254
Mike Kleine6682eb2017-01-05 10:54:57 -05001255 template("test_app") {
Jim Van Verth443a9132017-11-28 09:45:26 -05001256 if (is_ios) {
1257 app_name = target_name
1258 gen_path = target_gen_dir
1259
1260 action("${app_name}_generate_info_plist") {
1261 script = "//gn/gen_plist_ios.py"
1262 outputs = [
1263 "$gen_path/${app_name}_Info.plist",
1264 ]
1265 args = [ rebase_path("$gen_path/$app_name", root_build_dir) ]
1266 }
1267
1268 bundle_data("${app_name}_bundle_info_plist") {
1269 public_deps = [
1270 ":${app_name}_generate_info_plist",
1271 ]
1272 sources = [
1273 "$gen_path/${app_name}_Info.plist",
1274 ]
1275 outputs = [
1276 "{{bundle_root_dir}}/Info.plist",
1277 ]
1278 }
1279
Jim Van Verthffacf652019-04-02 11:59:34 -04001280 has_skps = "True" == exec_script("//gn/checkdir.py",
1281 [ rebase_path("skps", root_build_dir) ],
1282 "trim string")
1283 bundle_data("${app_name}_bundle_resources") {
1284 sources = [
1285 "resources",
1286 ]
1287 outputs = [
1288 # iOS reserves the folders 'Resources' and 'resources' so store one level deeper
1289 "{{bundle_resources_dir}}/data/resources",
1290 ]
1291 }
1292 if (has_skps) {
1293 bundle_data("${app_name}_bundle_skps") {
Jim Van Verth329c5a62017-11-29 11:42:33 -05001294 sources = [
Jim Van Verthffacf652019-04-02 11:59:34 -04001295 "skps",
Jim Van Verth329c5a62017-11-29 11:42:33 -05001296 ]
1297 outputs = [
Jim Van Verthffacf652019-04-02 11:59:34 -04001298 # Store in same folder as resources
1299 "{{bundle_resources_dir}}/data/skps",
Jim Van Verth329c5a62017-11-29 11:42:33 -05001300 ]
1301 }
Jim Van Verth329c5a62017-11-29 11:42:33 -05001302 }
1303
Jim Van Verth443a9132017-11-28 09:45:26 -05001304 executable("${app_name}_generate_executable") {
1305 forward_variables_from(invoker,
1306 "*",
1307 [
1308 "output_name",
1309 "visibility",
1310 "is_shared_library",
1311 ])
Mike Klein154e6da2017-07-26 15:13:47 -04001312 configs += [ ":skia_private" ]
Mike Kleine6682eb2017-01-05 10:54:57 -05001313 testonly = true
Jim Van Verth443a9132017-11-28 09:45:26 -05001314 output_name = rebase_path("$gen_path/$app_name", root_build_dir)
1315 }
1316
1317 bundle_data("${app_name}_bundle_executable") {
1318 public_deps = [
1319 ":${app_name}_generate_executable",
1320 ]
1321 sources = [
1322 "$gen_path/$app_name",
1323 ]
1324 outputs = [
1325 "{{bundle_executable_dir}}/$app_name",
1326 ]
1327 testonly = true
1328 }
1329
Jim Van Verthffacf652019-04-02 11:59:34 -04001330 bundle_data("${app_name}_bundle_symbols") {
1331 public_deps = [
1332 ":${app_name}_generate_executable",
1333 ]
1334 sources = [
1335 "$gen_path/${app_name}.dSYM",
1336 ]
1337 outputs = [
1338 "{{bundle_executable_dir}}/${app_name}.dSYM",
1339 ]
1340 testonly = true
1341 }
1342
Jim Van Verth443a9132017-11-28 09:45:26 -05001343 create_bundle("$app_name") {
1344 product_type = "com.apple.product-type.application"
1345 testonly = true
1346
1347 bundle_root_dir = "${root_build_dir}/${target_name}.app"
1348 bundle_resources_dir = bundle_root_dir
1349 bundle_executable_dir = bundle_root_dir
Jim Van Verth443a9132017-11-28 09:45:26 -05001350
1351 deps = [
1352 ":${app_name}_bundle_executable",
1353 ":${app_name}_bundle_info_plist",
Jim Van Verthffacf652019-04-02 11:59:34 -04001354 ":${app_name}_bundle_resources",
1355 ":${app_name}_bundle_symbols",
Jim Van Verth443a9132017-11-28 09:45:26 -05001356 ]
Jim Van Verthffacf652019-04-02 11:59:34 -04001357 if (has_skps) {
1358 deps += [ ":${app_name}_bundle_skps" ]
Jim Van Verth329c5a62017-11-29 11:42:33 -05001359 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001360
1361 # should only code sign when running on a device, not the simulator
1362 if (target_cpu != "x64") {
1363 code_signing_script = "//gn/codesign_ios.py"
1364 code_signing_sources = [ "$target_gen_dir/$app_name" ]
1365 code_signing_outputs = [
1366 "$bundle_root_dir/_CodeSignature/CodeResources",
1367 "$bundle_root_dir/embedded.mobileprovision",
1368 ]
Jim Van Verth4e502972017-12-07 15:16:10 -05001369 code_signing_args = [
1370 rebase_path("$bundle_root_dir", root_build_dir),
1371 skia_ios_identity,
1372 skia_ios_profile,
1373 ]
Jim Van Verth443a9132017-11-28 09:45:26 -05001374 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001375 }
1376 } else {
Jim Van Verth443a9132017-11-28 09:45:26 -05001377 # !is_ios
1378
1379 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
1380 shared_library("lib" + target_name) {
1381 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1382 configs += [ ":skia_private" ]
1383 testonly = true
1384 }
1385 } else {
1386 _executable = target_name
1387 executable(_executable) {
Hal Canaryc25f4e92019-02-26 11:54:25 -05001388 check_includes = false
Jim Van Verth443a9132017-11-28 09:45:26 -05001389 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1390 configs += [ ":skia_private" ]
1391 testonly = true
1392 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001393 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001394 if (is_android && skia_android_serial != "" && defined(_executable)) {
1395 action("push_" + target_name) {
1396 script = "gn/push_to_android.py"
1397 deps = [
1398 ":" + _executable,
1399 ]
1400 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
1401 outputs = [
1402 _stamp,
1403 ]
1404 args = [
1405 rebase_path("$root_build_dir/$_executable"),
1406 skia_android_serial,
1407 rebase_path(_stamp),
1408 ]
1409 testonly = true
1410 }
Mike Klein7d921032017-01-05 12:20:41 -05001411 }
1412 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001413 }
1414
Greg Danielda16cce2018-08-01 09:23:57 -04001415 config("moltenvk_config") {
1416 if (defined(skia_moltenvk_path) && skia_moltenvk_path != "") {
1417 if (is_ios) {
1418 moltenvk_framework_path = "$skia_moltenvk_path/MoltenVK/iOS"
1419 } else {
1420 moltenvk_framework_path = "$skia_moltenvk_path/MoltenVK/macOS"
1421 }
1422 cflags = [ "-F$moltenvk_framework_path" ]
1423 ldflags = [ "-F$moltenvk_framework_path" ]
1424 libs = [
1425 "MoltenVK.framework",
1426 "Metal.framework",
1427 "IOSurface.framework",
1428 "QuartzCore.framework",
1429 "Foundation.framework",
1430 ]
1431 if (is_ios) {
1432 libs += [ "UIKit.framework" ]
1433 } else {
1434 libs += [ "IOKit.framework" ]
1435 }
1436 defines = [ "SK_MOLTENVK" ]
1437 }
1438 }
1439
1440 source_set("moltenvk") {
1441 public_configs = [ ":moltenvk_config" ]
1442 }
1443
mtkleinc095df52016-08-24 12:23:52 -07001444 test_lib("gpu_tool_utils") {
Brian Osmanc9a42472018-05-31 13:17:12 -04001445 public_defines = []
mtkleind68f9b02016-09-23 13:18:41 -07001446
Mike Klein333fb452019-04-24 08:48:11 -05001447 defines = []
1448 if (skia_enable_discrete_gpu) {
1449 defines += [ "SK_ENABLE_DISCRETE_GPU" ]
1450 }
1451
Brian Osmanc9a42472018-05-31 13:17:12 -04001452 deps = []
Greg Danielda16cce2018-08-01 09:23:57 -04001453 public_deps = []
Brian Osmanc9a42472018-05-31 13:17:12 -04001454 sources = [
1455 "tools/gpu/GrContextFactory.cpp",
1456 "tools/gpu/GrTest.cpp",
Brian Salomon00a5eb82018-07-11 15:32:05 -04001457 "tools/gpu/MemoryCache.cpp",
1458 "tools/gpu/MemoryCache.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04001459 "tools/gpu/ProxyUtils.cpp",
1460 "tools/gpu/TestContext.cpp",
Michael Ludwigd9958f82019-03-21 13:08:36 -04001461 "tools/gpu/YUVUtils.cpp",
1462 "tools/gpu/YUVUtils.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04001463 "tools/gpu/atlastext/GLTestAtlasTextRenderer.cpp",
1464 "tools/gpu/gl/GLTestContext.cpp",
1465 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
Brian Osmanc9a42472018-05-31 13:17:12 -04001466 "tools/gpu/mock/MockTestContext.cpp",
1467 ]
1468 libs = []
1469
1470 if (is_android || skia_use_egl) {
1471 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
1472 } else if (is_ios) {
1473 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
1474 libs += [ "OpenGLES.framework" ]
1475 } else if (is_linux) {
1476 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
Mike Kleina27f2692018-06-20 11:06:39 -04001477 libs += [
1478 "GLU",
1479 "X11",
1480 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001481 } else if (is_mac) {
1482 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
1483 } else if (is_win) {
1484 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
Brian Osman0c757272018-12-10 10:27:26 -05001485 libs += [ "Gdi32.lib" ]
1486 if (target_cpu != "arm64") {
1487 libs += [ "OpenGL32.lib" ]
1488 }
Brian Osmanc9a42472018-05-31 13:17:12 -04001489 }
mtklein25c81d42016-07-27 13:55:26 -07001490
Brian Osmanc9a42472018-05-31 13:17:12 -04001491 cflags_objcc = [ "-fobjc-arc" ]
mtklein6ef69992016-09-14 06:12:09 -07001492
Brian Osmanc9a42472018-05-31 13:17:12 -04001493 if (skia_use_angle) {
1494 deps += [ "//third_party/angle2" ]
1495 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
1496 }
Greg Daniel54200e42018-12-11 17:03:39 -05001497
Brian Osmanc9a42472018-05-31 13:17:12 -04001498 if (skia_use_vulkan) {
1499 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
1500 sources += [ "tools/gpu/vk/VkTestUtils.cpp" ]
Greg Danielda16cce2018-08-01 09:23:57 -04001501 if (defined(skia_moltenvk_path) && skia_moltenvk_path != "") {
1502 public_deps += [ ":moltenvk" ]
1503 }
Brian Osmanc9a42472018-05-31 13:17:12 -04001504 }
1505 if (skia_use_metal) {
1506 sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
mtkleina627b5c2016-09-20 13:36:47 -07001507 }
mtklein25c81d42016-07-27 13:55:26 -07001508 }
mtklein25c81d42016-07-27 13:55:26 -07001509
mtkleinc095df52016-08-24 12:23:52 -07001510 test_lib("flags") {
mtkleinc095df52016-08-24 12:23:52 -07001511 sources = [
Mike Klein88544fb2019-03-20 10:50:33 -05001512 "tools/flags/CommandLineFlags.cpp",
mtklein046cb562016-09-16 10:23:12 -07001513 ]
1514 }
Mike Kleinc6142d82019-03-25 10:54:59 -05001515
1516 test_lib("common_flags_config") {
mtklein046cb562016-09-16 10:23:12 -07001517 sources = [
Mike Klein88544fb2019-03-20 10:50:33 -05001518 "tools/flags/CommonFlagsConfig.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001519 ]
1520 deps = [
mtklein046cb562016-09-16 10:23:12 -07001521 ":flags",
Greg Danielda16cce2018-08-01 09:23:57 -04001522 ]
1523 public_deps = [
mtkleinc095df52016-08-24 12:23:52 -07001524 ":gpu_tool_utils",
1525 ]
1526 }
Mike Kleinc6142d82019-03-25 10:54:59 -05001527 test_lib("common_flags_gpu") {
Mike Kleinc6142d82019-03-25 10:54:59 -05001528 sources = [
1529 "tools/flags/CommonFlagsGpu.cpp",
1530 ]
1531 deps = [
1532 ":flags",
1533 ]
1534 public_deps = [
1535 ":gpu_tool_utils",
1536 ]
1537 }
1538 test_lib("common_flags_images") {
Mike Kleinc6142d82019-03-25 10:54:59 -05001539 sources = [
1540 "tools/flags/CommonFlagsImages.cpp",
1541 ]
1542 deps = [
1543 ":flags",
1544 ]
1545 }
1546 test_lib("common_flags_aa") {
Mike Kleinc6142d82019-03-25 10:54:59 -05001547 sources = [
1548 "tools/flags/CommonFlagsAA.cpp",
1549 ]
1550 deps = [
1551 ":flags",
1552 ]
1553 }
mtklein25c81d42016-07-27 13:55:26 -07001554
Mike Klein499f0ac2019-03-25 13:00:12 -05001555 test_lib("trace") {
Mike Klein499f0ac2019-03-25 13:00:12 -05001556 deps = [
1557 ":flags",
1558 ]
1559 sources = [
1560 "tools/trace/ChromeTracingTracer.cpp",
1561 "tools/trace/ChromeTracingTracer.h",
1562 "tools/trace/EventTracingPriv.cpp",
1563 "tools/trace/EventTracingPriv.h",
1564 "tools/trace/SkDebugfTracer.cpp",
1565 "tools/trace/SkDebugfTracer.h",
1566 ]
1567 }
1568
mtkleinc095df52016-08-24 12:23:52 -07001569 test_lib("tool_utils") {
mtkleinc095df52016-08-24 12:23:52 -07001570 sources = [
mtkleinb37c0342016-09-09 11:07:45 -07001571 "tools/AndroidSkDebugToStdOut.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001572 "tools/CrashHandler.cpp",
Robert Phillips96601082018-05-29 16:13:26 -04001573 "tools/DDLPromiseImageHelper.cpp",
1574 "tools/DDLTileHelper.cpp",
mtklein0590fa52016-09-01 07:06:54 -07001575 "tools/LsanSuppressions.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001576 "tools/ProcStats.cpp",
1577 "tools/Resources.cpp",
Mike Kleinea3f0142019-03-20 11:12:10 -05001578 "tools/ToolUtils.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001579 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05001580 "tools/debugger/DebugCanvas.cpp",
1581 "tools/debugger/DrawCommand.cpp",
1582 "tools/debugger/JsonWriteBuffer.cpp",
Mike Klein0cffcbf92019-03-20 11:08:46 -05001583 "tools/fonts/RandomScalerContext.cpp",
1584 "tools/fonts/TestEmptyTypeface.h",
1585 "tools/fonts/TestFontMgr.cpp",
1586 "tools/fonts/TestFontMgr.h",
1587 "tools/fonts/TestSVGTypeface.cpp",
1588 "tools/fonts/TestSVGTypeface.h",
1589 "tools/fonts/TestTypeface.cpp",
1590 "tools/fonts/TestTypeface.h",
Mike Kleinea3f0142019-03-20 11:12:10 -05001591 "tools/fonts/ToolUtilsFont.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001592 "tools/random_parse_path.cpp",
Mike Kleincd5104e2019-03-20 11:55:08 -05001593 "tools/timer/AnimTimer.h",
mtkleinc095df52016-08-24 12:23:52 -07001594 "tools/timer/Timer.cpp",
1595 ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001596 libs = []
1597 if (is_ios) {
1598 sources += [ "tools/ios_utils.m" ]
1599 libs += [ "Foundation.framework" ]
Mike Kleinbf15b662019-04-15 11:32:16 -05001600 } else if (is_win) {
1601 libs += [ "DbgHelp.lib" ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001602 }
Mike Kleinbf15b662019-04-15 11:32:16 -05001603
Hal Canaryfd9bcab2018-04-24 11:47:23 -04001604 defines = []
1605 if (skia_tools_require_resources) {
1606 defines += [ "SK_TOOLS_REQUIRE_RESOURCES" ]
1607 }
mtkleinc095df52016-08-24 12:23:52 -07001608 deps = [
Ben Wagner97182cc2018-02-15 10:20:04 -05001609 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001610 ":flags",
Mike Kleine4ad58a2019-03-26 09:05:52 -05001611 ]
1612 public_deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05001613 ":gpu_tool_utils",
mtkleinc095df52016-08-24 12:23:52 -07001614 ]
mtkleinc095df52016-08-24 12:23:52 -07001615 }
mtklein25c81d42016-07-27 13:55:26 -07001616
Mike Klein6e744122016-10-27 12:21:40 -04001617 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -07001618 test_lib("gm") {
mtkleinc095df52016-08-24 12:23:52 -07001619 sources = gm_sources
1620 deps = [
scroggo19b91532016-10-24 09:03:26 -07001621 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001622 ":skia",
1623 ":tool_utils",
Mike Reed2f0edd52018-05-31 14:22:30 -04001624 "modules/skottie",
Florin Malita26870722018-09-20 14:35:30 -04001625 "modules/skottie:gm",
Florin Malita3b526b02018-05-25 12:43:51 -04001626 "modules/sksg",
Brian Osmanc725e8f2019-04-10 14:08:44 -04001627 "modules/skshaper",
mtkleinc095df52016-08-24 12:23:52 -07001628 ]
Greg Danielda16cce2018-08-01 09:23:57 -04001629 public_deps = [
1630 ":gpu_tool_utils",
1631 ]
mtkleinc095df52016-08-24 12:23:52 -07001632 }
mtklein25c81d42016-07-27 13:55:26 -07001633
Mike Klein6e744122016-10-27 12:21:40 -04001634 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07001635 test_lib("tests") {
Mike Klein6e744122016-10-27 12:21:40 -04001636 sources = tests_sources + pathops_tests_sources
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -05001637 if (!skia_enable_fontmgr_android) {
Mike Klein6e744122016-10-27 12:21:40 -04001638 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -07001639 }
Ben Wagner37a06c02018-06-22 21:11:00 +00001640 if (!(skia_use_freetype && skia_use_fontconfig)) {
1641 sources -= [ "//tests/FontMgrFontConfigTest.cpp" ]
1642 }
mtkleinc095df52016-08-24 12:23:52 -07001643 deps = [
Hal Canary0f666812018-03-22 15:21:12 -04001644 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001645 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001646 ":skia",
1647 ":tool_utils",
Florin Malita94d4d3e2018-06-18 13:10:51 -04001648 "modules/skottie:tests",
Brian Osmanccb87522018-06-01 19:20:00 +00001649 "modules/sksg:tests",
Brian Osmanc725e8f2019-04-10 14:08:44 -04001650 "modules/skshaper",
mtkleinc095df52016-08-24 12:23:52 -07001651 "//third_party/libpng",
Leon Scroggins III194580d2019-02-22 12:32:16 -05001652 "//third_party/libwebp",
mtkleinc095df52016-08-24 12:23:52 -07001653 "//third_party/zlib",
1654 ]
Mike Kleind63442d2017-03-27 14:16:04 -04001655 public_deps = [
1656 ":gpu_tool_utils", # Test.h #includes headers from this target.
1657 ]
mtkleinc095df52016-08-24 12:23:52 -07001658 }
mtklein2f3416d2016-08-02 16:02:05 -07001659
Mike Klein6e744122016-10-27 12:21:40 -04001660 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07001661 test_lib("bench") {
mtkleinc095df52016-08-24 12:23:52 -07001662 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -07001663 deps = [
1664 ":flags",
1665 ":gm",
1666 ":gpu_tool_utils",
1667 ":skia",
1668 ":tool_utils",
1669 ]
1670 }
mtklein2b6870c2016-07-28 14:17:33 -07001671
mtkleinc095df52016-08-24 12:23:52 -07001672 test_lib("experimental_svg_model") {
Hal Canary0f666812018-03-22 15:21:12 -04001673 if (skia_use_expat) {
Hal Canary0f666812018-03-22 15:21:12 -04001674 sources = [
1675 "experimental/svg/model/SkSVGAttribute.cpp",
1676 "experimental/svg/model/SkSVGAttributeParser.cpp",
1677 "experimental/svg/model/SkSVGCircle.cpp",
1678 "experimental/svg/model/SkSVGClipPath.cpp",
1679 "experimental/svg/model/SkSVGContainer.cpp",
1680 "experimental/svg/model/SkSVGDOM.cpp",
1681 "experimental/svg/model/SkSVGEllipse.cpp",
1682 "experimental/svg/model/SkSVGGradient.cpp",
1683 "experimental/svg/model/SkSVGLine.cpp",
1684 "experimental/svg/model/SkSVGLinearGradient.cpp",
1685 "experimental/svg/model/SkSVGNode.cpp",
1686 "experimental/svg/model/SkSVGPath.cpp",
1687 "experimental/svg/model/SkSVGPattern.cpp",
1688 "experimental/svg/model/SkSVGPoly.cpp",
1689 "experimental/svg/model/SkSVGRadialGradient.cpp",
1690 "experimental/svg/model/SkSVGRect.cpp",
1691 "experimental/svg/model/SkSVGRenderContext.cpp",
1692 "experimental/svg/model/SkSVGSVG.cpp",
1693 "experimental/svg/model/SkSVGShape.cpp",
1694 "experimental/svg/model/SkSVGStop.cpp",
1695 "experimental/svg/model/SkSVGTransformableNode.cpp",
1696 "experimental/svg/model/SkSVGUse.cpp",
1697 "experimental/svg/model/SkSVGValue.cpp",
1698 ]
1699 deps = [
1700 ":skia",
1701 ":xml",
1702 ]
1703 }
mtkleinc095df52016-08-24 12:23:52 -07001704 }
fmalitaa2b9fdf2016-08-03 19:53:36 -07001705
Mike Klein38af9432016-11-11 11:39:44 -05001706 if (skia_use_lua) {
1707 test_lib("lua") {
Mike Klein38af9432016-11-11 11:39:44 -05001708 sources = [
1709 "src/utils/SkLua.cpp",
1710 "src/utils/SkLuaCanvas.cpp",
1711 ]
1712 deps = [
Herb Derby264182c2018-05-29 15:53:40 -04001713 "modules/skshaper",
Mike Klein38af9432016-11-11 11:39:44 -05001714 "//third_party/lua",
1715 ]
1716 }
1717
Mike Kleine6682eb2017-01-05 10:54:57 -05001718 test_app("lua_app") {
Mike Klein38af9432016-11-11 11:39:44 -05001719 sources = [
1720 "tools/lua/lua_app.cpp",
1721 ]
1722 deps = [
1723 ":lua",
1724 ":skia",
1725 "//third_party/lua",
1726 ]
Mike Klein38af9432016-11-11 11:39:44 -05001727 }
1728
Mike Kleine6682eb2017-01-05 10:54:57 -05001729 test_app("lua_pictures") {
Mike Klein38af9432016-11-11 11:39:44 -05001730 sources = [
1731 "tools/lua/lua_pictures.cpp",
1732 ]
1733 deps = [
1734 ":flags",
1735 ":lua",
1736 ":skia",
1737 ":tool_utils",
1738 "//third_party/lua",
1739 ]
Mike Klein38af9432016-11-11 11:39:44 -05001740 }
1741 }
1742
Florin Malitabfe876a2018-09-02 12:33:59 -04001743 if (is_linux || is_mac) {
Florin Malita79725d32018-06-05 16:16:57 -04001744 test_app("skottie_tool") {
1745 deps = [
1746 "modules/skottie:tool",
1747 ]
1748 }
1749 }
1750
Hal Canary5b39dc82019-04-17 13:29:46 -04001751 test_app("make_skqp_model") {
1752 sources = [
1753 "tools/skqp/make_skqp_model.cpp",
1754 ]
1755 deps = [
1756 ":skia",
1757 ]
1758 }
1759
Kevin Lubickebf648e2017-09-21 13:45:16 -04001760 if (target_cpu != "wasm") {
1761 import("gn/samples.gni")
1762 test_lib("samples") {
Yuqian Li56a4a092018-02-12 14:47:34 +08001763 sources = samples_sources
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04001764 public_deps = [
1765 ":tool_utils",
1766 ]
Kevin Lubickebf648e2017-09-21 13:45:16 -04001767 deps = [
1768 ":experimental_svg_model",
1769 ":flags",
Mike Kleinc6142d82019-03-25 10:54:59 -05001770 ":gpu_tool_utils",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001771 ":xml",
Mike Reedec80d902019-02-12 11:31:27 -05001772 "modules/sksg",
Herb Derby264182c2018-05-29 15:53:40 -04001773 "modules/skshaper",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001774 ]
Mike Klein38af9432016-11-11 11:39:44 -05001775
Ruiqi Maof5101492018-06-29 14:32:21 -04001776 # NIMA does not build on Windows clang
1777 if (!is_win || !is_clang) {
Kevin Lubickd9699322018-10-30 15:08:53 -04001778 sources += [ "experimental/nima/NimaActor.cpp" ]
Ruiqi Maof5101492018-06-29 14:32:21 -04001779 deps += [ "//third_party/Nima-Cpp" ]
1780 }
1781
Kevin Lubickebf648e2017-09-21 13:45:16 -04001782 if (skia_use_lua) {
1783 sources += [ "samplecode/SampleLua.cpp" ]
1784 deps += [
1785 ":lua",
1786 "//third_party/lua",
1787 ]
1788 }
1789 }
Mike Klein7af351a2018-07-27 09:54:43 -04001790 test_app("imgcvt") {
1791 sources = [
1792 "tools/imgcvt.cpp",
1793 ]
1794 deps = [
1795 ":skcms",
1796 ":skia",
1797 ]
1798 }
Mike Klein735c7ba2019-03-25 12:57:58 -05001799 test_lib("hash_and_encode") {
Mike Klein735c7ba2019-03-25 12:57:58 -05001800 sources = [
1801 "tools/HashAndEncode.cpp",
1802 "tools/HashAndEncode.h",
1803 ]
1804 deps = [
1805 ":flags",
1806 ":skia",
1807 "//third_party/libpng",
1808 ]
1809 }
1810 test_app("fm") {
1811 sources = [
1812 "tools/fm/fm.cpp",
1813 ]
1814 deps = [
1815 ":common_flags_aa",
1816 ":common_flags_gpu",
Mike Klein6253d902019-03-27 15:09:12 -05001817 ":experimental_svg_model",
Mike Klein735c7ba2019-03-25 12:57:58 -05001818 ":flags",
1819 ":gm",
1820 ":gpu_tool_utils",
1821 ":hash_and_encode",
1822 ":skia",
1823 ":tool_utils",
1824 ":trace",
Mike Klein22924262019-04-02 14:14:56 -04001825 "modules/skottie",
1826 "modules/skottie:utils",
Mike Klein735c7ba2019-03-25 12:57:58 -05001827 ]
1828 }
Kevin Lubickebf648e2017-09-21 13:45:16 -04001829 test_app("dm") {
1830 sources = [
1831 "dm/DM.cpp",
Hal Canaryb6c5e5b2017-10-09 16:13:02 -04001832 "dm/DMGpuTestProcs.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001833 "dm/DMJsonWriter.cpp",
1834 "dm/DMSrcSink.cpp",
1835 ]
Kevin Lubickebf648e2017-09-21 13:45:16 -04001836 deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05001837 ":common_flags_aa",
1838 ":common_flags_config",
1839 ":common_flags_gpu",
1840 ":common_flags_images",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001841 ":experimental_svg_model",
1842 ":flags",
1843 ":gm",
1844 ":gpu_tool_utils",
Mike Klein735c7ba2019-03-25 12:57:58 -05001845 ":hash_and_encode",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001846 ":skia",
1847 ":tests",
1848 ":tool_utils",
Mike Klein499f0ac2019-03-25 13:00:12 -05001849 ":trace",
Florin Malita3d856bd2018-05-26 09:49:28 -04001850 "modules/skottie",
Florin Malitaa8316552018-11-09 16:19:44 -05001851 "modules/skottie:utils",
Florin Malita3b526b02018-05-25 12:43:51 -04001852 "modules/sksg",
Mike Klein38af9432016-11-11 11:39:44 -05001853 ]
Ruiqi Maof5101492018-06-29 14:32:21 -04001854
1855 # NIMA does not build on Windows clang
1856 if (!is_win || !is_clang) {
1857 deps += [ "//third_party/Nima-Cpp" ]
1858 }
Mike Klein38af9432016-11-11 11:39:44 -05001859 }
Brian Osman16adfa32016-10-18 14:42:44 -04001860 }
1861
Mike Kleina8a51ce2018-01-09 12:34:11 -05001862 if (!is_win) {
1863 test_app("remote_demo") {
1864 sources = [
1865 "tools/remote_demo.cpp",
1866 ]
1867 deps = [
1868 ":skia",
1869 ]
1870 }
1871 }
1872
Mike Kleine6682eb2017-01-05 10:54:57 -05001873 test_app("nanobench") {
mtklein2b6870c2016-07-28 14:17:33 -07001874 sources = [
1875 "bench/nanobench.cpp",
1876 ]
1877 deps = [
1878 ":bench",
Mike Kleinc6142d82019-03-25 10:54:59 -05001879 ":common_flags_aa",
1880 ":common_flags_config",
1881 ":common_flags_gpu",
1882 ":common_flags_images",
fmalita6519c212016-09-14 08:05:17 -07001883 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001884 ":flags",
1885 ":gm",
1886 ":gpu_tool_utils",
1887 ":skia",
1888 ":tool_utils",
Mike Klein499f0ac2019-03-25 13:00:12 -05001889 ":trace",
Florin Malita3b526b02018-05-25 12:43:51 -04001890 "modules/sksg",
mtklein2b6870c2016-07-28 14:17:33 -07001891 ]
mtklein2b6870c2016-07-28 14:17:33 -07001892 }
halcanary19a97202016-08-03 15:08:04 -07001893
Ravi Mistry10d36c52017-01-31 09:49:18 -05001894 test_app("skpinfo") {
1895 sources = [
1896 "tools/skpinfo.cpp",
1897 ]
1898 deps = [
1899 ":flags",
1900 ":skia",
1901 ]
1902 }
1903
Brian Osmanc9a42472018-05-31 13:17:12 -04001904 test_app("skpbench") {
1905 sources = [
1906 "tools/skpbench/skpbench.cpp",
1907 ]
1908 deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05001909 ":common_flags_config",
1910 ":common_flags_gpu",
Brian Osmanc9a42472018-05-31 13:17:12 -04001911 ":flags",
1912 ":gpu_tool_utils",
1913 ":skia",
1914 ":tool_utils",
1915 ]
csmartdalton4b5179b2016-09-19 11:03:58 -07001916 }
1917
Mike Kleine6682eb2017-01-05 10:54:57 -05001918 test_app("sktexttopdf") {
halcanary3eee9d92016-09-10 07:01:53 -07001919 sources = [
Herb Derby264182c2018-05-29 15:53:40 -04001920 "tools/using_skia_and_harfbuzz.cpp",
halcanary3eee9d92016-09-10 07:01:53 -07001921 ]
1922 deps = [
1923 ":skia",
Herb Derby264182c2018-05-29 15:53:40 -04001924 "modules/skshaper",
halcanary3eee9d92016-09-10 07:01:53 -07001925 ]
halcanary3eee9d92016-09-10 07:01:53 -07001926 }
mtklein046cb562016-09-16 10:23:12 -07001927
Ben Wagner219f3622017-07-17 15:32:25 -04001928 test_app("create_test_font") {
1929 sources = [
Ben Wagner483c7722018-02-20 17:06:07 -05001930 "tools/fonts/create_test_font.cpp",
Ben Wagner219f3622017-07-17 15:32:25 -04001931 ]
1932 deps = [
1933 ":skia",
1934 ]
1935 assert_no_deps = [
1936 # tool_utils requires the output of this app.
1937 ":tool_utils",
1938 ]
1939 }
1940
Florin Malita5d3ff432018-07-31 16:38:43 -04001941 if (skia_use_expat) {
1942 test_app("create_test_font_color") {
1943 sources = [
1944 "tools/fonts/create_test_font_color.cpp",
1945 ]
1946 deps = [
1947 ":flags",
1948 ":skia",
1949 ":tool_utils",
1950 ]
1951 }
Ben Wagner97182cc2018-02-15 10:20:04 -05001952 }
1953
Mike Kleine6682eb2017-01-05 10:54:57 -05001954 test_app("get_images_from_skps") {
mtklein046cb562016-09-16 10:23:12 -07001955 sources = [
1956 "tools/get_images_from_skps.cpp",
1957 ]
1958 deps = [
1959 ":flags",
1960 ":skia",
mtklein046cb562016-09-16 10:23:12 -07001961 ]
mtklein046cb562016-09-16 10:23:12 -07001962 }
mtkleinecbc5262016-09-22 11:51:24 -07001963
Brian Osman6788a542018-12-10 11:56:01 -05001964 if (!is_ios && target_cpu != "wasm" && !(is_win && target_cpu == "arm64")) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001965 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04001966 sources = [
1967 "tools/skiaserve/Request.cpp",
1968 "tools/skiaserve/Response.cpp",
1969 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001970 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1971 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1972 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1973 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1974 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1975 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1976 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1977 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1978 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05001979 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1980 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001981 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1982 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1983 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1984 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1985 ]
1986 deps = [
1987 ":flags",
1988 ":gpu_tool_utils",
1989 ":skia",
1990 ":tool_utils",
Mike Klein7d302882016-11-03 14:06:31 -04001991 "//third_party/libmicrohttpd",
Mike Klein7d302882016-11-03 14:06:31 -04001992 ]
Mike Klein7d302882016-11-03 14:06:31 -04001993 }
mtkleinecbc5262016-09-22 11:51:24 -07001994 }
kjlubick14f984b2016-10-03 11:49:45 -07001995
Mike Kleine6682eb2017-01-05 10:54:57 -05001996 test_app("fuzz") {
kjlubick14f984b2016-10-03 11:49:45 -07001997 sources = [
Kevin Lubickbc9a1a82018-09-17 14:46:57 -04001998 "fuzz/Fuzz.cpp",
Hal Canary24ac42b2017-02-14 13:35:14 -05001999 "fuzz/FuzzCanvas.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05002000 "fuzz/FuzzCommon.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05002001 "fuzz/FuzzDrawFunctions.cpp",
Kevin Lubicke4be55d2018-03-30 15:05:13 -04002002 "fuzz/FuzzEncoders.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07002003 "fuzz/FuzzGradients.cpp",
Kevin Lubickbc9a1a82018-09-17 14:46:57 -04002004 "fuzz/FuzzMain.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07002005 "fuzz/FuzzParsePath.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05002006 "fuzz/FuzzPathMeasure.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07002007 "fuzz/FuzzPathop.cpp",
Jim Van Verth061cc212018-07-11 14:09:09 -04002008 "fuzz/FuzzPolyUtils.cpp",
Hal Canary13872dd2018-04-06 10:25:12 -04002009 "fuzz/FuzzRegionOp.cpp",
Leon Scroggins III0b8fcbc2018-10-16 15:52:17 -04002010 "fuzz/oss_fuzz/FuzzAndroidCodec.cpp",
Kevin Lubick2416f962018-02-12 08:26:39 -05002011 "fuzz/oss_fuzz/FuzzAnimatedImage.cpp",
2012 "fuzz/oss_fuzz/FuzzImage.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05002013 "fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp",
Leon Scroggins III0b8fcbc2018-10-16 15:52:17 -04002014 "fuzz/oss_fuzz/FuzzIncrementalImage.cpp",
Florin Malita80452be2018-06-19 11:27:20 -04002015 "fuzz/oss_fuzz/FuzzJSON.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05002016 "fuzz/oss_fuzz/FuzzPathDeserialize.cpp",
Kevin Lubick2541edf2018-01-11 10:27:14 -05002017 "fuzz/oss_fuzz/FuzzRegionDeserialize.cpp",
2018 "fuzz/oss_fuzz/FuzzRegionSetPath.cpp",
Kevin Lubicke9c1ce82019-03-11 11:09:40 -04002019 "fuzz/oss_fuzz/FuzzSKSL2GLSL.cpp",
2020 "fuzz/oss_fuzz/FuzzSKSL2Metal.cpp",
Kevin Lubick0f0a7102019-03-18 16:20:55 -04002021 "fuzz/oss_fuzz/FuzzSKSL2Pipeline.cpp",
Kevin Lubicke9c1ce82019-03-11 11:09:40 -04002022 "fuzz/oss_fuzz/FuzzSKSL2SPIRV.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05002023 "fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp",
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05002024 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002025 "tools/debugger/DebugCanvas.cpp",
2026 "tools/debugger/DrawCommand.cpp",
2027 "tools/debugger/JsonWriteBuffer.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07002028 ]
2029 deps = [
2030 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04002031 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07002032 ":skia",
Florin Malita3d856bd2018-05-26 09:49:28 -04002033 "modules/skottie:fuzz",
kjlubick14f984b2016-10-03 11:49:45 -07002034 ]
kjlubick14f984b2016-10-03 11:49:45 -07002035 }
Mike Klein38312422016-10-05 15:41:01 -04002036
Mike Kleine6682eb2017-01-05 10:54:57 -05002037 test_app("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04002038 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04002039 rebase_path("tests/skia_test.cpp"),
2040 rebase_path("tests/Test.cpp"),
2041 ]
caryclark9feb6322016-10-25 08:58:26 -07002042 deps = [
2043 ":flags",
2044 ":gpu_tool_utils",
2045 ":skia",
2046 ":tool_utils",
2047 ]
caryclark9feb6322016-10-25 08:58:26 -07002048 }
2049
Mike Kleine6682eb2017-01-05 10:54:57 -05002050 test_app("dump_record") {
Mike Klein38312422016-10-05 15:41:01 -04002051 sources = [
2052 "tools/DumpRecord.cpp",
2053 "tools/dump_record.cpp",
2054 ]
2055 deps = [
2056 ":flags",
2057 ":skia",
2058 ]
Mike Klein38312422016-10-05 15:41:01 -04002059 }
bungemanfe917272016-10-13 17:36:40 -04002060
Mike Kleine6682eb2017-01-05 10:54:57 -05002061 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04002062 sources = [
2063 "tools/skdiff/skdiff.cpp",
2064 "tools/skdiff/skdiff_html.cpp",
2065 "tools/skdiff/skdiff_main.cpp",
2066 "tools/skdiff/skdiff_utils.cpp",
2067 ]
2068 deps = [
2069 ":skia",
2070 ":tool_utils",
2071 ]
bungemanfe917272016-10-13 17:36:40 -04002072 }
halcanarya73d76a2016-10-17 13:19:02 -07002073
Mike Kleine6682eb2017-01-05 10:54:57 -05002074 test_app("skp_parser") {
halcanarya73d76a2016-10-17 13:19:02 -07002075 sources = [
2076 "tools/skp_parser.cpp",
2077 ]
2078 deps = [
2079 ":skia",
2080 ":tool_utils",
halcanarya73d76a2016-10-17 13:19:02 -07002081 ]
halcanarya73d76a2016-10-17 13:19:02 -07002082 }
Brian Osman16adfa32016-10-18 14:42:44 -04002083
Brian Osmanc9a42472018-05-31 13:17:12 -04002084 if (!is_win) {
Hal Canaryd7b38452017-12-11 17:46:26 -05002085 test_lib("skqp_lib") {
Hal Canary0e07ad72018-02-08 13:06:56 -05002086 defines =
2087 [ "SK_SKQP_GLOBAL_ERROR_TOLERANCE=$skia_skqp_global_error_tolerance" ]
Hal Canary75427132017-10-11 16:00:31 -04002088 sources = [
2089 "dm/DMGpuTestProcs.cpp",
Hal Canaryac7f23c2018-11-26 14:07:41 -05002090 "tools/skqp/src/skqp.cpp",
2091 "tools/skqp/src/skqp_model.cpp",
Hal Canary75427132017-10-11 16:00:31 -04002092 ]
2093 deps = [
2094 ":gm",
2095 ":gpu_tool_utils",
2096 ":skia",
2097 ":tests",
Hal Canaryd7b38452017-12-11 17:46:26 -05002098 ":tool_utils",
2099 ]
2100 }
2101 test_app("skqp") {
2102 sources = [
Hal Canaryac7f23c2018-11-26 14:07:41 -05002103 "tools/skqp/src/skqp_main.cpp",
Hal Canaryd7b38452017-12-11 17:46:26 -05002104 ]
2105 deps = [
2106 ":skia",
2107 ":skqp_lib",
Hal Canary537d9c02018-01-30 11:30:48 -05002108 ":tool_utils",
Hal Canaryac7f23c2018-11-26 14:07:41 -05002109 ]
2110 }
2111 test_app("jitter_gms") {
2112 sources = [
2113 "tools/skqp/jitter_gms.cpp",
2114 ]
2115 deps = [
2116 ":gm",
2117 ":skia",
2118 ":skqp_lib",
Hal Canary75427132017-10-11 16:00:31 -04002119 ]
2120 }
2121 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002122 if (is_android) {
Hal Canary28f89382017-12-12 09:42:14 -05002123 test_app("skqp_app") {
2124 is_shared_library = true
2125 sources = [
Hal Canaryac7f23c2018-11-26 14:07:41 -05002126 "tools/skqp/src/jni_skqp.cpp",
Hal Canary28f89382017-12-12 09:42:14 -05002127 ]
2128 deps = [
2129 ":skia",
2130 ":skqp_lib",
Hal Canaryb4d01a92018-01-29 13:10:08 -05002131 ":tool_utils",
Hal Canary28f89382017-12-12 09:42:14 -05002132 ]
2133 libs = [ "android" ]
2134 }
2135 }
Stan Iliev93151722018-08-02 11:10:52 -04002136 if (is_android && skia_enable_gpu) {
2137 test_app("skottie_android") {
2138 is_shared_library = true
2139
2140 sources = [
2141 "platform_tools/android/apps/skottie/src/main/cpp/JavaInputStreamAdaptor.cpp",
2142 "platform_tools/android/apps/skottie/src/main/cpp/native-lib.cpp",
2143 ]
2144 libs = []
2145
Stan Iliev93151722018-08-02 11:10:52 -04002146 deps = [
2147 ":skia",
2148 "modules/skottie",
Stan Ilieva7a52b92018-10-01 15:36:32 -04002149 "modules/sksg:samples",
Stan Iliev93151722018-08-02 11:10:52 -04002150 ]
2151 }
2152 }
Hal Canary75427132017-10-11 16:00:31 -04002153
Hal Canarya9de7602018-01-19 13:08:23 -05002154 test_app("list_gms") {
2155 sources = [
2156 "tools/list_gms.cpp",
2157 ]
2158 deps = [
2159 ":gm",
2160 ":skia",
2161 ]
2162 }
2163 test_app("list_gpu_unit_tests") {
2164 sources = [
2165 "dm/DMGpuTestProcs.cpp",
2166 "tools/list_gpu_unit_tests.cpp",
2167 ]
2168 deps = [
2169 ":skia",
2170 ":tests",
2171 ]
2172 }
2173
Brian Osmanc9a42472018-05-31 13:17:12 -04002174 test_lib("sk_app") {
Brian Osmanc9a42472018-05-31 13:17:12 -04002175 sources = [
2176 "tools/sk_app/CommandSet.cpp",
2177 "tools/sk_app/GLWindowContext.cpp",
2178 "tools/sk_app/Window.cpp",
2179 ]
2180 libs = []
2181
2182 if (is_android) {
2183 sources += [
2184 "tools/sk_app/android/GLWindowContext_android.cpp",
2185 "tools/sk_app/android/RasterWindowContext_android.cpp",
2186 "tools/sk_app/android/Window_android.cpp",
2187 "tools/sk_app/android/main_android.cpp",
2188 "tools/sk_app/android/surface_glue_android.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04002189 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002190 libs += [ "android" ]
2191 } else if (is_linux) {
2192 sources += [
2193 "tools/sk_app/unix/GLWindowContext_unix.cpp",
2194 "tools/sk_app/unix/RasterWindowContext_unix.cpp",
2195 "tools/sk_app/unix/Window_unix.cpp",
2196 "tools/sk_app/unix/keysym2ucs.c",
2197 "tools/sk_app/unix/main_unix.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04002198 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002199 libs += [
2200 "GL",
2201 "X11",
2202 ]
2203 } else if (is_win) {
2204 sources += [
2205 "tools/sk_app/win/GLWindowContext_win.cpp",
2206 "tools/sk_app/win/RasterWindowContext_win.cpp",
2207 "tools/sk_app/win/Window_win.cpp",
2208 "tools/sk_app/win/main_win.cpp",
2209 ]
Brian Salomon194db172017-08-17 14:37:06 -04002210 if (skia_use_angle) {
Brian Osmanc9a42472018-05-31 13:17:12 -04002211 sources += [ "tools/sk_app/win/ANGLEWindowContext_win.cpp" ]
Brian Salomon194db172017-08-17 14:37:06 -04002212 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002213 } else if (is_mac) {
2214 sources += [
Jim Van Verth1f086ca2019-01-28 14:46:04 -05002215 "tools/sk_app/mac/GLWindowContext_mac.mm",
2216 "tools/sk_app/mac/RasterWindowContext_mac.mm",
2217 "tools/sk_app/mac/Window_mac.mm",
2218 "tools/sk_app/mac/main_mac.mm",
Brian Osmanc9a42472018-05-31 13:17:12 -04002219 ]
2220 libs += [
2221 "QuartzCore.framework",
2222 "Cocoa.framework",
2223 "Foundation.framework",
2224 ]
2225 } else if (is_ios) {
2226 sources += [
2227 "tools/sk_app/ios/GLWindowContext_ios.cpp",
2228 "tools/sk_app/ios/RasterWindowContext_ios.cpp",
2229 "tools/sk_app/ios/Window_ios.cpp",
2230 "tools/sk_app/ios/main_ios.cpp",
2231 ]
2232 }
2233
2234 if (skia_use_vulkan) {
2235 sources += [ "tools/sk_app/VulkanWindowContext.cpp" ]
2236 if (is_android) {
2237 sources += [ "tools/sk_app/android/VulkanWindowContext_android.cpp" ]
2238 } else if (is_linux) {
2239 sources += [ "tools/sk_app/unix/VulkanWindowContext_unix.cpp" ]
2240 libs += [ "X11-xcb" ]
2241 } else if (is_win) {
2242 sources += [ "tools/sk_app/win/VulkanWindowContext_win.cpp" ]
Jim Van Verthce51c142019-02-14 14:07:46 -05002243 } else if (is_mac) {
2244 sources += [ "tools/sk_app/mac/VulkanWindowContext_mac.mm" ]
2245 libs += [ "MetalKit.framework" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002246 }
2247 }
2248
Jim Van Verthbe39f712019-02-08 15:36:14 -05002249 if (skia_use_metal) {
2250 sources += [ "tools/sk_app/MetalWindowContext.mm" ]
2251 if (is_mac) {
2252 sources += [ "tools/sk_app/mac/MetalWindowContext_mac.mm" ]
2253 }
2254 libs += [ "MetalKit.framework" ]
2255 }
2256
Brian Osmanc9a42472018-05-31 13:17:12 -04002257 deps = [
2258 ":gpu_tool_utils",
2259 ":skia",
2260 ":tool_utils",
Brian Osmanc9a42472018-05-31 13:17:12 -04002261 ]
2262 if (is_android) {
2263 deps += [ "//third_party/native_app_glue" ]
Jim Van Verth1f086ca2019-01-28 14:46:04 -05002264 } else if (is_ios) {
Brian Osmanc9a42472018-05-31 13:17:12 -04002265 deps += [ "//third_party/libsdl" ]
2266 }
2267 if (skia_use_angle) {
2268 deps += [ "//third_party/angle2" ]
Mike Kleina92c3832016-12-08 09:49:39 -05002269 }
Brian Osman16adfa32016-10-18 14:42:44 -04002270 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05002271
Hal Canary87515122019-03-15 14:22:51 -04002272 if (!skia_use_vulkan && (is_mac || is_linux || is_win)) {
2273 test_app("fiddle_examples") {
2274 sources = [
Brian Osmanc725e8f2019-04-10 14:08:44 -04002275 "tools/fiddle/all_examples.cpp",
Hal Canary87515122019-03-15 14:22:51 -04002276 "tools/fiddle/examples.cpp",
Brian Osman72ef2d52019-03-17 11:09:17 -04002277 "tools/fiddle/examples.h",
Hal Canary87515122019-03-15 14:22:51 -04002278 ]
Brian Osman72ef2d52019-03-17 11:09:17 -04002279 if (is_win) {
2280 cflags = [ "/wd4756" ] # Overflow in constant arithmetic
2281 }
Hal Canary87515122019-03-15 14:22:51 -04002282 deps = [
2283 ":skia",
2284 ":skia.h",
2285 "modules/skottie",
Florin Malitaa1dcaae2019-03-25 17:38:43 -04002286 "modules/skshaper",
Hal Canary87515122019-03-15 14:22:51 -04002287 ]
2288 }
2289 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002290 test_app("viewer") {
2291 is_shared_library = is_android
Brian Osmanc9a42472018-05-31 13:17:12 -04002292 sources = [
2293 "tools/viewer/BisectSlide.cpp",
2294 "tools/viewer/GMSlide.cpp",
2295 "tools/viewer/ImGuiLayer.cpp",
2296 "tools/viewer/ImageSlide.cpp",
Brian Osman7c979f52019-02-12 13:27:51 -05002297 "tools/viewer/ParticlesSlide.cpp",
Brian Osmanc9a42472018-05-31 13:17:12 -04002298 "tools/viewer/SKPSlide.cpp",
2299 "tools/viewer/SampleSlide.cpp",
2300 "tools/viewer/SkottieSlide.cpp",
2301 "tools/viewer/SlideDir.cpp",
2302 "tools/viewer/StatsLayer.cpp",
2303 "tools/viewer/SvgSlide.cpp",
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04002304 "tools/viewer/TouchGesture.cpp",
Leon Scroggins III81886e82018-08-22 11:18:08 -04002305 "tools/viewer/TouchGesture.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002306 "tools/viewer/Viewer.cpp",
2307 ]
2308 libs = []
2309
Brian Osmanc9a42472018-05-31 13:17:12 -04002310 deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05002311 ":common_flags_gpu",
Brian Osmanc9a42472018-05-31 13:17:12 -04002312 ":experimental_svg_model",
2313 ":flags",
2314 ":gm",
2315 ":gpu_tool_utils",
2316 ":samples",
2317 ":sk_app",
2318 ":skia",
2319 ":tool_utils",
Mike Klein499f0ac2019-03-25 13:00:12 -05002320 ":trace",
Brian Osman7c979f52019-02-12 13:27:51 -05002321 "modules/particles",
Brian Osmanc9a42472018-05-31 13:17:12 -04002322 "modules/skottie",
Florin Malitaa8316552018-11-09 16:19:44 -05002323 "modules/skottie:utils",
Brian Osmanc9a42472018-05-31 13:17:12 -04002324 "modules/sksg",
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04002325 "modules/sksg:samples",
Brian Osmanc9a42472018-05-31 13:17:12 -04002326 "//third_party/imgui",
Brian Osmanc9a42472018-05-31 13:17:12 -04002327 ]
Ruiqi Maof5101492018-06-29 14:32:21 -04002328
2329 # NIMA does not build on Windows clang
2330 if (!is_win || !is_clang) {
2331 sources += [ "tools/viewer/NIMASlide.cpp" ]
2332 deps += [ "//third_party/Nima-Cpp" ]
2333 }
Brian Osmaneff04b52017-11-21 13:18:02 -05002334 }
2335
ziadbbceddbc2018-06-19 13:57:15 -04002336 if (is_android) {
2337 test_app("arcore") {
2338 is_shared_library = true
2339 configs = [
2340 ":skia_public",
2341 "gn:default",
2342 ]
2343
2344 # For internship expedience, yes, we're rebuilding Skia rather than depending on :skia.
2345 # At the moment there's no way to use Skia and Skottie/SkShaper unless they're in the same .so.
Hal Canaryc25f4e92019-02-26 11:54:25 -05002346 public = skia_core_public
2347 public += skia_utils_public
ziadbbceddbc2018-06-19 13:57:15 -04002348 sources = []
2349 sources += skia_core_sources
2350 sources += skia_utils_sources
2351 sources += skia_xps_sources
2352 sources += [
2353 "src/android/SkAndroidFrameworkUtils.cpp",
2354 "src/android/SkAnimatedImage.cpp",
2355 "src/android/SkBitmapRegionCodec.cpp",
2356 "src/android/SkBitmapRegionDecoder.cpp",
2357 "src/codec/SkAndroidCodec.cpp",
2358 "src/codec/SkBmpBaseCodec.cpp",
2359 "src/codec/SkBmpCodec.cpp",
2360 "src/codec/SkBmpMaskCodec.cpp",
2361 "src/codec/SkBmpRLECodec.cpp",
2362 "src/codec/SkBmpStandardCodec.cpp",
2363 "src/codec/SkCodec.cpp",
2364 "src/codec/SkCodecImageGenerator.cpp",
2365 "src/codec/SkColorTable.cpp",
2366 "src/codec/SkGifCodec.cpp",
2367 "src/codec/SkMaskSwizzler.cpp",
2368 "src/codec/SkMasks.cpp",
2369 "src/codec/SkSampledCodec.cpp",
2370 "src/codec/SkSampler.cpp",
2371 "src/codec/SkStreamBuffer.cpp",
2372 "src/codec/SkSwizzler.cpp",
2373 "src/codec/SkWbmpCodec.cpp",
2374 "src/images/SkImageEncoder.cpp",
2375 "src/ports/SkDiscardableMemory_none.cpp",
2376 "src/ports/SkImageGenerator_skia.cpp",
2377 "src/ports/SkMemory_malloc.cpp",
2378 "src/ports/SkOSFile_stdio.cpp",
2379 "src/sfnt/SkOTTable_name.cpp",
2380 "src/sfnt/SkOTUtils.cpp",
2381 "src/utils/mac/SkStream_mac.cpp",
Jim Van Verth1676cb92019-01-15 13:24:45 -05002382 "third_party/etc1/etc1.cpp",
ziadbbceddbc2018-06-19 13:57:15 -04002383 "third_party/gif/SkGifImageReader.cpp",
2384 ]
2385 deps = [
2386 ":tool_utils",
2387 "modules/skottie",
2388 "modules/skshaper",
2389 ]
2390 }
2391 }
2392
Brian Osmanc9a42472018-05-31 13:17:12 -04002393 if (!skia_use_angle && (is_linux || is_win || is_mac)) {
Brian Osmaneff04b52017-11-21 13:18:02 -05002394 test_app("HelloWorld") {
2395 sources = [
2396 "example/HelloWorld.cpp",
2397 ]
2398 libs = []
2399
Brian Osmaneff04b52017-11-21 13:18:02 -05002400 deps = [
2401 ":flags",
2402 ":gpu_tool_utils",
2403 ":sk_app",
2404 ":skia",
2405 ":tool_utils",
Brian Osmaneff04b52017-11-21 13:18:02 -05002406 ]
2407 }
2408 }
2409
Brian Osmanc9a42472018-05-31 13:17:12 -04002410 if (is_linux || is_mac || is_ios) {
Jim Van Verth4c70c752017-07-11 12:03:01 -04002411 test_app("SkiaSDLExample") {
2412 sources = [
2413 "example/SkiaSDLExample.cpp",
2414 ]
2415 libs = []
Jim Van Verth4c70c752017-07-11 12:03:01 -04002416 deps = [
2417 ":gpu_tool_utils",
2418 ":skia",
2419 "//third_party/libsdl",
2420 ]
2421 }
2422 }
2423
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002424 if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
2425 action_foreach("generate_mocs") {
2426 script = "gn/call.py"
2427 sources = [
2428 "tools/mdbviz/MainWindow.h",
2429 ]
2430 outputs = [
2431 "$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp",
2432 ]
2433 args = [
2434 "$skia_qt_path" + "/bin/moc",
2435 "{{source}}",
2436 "-o",
2437 "gen/mdbviz/{{source_name_part}}_moc.cpp",
2438 ]
2439 }
2440 action_foreach("generate_resources") {
2441 script = "gn/call.py"
2442 sources = [
2443 "tools/mdbviz/resources.qrc",
2444 ]
2445 outputs = [
2446 "$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp",
2447 ]
2448 args = [
2449 "$skia_qt_path" + "/bin/rcc",
2450 "{{source}}",
2451 "-o",
2452 "gen/mdbviz/{{source_name_part}}_res.cpp",
2453 ]
2454 }
2455 test_app("mdbviz") {
2456 if (is_win) {
2457 # on Windows we need to disable some exception handling warnings due to the Qt headers
2458 cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
2459 }
2460 sources = [
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002461 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002462 "tools/debugger/DebugCanvas.cpp",
2463 "tools/debugger/DrawCommand.cpp",
2464 "tools/debugger/JsonWriteBuffer.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002465 "tools/mdbviz/MainWindow.cpp",
Robert Phillipsdeaf5682017-09-06 13:07:21 -04002466 "tools/mdbviz/Model.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002467 "tools/mdbviz/main.cpp",
2468
2469 # generated files
2470 "$target_gen_dir/mdbviz/MainWindow_moc.cpp",
2471 "$target_gen_dir/mdbviz/resources_res.cpp",
2472 ]
2473 lib_dirs = [ "$skia_qt_path/lib" ]
2474 libs = [
2475 "Qt5Core.lib",
2476 "Qt5Gui.lib",
2477 "Qt5Widgets.lib",
2478 ]
2479 include_dirs = [
2480 "$skia_qt_path/include",
Robert Phillips276066b2017-09-06 17:17:44 -04002481 "$skia_qt_path/include/QtCore",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002482 "$skia_qt_path/include/QtWidgets",
2483 ]
2484 deps = [
2485 ":generate_mocs",
2486 ":generate_resources",
2487 ":skia",
2488 ]
2489 }
2490 }
2491
Mike Kleine459afd2017-03-03 09:21:30 -05002492 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05002493 copy("gdbserver") {
2494 sources = [
2495 "$ndk/$ndk_gdbserver",
2496 ]
2497 outputs = [
2498 "$root_out_dir/gdbserver",
2499 ]
2500 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05002501 }
Mike Kleinf9ae6702018-06-20 14:05:05 -04002502
2503 if (skia_use_opencl) {
2504 test_app("hello-opencl") {
2505 sources = [
Mike Kleinf9ae6702018-06-20 14:05:05 -04002506 "tools/hello-opencl.cpp",
2507 ]
Mike Klein8a1f15d2019-02-11 11:59:41 -05002508 deps = [
2509 "//third_party/opencl",
2510 ]
Mike Kleinf9ae6702018-06-20 14:05:05 -04002511 }
2512 }
mtklein25c81d42016-07-27 13:55:26 -07002513}