blob: 0acc43e257ad25b97173bf401308330cea5311dd [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 Canary45812a12019-09-04 08:58:59 -04009import("gn/skia.gni")
10
John Rosasco24cbdab2019-09-25 14:14:35 -070011if (is_fuchsia) {
12 import("//build/fuchsia/sdk.gni")
13 import("build/fuchsia/fuchsia_download_sdk.gni")
14}
15
Stephen White0d70b712019-07-10 15:51:30 -040016if (skia_use_dawn) {
17 import("third_party/externals/dawn/scripts/dawn_features.gni")
18}
19
Adam Barth54ef74a2017-10-13 10:59:38 -070020if (defined(skia_settings)) {
21 import(skia_settings)
22}
23
Hal Canary3388c1a2019-09-16 12:53:17 -040024import("gn/ios.gni")
25
mtkleinc04ff472016-06-23 10:29:30 -070026# Skia public API, generally provided by :skia.
27config("skia_public") {
Mike Klein9e25bb92019-04-29 09:46:36 -050028 include_dirs = [ "." ]
29
Mike Kleinae7e6712016-10-11 17:49:33 -040030 defines = []
31 if (is_component_build) {
32 defines += [ "SKIA_DLL" ]
33 }
Mike Kleinc4cbd742016-09-26 21:37:09 -040034 if (is_fuchsia || is_linux) {
Mike Kleinf0a53692019-04-24 11:42:40 -050035 defines += [ "SK_R32_SHIFT=16" ]
jcgregorio5561e3d2016-08-25 09:25:11 -070036 }
Brian Osmanf2c90142017-07-13 15:50:03 -040037 if (skia_enable_flutter_defines) {
38 defines += flutter_defines
39 }
mtklein06c35c02016-09-20 12:28:12 -070040 if (!skia_enable_gpu) {
41 defines += [ "SK_SUPPORT_GPU=0" ]
42 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -050043 if (skia_enable_atlas_text) {
44 defines += [ "SK_SUPPORT_ATLAS_TEXT=1" ]
45 }
Mike Reed025f7832018-11-12 09:27:05 -050046 if (is_fuchsia) {
47 defines += fuchsia_defines
48 }
Kevin Lubick27ba7032019-03-21 08:13:54 -040049 if (skia_gl_standard == "gles") {
50 defines += [ "SK_ASSUME_GL_ES=1" ]
51 } else if (skia_gl_standard == "gl") {
52 defines += [ "SK_ASSUME_GL=1" ]
Kevin Lubick39026282019-03-28 12:46:40 -040053 } else if (skia_gl_standard == "webgl") {
54 defines += [ "SK_ASSUME_WEBGL=1" ]
Kevin Lubick27ba7032019-03-21 08:13:54 -040055 }
mtkleinc04ff472016-06-23 10:29:30 -070056}
57
58# Skia internal APIs, used by Skia itself and a few test tools.
59config("skia_private") {
60 visibility = [ ":*" ]
61
Mike Reeda9e241d2017-05-03 10:52:00 -040062 defines = [ "SK_GAMMA_APPLY_TO_A8" ]
Leon Scroggins IIIc41a5f52018-11-15 15:54:59 -050063 if (skia_use_fixed_gamma_text) {
mtkleinb37c0342016-09-09 11:07:45 -070064 defines += [
65 "SK_GAMMA_EXPONENT=1.4",
66 "SK_GAMMA_CONTRAST=0.0",
67 ]
68 }
Mike Kleinb45d8622019-04-24 14:04:01 -050069 if (is_skia_dev_build) {
70 defines += [
71 "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=1",
72 "GR_TEST_UTILS=1",
73 ]
mtklein88a7ac02016-09-14 11:16:49 -070074 }
Brian Salomon789e25e2016-09-30 13:41:03 -040075 libs = []
76 lib_dirs = []
Brian Osman34755e22016-12-05 09:46:02 -050077 if (skia_use_angle) {
78 defines += [ "SK_ANGLE" ]
79 }
mtkleinc04ff472016-06-23 10:29:30 -070080}
81
82# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
83config("skia_library") {
84 visibility = [ ":*" ]
Mike Kleinf5f4e812019-04-29 15:45:14 +000085 defines = [ "SKIA_IMPLEMENTATION=1" ]
mtkleinc04ff472016-06-23 10:29:30 -070086}
87
88skia_library_configs = [
89 ":skia_public",
90 ":skia_private",
91 ":skia_library",
92]
93
mtklein9b8583d2016-08-24 17:32:30 -070094# Use for CPU-specific Skia code that needs particular compiler flags.
95template("opts") {
Mike Klein6d1df6d2018-11-07 15:03:58 -050096 visibility = [ ":*" ]
mtklein9b8583d2016-08-24 17:32:30 -070097 if (invoker.enabled) {
98 source_set(target_name) {
Hal Canaryc25f4e92019-02-26 11:54:25 -050099 check_includes = false
mtklein9b8583d2016-08-24 17:32:30 -0700100 forward_variables_from(invoker, "*")
101 configs += skia_library_configs
102 }
103 } else {
104 # If not enabled, a phony empty target that swallows all otherwise unused variables.
105 source_set(target_name) {
Hal Canaryc25f4e92019-02-26 11:54:25 -0500106 check_includes = false
mtklein9b8583d2016-08-24 17:32:30 -0700107 forward_variables_from(invoker,
108 "*",
109 [
110 "sources",
111 "cflags",
112 ])
113 }
114 }
anmittala7eaf2e2016-08-17 13:57:26 -0700115}
116
mtklein422310d2016-08-16 18:28:43 -0700117is_x86 = current_cpu == "x64" || current_cpu == "x86"
mtkleinc04ff472016-06-23 10:29:30 -0700118
mtklein7d6fb2c2016-08-25 14:50:44 -0700119opts("none") {
120 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
brettwb9447282016-09-01 14:24:39 -0700121 sources = skia_opts.none_sources
anmittalb8b3f712016-08-25 04:55:19 -0700122 cflags = []
123}
124
mtklein7d6fb2c2016-08-25 14:50:44 -0700125opts("armv7") {
anmittalb8b3f712016-08-25 04:55:19 -0700126 enabled = current_cpu == "arm"
brettwb9447282016-09-01 14:24:39 -0700127 sources = skia_opts.armv7_sources + skia_opts.neon_sources
mtklein7d6fb2c2016-08-25 14:50:44 -0700128 cflags = []
anmittalb8b3f712016-08-25 04:55:19 -0700129}
130
131opts("arm64") {
132 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700133 sources = skia_opts.arm64_sources
anmittalb8b3f712016-08-25 04:55:19 -0700134 cflags = []
135}
136
137opts("crc32") {
138 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700139 sources = skia_opts.crc32_sources
anmittalb8b3f712016-08-25 04:55:19 -0700140 cflags = [ "-march=armv8-a+crc" ]
141}
142
mtklein9b8583d2016-08-24 17:32:30 -0700143opts("sse2") {
144 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700145 sources = skia_opts.sse2_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400146 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400147 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
148 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400149 cflags = [ "-msse2" ]
150 }
mtklein9b8583d2016-08-24 17:32:30 -0700151}
mtkleinc04ff472016-06-23 10:29:30 -0700152
mtklein9b8583d2016-08-24 17:32:30 -0700153opts("ssse3") {
154 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700155 sources = skia_opts.ssse3_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400156 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400157 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
158 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400159 cflags = [ "-mssse3" ]
160 }
mtklein9b8583d2016-08-24 17:32:30 -0700161}
mtkleinc04ff472016-06-23 10:29:30 -0700162
mtklein9b8583d2016-08-24 17:32:30 -0700163opts("sse41") {
164 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700165 sources = skia_opts.sse41_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400166 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400167 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
168 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400169 cflags = [ "-msse4.1" ]
170 }
mtklein9b8583d2016-08-24 17:32:30 -0700171}
mtklein4e976072016-08-08 09:06:27 -0700172
mtklein9b8583d2016-08-24 17:32:30 -0700173opts("sse42") {
174 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700175 sources = skia_opts.sse42_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400176 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400177 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
178 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400179 cflags = [ "-msse4.2" ]
180 }
mtklein9b8583d2016-08-24 17:32:30 -0700181}
182
183opts("avx") {
184 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700185 sources = skia_opts.avx_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400186 if (is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000187 cflags = [ "/arch:AVX" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400188 } else {
189 cflags = [ "-mavx" ]
Mike Klein1cc767b2019-12-13 13:02:22 -0500190 if (is_mac && is_debug) {
191 cflags += [ "-O1" ] # Work around skia:9709
192 }
Mike Klein3eb71212016-10-11 17:08:53 -0400193 }
mtkleinc04ff472016-06-23 10:29:30 -0700194}
195
Mike Klein1b9b7d52018-02-27 10:37:40 -0500196opts("hsw") {
197 enabled = is_x86
198 sources = skia_opts.hsw_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400199 if (is_win) {
Mike Klein1b9b7d52018-02-27 10:37:40 -0500200 cflags = [ "/arch:AVX2" ]
201 } else {
Mike Kleine87c4862018-03-23 00:13:58 +0000202 cflags = [ "-march=haswell" ]
Mike Kleindb380222020-01-22 13:53:18 -0600203 if (is_mac && is_debug) {
204 cflags += [ "-O1" ] # Work around skia:9709
205 }
Mike Klein1b9b7d52018-02-27 10:37:40 -0500206 }
Mike Klein1b9b7d52018-02-27 10:37:40 -0500207}
208
mtkleinc095df52016-08-24 12:23:52 -0700209# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700210template("optional") {
Mike Klein6d1df6d2018-11-07 15:03:58 -0500211 visibility = [ ":*" ]
mtklein457b42a2016-08-23 13:56:37 -0700212 if (invoker.enabled) {
213 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700214 if (defined(invoker.public_defines)) {
215 defines = invoker.public_defines
216 }
Chris Dalton3a67b8e2018-05-03 09:30:29 -0600217 if (defined(invoker.public_configs)) {
218 configs = invoker.public_configs
219 }
Hal Canary2dad9902019-11-20 16:01:31 -0500220 if (defined(invoker.public_include_dirs)) {
221 include_dirs = invoker.public_include_dirs
222 }
mtklein457b42a2016-08-23 13:56:37 -0700223 }
224 source_set(target_name) {
Hal Canaryc25f4e92019-02-26 11:54:25 -0500225 check_includes = false
mtkleincd01b032016-08-31 04:58:19 -0700226 forward_variables_from(invoker,
227 "*",
228 [
229 "public_defines",
230 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700231 "configs_to_remove",
mtkleincd01b032016-08-31 04:58:19 -0700232 ])
mtklein457b42a2016-08-23 13:56:37 -0700233 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein9b8583d2016-08-24 17:32:30 -0700234 configs += skia_library_configs
scroggof84ad642016-10-31 09:02:57 -0700235 if (defined(invoker.configs_to_remove)) {
236 configs -= invoker.configs_to_remove
237 }
mtklein457b42a2016-08-23 13:56:37 -0700238 }
239 } else {
mtklein457b42a2016-08-23 13:56:37 -0700240 source_set(target_name) {
241 forward_variables_from(invoker,
242 "*",
243 [
244 "public_defines",
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400245 "public_deps",
mtklein457b42a2016-08-23 13:56:37 -0700246 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700247 "libs",
mtklein457b42a2016-08-23 13:56:37 -0700248 "sources",
mtkleincd01b032016-08-31 04:58:19 -0700249 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700250 "configs_to_remove",
mtklein457b42a2016-08-23 13:56:37 -0700251 ])
mtkleincd01b032016-08-31 04:58:19 -0700252 if (defined(invoker.sources_when_disabled)) {
253 sources = invoker.sources_when_disabled
254 }
255 configs += skia_library_configs
mtklein457b42a2016-08-23 13:56:37 -0700256 }
mtkleineb3c4252016-08-23 07:38:09 -0700257 }
mtklein457b42a2016-08-23 13:56:37 -0700258}
mtklein457b42a2016-08-23 13:56:37 -0700259
mtkleina45be612016-08-29 15:22:10 -0700260optional("fontmgr_android") {
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500261 enabled = skia_enable_fontmgr_android
mtkleina45be612016-08-29 15:22:10 -0700262
263 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500264 ":typeface_freetype",
mtkleina45be612016-08-29 15:22:10 -0700265 "//third_party/expat",
mtkleina45be612016-08-29 15:22:10 -0700266 ]
267 sources = [
268 "src/ports/SkFontMgr_android.cpp",
269 "src/ports/SkFontMgr_android_factory.cpp",
270 "src/ports/SkFontMgr_android_parser.cpp",
271 ]
272}
273
mtkleind2e39db2016-09-07 07:52:55 -0700274optional("fontmgr_custom") {
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500275 enabled = skia_enable_fontmgr_custom
mtkleind2e39db2016-09-07 07:52:55 -0700276
277 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500278 ":typeface_freetype",
mtkleind2e39db2016-09-07 07:52:55 -0700279 ]
280 sources = [
281 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500282 "src/ports/SkFontMgr_custom.h",
283 "src/ports/SkFontMgr_custom_directory.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700284 "src/ports/SkFontMgr_custom_directory_factory.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500285 "src/ports/SkFontMgr_custom_embedded.cpp",
286 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700287 ]
288}
289
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500290optional("fontmgr_custom_empty") {
291 enabled = skia_enable_fontmgr_custom_empty
Kevin Lubickddd0a332018-12-12 10:35:13 -0500292
293 deps = [
294 ":typeface_freetype",
295 ]
296 sources = [
297 "src/ports/SkFontMgr_custom.cpp",
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500298 "src/ports/SkFontMgr_custom_empty.cpp",
299 "src/ports/SkFontMgr_custom_empty_factory.cpp",
Sergey Ulanovf3babcd2018-11-30 17:42:00 -0800300 ]
301}
302
Hal Canaryff2742e2018-01-30 11:35:47 -0500303optional("fontmgr_empty") {
304 enabled = skia_enable_fontmgr_empty
305 sources = [
306 "src/ports/SkFontMgr_empty_factory.cpp",
307 ]
308}
309
mtklein3cc22182016-08-29 13:26:14 -0700310optional("fontmgr_fontconfig") {
311 enabled = skia_use_freetype && skia_use_fontconfig
mtklein3cc22182016-08-29 13:26:14 -0700312
313 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500314 ":typeface_freetype",
mtklein3cc22182016-08-29 13:26:14 -0700315 "//third_party:fontconfig",
mtklein3cc22182016-08-29 13:26:14 -0700316 ]
317 sources = [
bungeman1ae0e012016-09-19 12:13:16 -0700318 "src/ports/SkFontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700319 "src/ports/SkFontConfigInterface_direct.cpp",
320 "src/ports/SkFontConfigInterface_direct_factory.cpp",
321 "src/ports/SkFontMgr_FontConfigInterface.cpp",
322 "src/ports/SkFontMgr_fontconfig.cpp",
323 "src/ports/SkFontMgr_fontconfig_factory.cpp",
324 ]
325}
326
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500327optional("fontmgr_fuchsia") {
328 enabled = skia_enable_fontmgr_fuchsia
329
Chinmay Garde89820762019-05-06 16:44:06 -0700330 deps = []
331
332 if (is_fuchsia && using_fuchsia_sdk) {
John Rosasco24cbdab2019-09-25 14:14:35 -0700333 deps += [ "//build/fuchsia/fidl:fuchsia.fonts" ]
Chinmay Garde89820762019-05-06 16:44:06 -0700334 } else {
Robert Phillipsc919f972019-11-18 11:01:05 -0500335 deps = [
336 "//sdk/fidl/fuchsia.fonts",
337 ]
Chinmay Garde89820762019-05-06 16:44:06 -0700338 }
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500339 sources = [
340 "src/ports/SkFontMgr_fuchsia.cpp",
341 "src/ports/SkFontMgr_fuchsia.h",
342 ]
343}
344
345optional("fontmgr_wasm") {
Kevin Lubicke27a5032019-10-09 10:13:29 -0400346 enabled = target_cpu == "wasm"
Kevin Lubickb6a3b7d2020-01-02 08:16:51 -0500347 deps = []
Kevin Lubicke27a5032019-10-09 10:13:29 -0400348
349 # custom_embedded has the source for both embedding a font in the binary
350 # (only used for the all-included build) and reading in a font from
351 # raw bytes passed over the wire (a typical way to load fonts).
Kevin Lubickb6a3b7d2020-01-02 08:16:51 -0500352 if (!skia_enable_fontmgr_empty) {
353 deps += [ ":typeface_freetype" ]
354 sources = [
355 "src/ports/SkFontMgr_custom_embedded.cpp",
Kevin Lubicke27a5032019-10-09 10:13:29 -0400356 ]
Kevin Lubickb6a3b7d2020-01-02 08:16:51 -0500357
358 # If we haven't opted for no fonts (empty) or fonts, but not the
359 # built-in one (custom), then, we need to provide the mechanism for
360 # using the built-in font.
361 if (!skia_enable_fontmgr_custom) {
362 sources += [
363 "src/ports/SkFontMgr_custom.cpp",
364 "src/ports/SkFontMgr_custom.h",
365 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
366 ]
367 }
Kevin Lubicke27a5032019-10-09 10:13:29 -0400368 }
mtkleincdedd0e2016-09-12 15:15:44 -0700369}
370
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500371optional("fontmgr_win") {
372 enabled = skia_enable_fontmgr_win
373
374 sources = [
375 "src/fonts/SkFontMgr_indirect.cpp",
376 "src/ports/SkFontMgr_win_dw.cpp",
377 "src/ports/SkFontMgr_win_dw_factory.cpp",
378 "src/ports/SkScalerContext_win_dw.cpp",
379 "src/ports/SkTypeface_win_dw.cpp",
380 ]
381}
382
383optional("fontmgr_win_gdi") {
384 enabled = skia_enable_fontmgr_win_gdi
385
386 sources = [
387 "src/ports/SkFontHost_win.cpp",
388 ]
389 libs = [ "Gdi32.lib" ]
390}
391
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700392if (skia_lex) {
Ethan Nicholasca82a922017-09-07 09:39:50 -0400393 executable("sksllex") {
394 sources = [
395 "src/sksl/lex/Main.cpp",
396 "src/sksl/lex/NFA.cpp",
397 "src/sksl/lex/RegexNode.cpp",
398 "src/sksl/lex/RegexParser.cpp",
399 ]
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500400 include_dirs = [ "." ]
Ethan Nicholasca82a922017-09-07 09:39:50 -0400401 }
402
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700403 action("run_sksllex") {
404 script = "gn/run_sksllex.py"
Ethan Nicholase148bf72017-10-06 14:22:22 -0400405 deps = [
406 ":sksllex(//gn/toolchain:$host_toolchain)",
407 ]
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700408 sources = [
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700409 "src/sksl/lex/sksl.lex",
410 ]
411
412 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
413 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
414 outputs = [
415 "$target_out_dir/" +
416 rebase_path("src/sksl/lex/SkSLLexer.h", target_out_dir),
417 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
418 # confused due to the same file being named by two different paths
419 ]
420 sksllex_path = "$root_out_dir/"
421 sksllex_path += "sksllex"
422 if (host_os == "win") {
423 sksllex_path += ".exe"
424 }
425 args = [
426 rebase_path(sksllex_path),
427 rebase_path("bin/clang-format"),
428 rebase_path("src"),
429 ]
430 }
431} else {
432 group("run_sksllex") {
433 }
434}
435
436if (skia_compile_processors) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400437 executable("skslc") {
438 defines = [ "SKSL_STANDALONE" ]
439 sources = [
440 "src/sksl/SkSLMain.cpp",
441 ]
442 sources += skia_sksl_sources
Brian Osmanfb32ddf2019-06-18 10:14:20 -0400443 sources += skia_sksl_gpu_sources
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500444 include_dirs = [ "." ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400445 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500446 ":run_sksllex",
Stephen White238fc242019-08-26 10:19:23 -0400447 "//third_party/spirv-tools:spvtools",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400448 ]
449 }
450
451 skia_gpu_processor_outputs = []
452 foreach(src, skia_gpu_processor_sources) {
453 dir = get_path_info(src, "dir")
454 name = get_path_info(src, "name")
455
456 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
457 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
458 skia_gpu_processor_outputs += [
Brian Osmanf5ac1992019-07-18 11:23:16 -0400459 "$target_out_dir/" +
460 rebase_path("$dir/generated/$name.h", target_out_dir),
Ethan Nicholas762466e2017-06-29 10:03:38 -0400461 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
462 # confused due to the same file being named by two different paths
463 ]
464 }
465
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500466 action("create_sksl_enums") {
467 script = "gn/create_sksl_enums.py"
468 sources = [
469 "include/private/GrSharedEnums.h",
470 ]
471 outputs = [
472 "$target_out_dir/" +
Ben Wagnera56c4d22018-01-24 17:32:17 -0500473 rebase_path("src/sksl/sksl_enums.inc", target_out_dir),
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500474 ]
475 args = [
476 rebase_path(sources[0]),
477 rebase_path(outputs[0]),
478 ]
479 }
480
Ethan Nicholas762466e2017-06-29 10:03:38 -0400481 action("compile_processors") {
482 script = "gn/compile_processors.py"
483 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500484 ":create_sksl_enums",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400485 ":skslc(//gn/toolchain:$host_toolchain)",
486 ]
487 sources = skia_gpu_processor_sources
488 outputs = skia_gpu_processor_outputs
489 skslc_path = "$root_out_dir/"
490 if (host_toolchain != default_toolchain_name) {
491 skslc_path += "$host_toolchain/"
492 }
493 skslc_path += "skslc"
494 if (host_os == "win") {
495 skslc_path += ".exe"
496 }
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400497 args = [
498 rebase_path(skslc_path),
Eric Borenb121be72017-07-28 10:00:51 -0400499 rebase_path("bin/clang-format"),
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400500 ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400501 args += rebase_path(skia_gpu_processor_sources)
502 }
503} else {
504 skia_gpu_processor_outputs = []
505 group("compile_processors") {
506 }
507}
508
Ben Wagnere27ee6c2019-02-15 14:59:30 -0500509optional("gpu") {
mtklein06c35c02016-09-20 12:28:12 -0700510 enabled = skia_enable_gpu
Ethan Nicholas762466e2017-06-29 10:03:38 -0400511 deps = [
512 ":compile_processors",
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700513 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400514 ]
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700515 if (skia_generate_workarounds) {
516 deps += [ ":workaround_list" ]
517 }
John Rosascoa9b348f2019-11-08 13:18:15 -0800518 public_defines = []
Chris Dalton3a67b8e2018-05-03 09:30:29 -0600519 public_configs = []
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400520 public_deps = []
mtkleine9fb3d52016-09-20 15:11:46 -0700521
Brian Osmanfb32ddf2019-06-18 10:14:20 -0400522 sources =
523 skia_gpu_sources + skia_sksl_gpu_sources + skia_gpu_processor_outputs
Kevin Lubick93faa672018-10-10 15:54:53 -0400524 if (!skia_enable_ccpr) {
525 sources -= skia_ccpr_sources
526 sources += [ "src/gpu/ccpr/GrCoverageCountingPathRenderer_none.cpp" ]
527 }
Kevin Lubick4bf2c262018-10-15 09:35:54 -0400528 if (!skia_enable_nvpr) {
529 sources -= skia_nvpr_sources
530 sources += [ "src/gpu/GrPathRendering_none.cpp" ]
531 }
mtklein06c35c02016-09-20 12:28:12 -0700532
Mike Klein703cf5a2016-10-13 17:18:04 -0400533 libs = []
mtklein06c35c02016-09-20 12:28:12 -0700534 if (is_android) {
Hal Canary25375e82018-03-14 15:16:56 -0400535 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Derek Sollenberger7a869872017-06-27 15:37:25 -0400536
537 # this lib is required to link against AHardwareBuffer
538 if (defined(ndk_api) && ndk_api >= 26) {
539 libs += [ "android" ]
540 }
Kevin Lubick4a24e102017-03-29 11:19:01 -0400541 } else if (skia_use_egl) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500542 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Kevin Lubick4a24e102017-03-29 11:19:01 -0400543 libs += [ "EGL" ]
Chinmay Garded92d0352018-09-17 10:23:28 -0700544 } else if (is_linux && skia_use_x11) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500545 sources += [ "src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp" ]
Mike Kleina27f2692018-06-20 11:06:39 -0400546 libs += [ "GL" ]
mtklein06c35c02016-09-20 12:28:12 -0700547 } else if (is_mac) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500548 sources += [ "src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
Chinmay Garde130a1182016-11-23 11:43:56 -0800549 } else if (is_ios) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500550 sources += [ "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400551 } else if (is_win) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500552 sources += [ "src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp" ]
Brian Osman0c757272018-12-10 10:27:26 -0500553 if (target_cpu != "arm64") {
554 libs += [ "OpenGL32.lib" ]
555 }
mtklein06c35c02016-09-20 12:28:12 -0700556 } else {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500557 sources += [ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ]
mtklein06c35c02016-09-20 12:28:12 -0700558 }
mtkleine9fb3d52016-09-20 15:11:46 -0700559
John Rosascoa9b348f2019-11-08 13:18:15 -0800560 if (skia_use_gl) {
561 public_defines += [ "SK_GL" ]
562 sources += skia_gl_gpu_sources
563 }
mtkleine9fb3d52016-09-20 15:11:46 -0700564 if (skia_use_vulkan) {
Greg Danielda16cce2018-08-01 09:23:57 -0400565 public_defines += [ "SK_VULKAN" ]
Greg Daniel18dbfd02018-05-29 10:46:51 -0400566 deps += [ "third_party/vulkanmemoryallocator" ]
mtkleine9fb3d52016-09-20 15:11:46 -0700567 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700568 if (skia_enable_vulkan_debug_layers) {
569 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
570 }
Craig Stoutcb6b4bd2018-12-13 10:20:07 -0800571 if (is_fuchsia) {
John Rosascoe57ca492019-11-13 14:30:45 -0800572 if (using_fuchsia_sdk) {
Chinmay Garde89820762019-05-06 16:44:06 -0700573 public_deps += [ "$fuchsia_sdk_root/pkg:vulkan" ]
574 } else {
Brian Osman489cf882019-07-09 10:48:28 -0400575 public_deps += [ "//src/graphics/lib/vulkan" ]
Chinmay Garde89820762019-05-06 16:44:06 -0700576 }
Craig Stoutcb6b4bd2018-12-13 10:20:07 -0800577 }
mtkleine9fb3d52016-09-20 15:11:46 -0700578 }
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400579
Stephen White0d70b712019-07-10 15:51:30 -0400580 if (skia_use_dawn) {
581 public_defines += [ "SK_DAWN" ]
Stephen White985741a2019-07-18 11:43:45 -0400582 sources += skia_dawn_sources
Stephen Whitefbffb992019-10-17 10:32:40 -0400583 public_deps += [ "//third_party/dawn:dawn_headers" ]
584 deps += [
Stephen White1e2adcf2019-10-16 09:48:53 -0400585 "//third_party/dawn:dawncpp",
Stephen Whitefbffb992019-10-17 10:32:40 -0400586 "//third_party/dawn:libdawn_native",
Stephen White36446f22019-10-16 10:20:18 -0400587 "//third_party/dawn:libdawn_proc",
Stephen White0d70b712019-07-10 15:51:30 -0400588 ]
589 if (dawn_enable_d3d12) {
590 libs += [
591 "d3d12.lib",
592 "dxgi.lib",
593 "d3dcompiler.lib",
594 ]
595 } else if (dawn_enable_metal) {
596 libs += [ "Metal.framework" ]
597 }
598 }
599
Jim Van Verthb01e12b2020-02-18 14:34:38 -0500600 if (skia_use_direct3d) {
601 public_defines += [ "SK_DIRECT3D" ]
602 sources += skia_direct3d_sources
603 libs += [
604 "d3d12.lib",
605 "dxgi.lib",
606 "d3dcompiler.lib",
607 ]
608 }
609
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400610 cflags_objcc = []
Greg Daniele5ddff52017-07-05 16:49:36 -0400611 if (skia_use_metal) {
612 public_defines += [ "SK_METAL" ]
613 sources += skia_metal_sources
614 libs += [ "Metal.framework" ]
Jim Van Verth9187e492019-11-11 16:14:13 -0500615 libs += [ "MetalKit.framework" ]
Greg Daniel53956d92018-08-08 14:41:19 -0400616 libs += [ "Foundation.framework" ]
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400617 cflags_objcc += [ "-fobjc-arc" ]
Greg Daniele5ddff52017-07-05 16:49:36 -0400618 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500619
620 if (skia_enable_atlas_text) {
621 sources += skia_atlas_text_sources
622 }
Kevin Lubickf4def342018-10-04 12:52:50 -0400623
624 if (is_debug) {
625 public_defines += [ "SK_ENABLE_DUMP_GPU" ]
626 }
mtklein06c35c02016-09-20 12:28:12 -0700627}
628
Leon Scroggins III41169202019-01-29 09:29:57 -0500629optional("gif") {
Hal Canary2dad9902019-11-20 16:01:31 -0500630 enabled = !skia_use_wuffs && skia_use_libgifcodec
Hal Canary1ec9a282019-11-21 10:15:50 -0500631 _libgifcodec_gni_path = "third_party/externals/libgifcodec/libgifcodec.gni"
632 if ("True" ==
633 exec_script("gn/checkpath.py",
634 [ rebase_path(_libgifcodec_gni_path, root_build_dir) ],
635 "trim string")) {
636 public_defines = [ "SK_USE_LIBGIFCODEC" ]
637 public_include_dirs = [
638 ".",
639 skia_libgifcodec_path,
640 ]
641 include_dirs = public_include_dirs
642 import(_libgifcodec_gni_path)
643 sources = rebase_path(libgifcodec_sources + libgifcodec_public,
644 ".",
645 skia_libgifcodec_path)
646 }
Leon Scroggins III41169202019-01-29 09:29:57 -0500647}
648
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400649optional("heif") {
650 enabled = skia_use_libheif
651 public_defines = [ "SK_HAS_HEIF_LIBRARY" ]
652
653 deps = []
654
655 sources = [
656 "src/codec/SkHeifCodec.cpp",
657 ]
658}
659
mtklein63213812016-08-24 09:55:56 -0700660optional("jpeg") {
661 enabled = skia_use_libjpeg_turbo
662 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
663
mtklein63213812016-08-24 09:55:56 -0700664 deps = [
665 "//third_party/libjpeg-turbo:libjpeg",
666 ]
Mike Kleinf105dc72018-06-05 15:22:54 -0400667 public = [
668 "include/encode/SkJpegEncoder.h",
669 ]
mtklein63213812016-08-24 09:55:56 -0700670 sources = [
671 "src/codec/SkJpegCodec.cpp",
672 "src/codec/SkJpegDecoderMgr.cpp",
673 "src/codec/SkJpegUtility.cpp",
mtklein63213812016-08-24 09:55:56 -0700674 "src/images/SkJPEGWriteUtility.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400675 "src/images/SkJpegEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700676 ]
677}
678
679optional("pdf") {
Hal Canary43fb7a02016-12-30 13:09:03 -0500680 enabled = skia_use_zlib && skia_enable_pdf
681 public_defines = [ "SK_SUPPORT_PDF" ]
mtklein63213812016-08-24 09:55:56 -0700682
mtklein63213812016-08-24 09:55:56 -0700683 deps = [
684 "//third_party/zlib",
685 ]
Hal Canary83e0f1b2018-04-05 16:58:41 -0400686 if (skia_use_libjpeg_turbo) {
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700687 deps += [ ":jpeg" ]
Hal Canary83e0f1b2018-04-05 16:58:41 -0400688 }
brettwb9447282016-09-01 14:24:39 -0700689 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -0700690 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
Hal Canary2a3093c2019-02-20 11:25:45 -0500691 if (skia_use_icu && skia_use_harfbuzz && skia_pdf_subset_harfbuzz) {
692 deps += [ "//third_party/harfbuzz" ]
693 defines = [ "SK_PDF_USE_HARFBUZZ_SUBSET" ]
694 } else if (skia_use_icu && skia_use_sfntly) {
mtklein63213812016-08-24 09:55:56 -0700695 deps += [ "//third_party/sfntly" ]
Hal Canary32498f02019-02-04 15:36:31 -0500696 defines = [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -0700697 }
698}
699
700optional("png") {
701 enabled = skia_use_libpng
702 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
703
mtklein63213812016-08-24 09:55:56 -0700704 deps = [
705 "//third_party/libpng",
706 ]
707 sources = [
708 "src/codec/SkIcoCodec.cpp",
709 "src/codec/SkPngCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400710 "src/images/SkPngEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700711 ]
712}
713
scroggof84ad642016-10-31 09:02:57 -0700714optional("raw") {
Mike Klein10d665d2016-11-01 11:46:10 -0400715 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -0700716 public_defines = [ "SK_CODEC_DECODES_RAW" ]
717
718 deps = [
719 "//third_party/dng_sdk",
720 "//third_party/libjpeg-turbo:libjpeg",
721 "//third_party/piex",
722 ]
723
724 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
725 # Skia.
726 configs_to_remove = [ "//gn:no_exceptions" ]
727
728 sources = [
scroggof84ad642016-10-31 09:02:57 -0700729 "src/codec/SkRawCodec.cpp",
730 ]
731}
732
Mike Klein852a8cb2018-05-15 10:46:58 -0400733import("third_party/skcms/skcms.gni")
Brian Osman8dc68c62018-05-30 12:57:45 -0400734source_set("skcms") {
Mike Klein852a8cb2018-05-15 10:46:58 -0400735 cflags = []
736 if (!is_win || is_clang) {
737 cflags += [
738 "-w",
739 "-std=c11",
740 ]
741 }
742
743 public = [
Brian Osmanea236bf2019-04-29 10:28:22 -0400744 "include/third_party/skcms/skcms.h",
Mike Klein852a8cb2018-05-15 10:46:58 -0400745 ]
Brian Osmanea236bf2019-04-29 10:28:22 -0400746 include_dirs = [ "include/third_party/skcms" ]
Mike Klein852a8cb2018-05-15 10:46:58 -0400747 sources = rebase_path(skcms_sources, ".", "third_party/skcms")
748}
749
mtklein3cc22182016-08-29 13:26:14 -0700750optional("typeface_freetype") {
751 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -0700752
753 deps = [
754 "//third_party/freetype2",
755 ]
756 sources = [
757 "src/ports/SkFontHost_FreeType.cpp",
758 "src/ports/SkFontHost_FreeType_common.cpp",
759 ]
760}
761
mtklein457b42a2016-08-23 13:56:37 -0700762optional("webp") {
763 enabled = skia_use_libwebp
764 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
765
mtklein457b42a2016-08-23 13:56:37 -0700766 deps = [
767 "//third_party/libwebp",
768 ]
769 sources = [
mtklein457b42a2016-08-23 13:56:37 -0700770 "src/codec/SkWebpCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400771 "src/images/SkWebpEncoder.cpp",
mtklein457b42a2016-08-23 13:56:37 -0700772 ]
mtkleineb3c4252016-08-23 07:38:09 -0700773}
774
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400775optional("wuffs") {
776 enabled = skia_use_wuffs
777 public_defines = [ "SK_HAS_WUFFS_LIBRARY" ]
778
779 deps = [
780 "//third_party/wuffs",
781 ]
782 sources = [
783 "src/codec/SkWuffsCodec.cpp",
784 ]
785}
786
mtklein63213812016-08-24 09:55:56 -0700787optional("xml") {
788 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +0000789 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -0700790
mtklein63213812016-08-24 09:55:56 -0700791 deps = [
792 "//third_party/expat",
793 ]
794 sources = [
Mike Kleinbd41bcc2017-02-09 16:38:15 -0500795 "src/svg/SkSVGCanvas.cpp",
796 "src/svg/SkSVGDevice.cpp",
mtklein63213812016-08-24 09:55:56 -0700797 "src/xml/SkDOM.cpp",
798 "src/xml/SkXMLParser.cpp",
799 "src/xml/SkXMLWriter.cpp",
800 ]
801}
802
Brian Osman489cf882019-07-09 10:48:28 -0400803optional("sksl_interpreter") {
804 enabled = skia_enable_sksl_interpreter
805 public_defines = [ "SK_ENABLE_SKSL_INTERPRETER" ]
806}
807
Mike Klein613ad382019-06-06 11:42:02 -0500808optional("skvm_jit") {
Mike Klein6bbeb4a2019-06-21 16:34:06 -0500809 enabled = skia_enable_skvm_jit
Mike Klein613ad382019-06-06 11:42:02 -0500810 public_defines = [ "SKVM_JIT" ]
Mike Klein613ad382019-06-06 11:42:02 -0500811}
812
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700813if (skia_enable_gpu && skia_generate_workarounds) {
814 action("workaround_list") {
815 script = "tools/build_workaround_header.py"
816
817 inputs = [
818 "src/gpu/gpu_workaround_list.txt",
819 ]
820
821 # see comments in skia_compile_processors about out dir path shenanigans.
822 output_file =
Adrienne Walkerab7181d2018-05-14 14:02:03 -0700823 rebase_path("include/gpu/GrDriverBugWorkaroundsAutogen.h", root_out_dir)
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700824
825 outputs = [
826 "$root_out_dir/$output_file",
827 ]
828 args = [
829 "--output-file",
830 "$output_file",
831 ]
832
833 foreach(file, inputs) {
834 args += [ rebase_path(file, root_build_dir) ]
835 }
836 }
837}
838
mtkleinc04ff472016-06-23 10:29:30 -0700839component("skia") {
840 public_configs = [ ":skia_public" ]
841 configs += skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -0700842
Mike Klein607b0a72018-11-07 16:17:34 -0500843 public_deps = [
Ben Wagnere27ee6c2019-02-15 14:59:30 -0500844 ":gpu",
Mike Klein607b0a72018-11-07 16:17:34 -0500845 ":pdf",
846 ":skcms",
847 ]
848
mtkleinc04ff472016-06-23 10:29:30 -0700849 deps = [
anmittalb8b3f712016-08-25 04:55:19 -0700850 ":arm64",
851 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -0700852 ":avx",
Mike Klein54378232018-11-08 12:08:05 +0000853 ":compile_processors",
anmittalb8b3f712016-08-25 04:55:19 -0700854 ":crc32",
mtkleina45be612016-08-29 15:22:10 -0700855 ":fontmgr_android",
mtkleind2e39db2016-09-07 07:52:55 -0700856 ":fontmgr_custom",
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500857 ":fontmgr_custom_empty",
Hal Canaryff2742e2018-01-30 11:35:47 -0500858 ":fontmgr_empty",
mtklein3cc22182016-08-29 13:26:14 -0700859 ":fontmgr_fontconfig",
Sergey Ulanovf3babcd2018-11-30 17:42:00 -0800860 ":fontmgr_fuchsia",
Kevin Lubickddd0a332018-12-12 10:35:13 -0500861 ":fontmgr_wasm",
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500862 ":fontmgr_win",
863 ":fontmgr_win_gdi",
Leon Scroggins III41169202019-01-29 09:29:57 -0500864 ":gif",
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400865 ":heif",
Mike Klein1b9b7d52018-02-27 10:37:40 -0500866 ":hsw",
mtklein63213812016-08-24 09:55:56 -0700867 ":jpeg",
mtklein9b8583d2016-08-24 17:32:30 -0700868 ":none",
mtklein63213812016-08-24 09:55:56 -0700869 ":png",
scroggof84ad642016-10-31 09:02:57 -0700870 ":raw",
Brian Osman489cf882019-07-09 10:48:28 -0400871 ":sksl_interpreter",
Mike Klein613ad382019-06-06 11:42:02 -0500872 ":skvm_jit",
mtklein9b8583d2016-08-24 17:32:30 -0700873 ":sse2",
874 ":sse41",
875 ":sse42",
876 ":ssse3",
mtkleineb3c4252016-08-23 07:38:09 -0700877 ":webp",
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400878 ":wuffs",
mtklein63213812016-08-24 09:55:56 -0700879 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -0700880 ]
881
Chinmay Garde43f115c2016-11-16 15:04:12 -0800882 # This file (and all GN files in Skia) are designed to work with an
883 # empty sources assignment filter; we handle all that explicitly.
884 # We clear the filter here for clients who may have set up a global filter.
885 set_sources_assignment_filter([])
886
Hal Canaryc25f4e92019-02-26 11:54:25 -0500887 public = skia_core_public
888 public += skia_utils_public
889 public += skia_effects_public
890 public += skia_effects_imagefilter_public
891 public += skia_xps_public
892
mtkleinc04ff472016-06-23 10:29:30 -0700893 sources = []
brettwb9447282016-09-01 14:24:39 -0700894 sources += skia_core_sources
brettwb9447282016-09-01 14:24:39 -0700895 sources += skia_utils_sources
Leon Scroggins IIIee0e5d02019-02-27 10:59:11 -0500896 if (skia_use_xps) {
897 sources += skia_xps_sources
898 }
Mike Klein54378232018-11-08 12:08:05 +0000899 sources += skia_effects_sources
900 sources += skia_effects_imagefilter_sources
Brian Osmanfb32ddf2019-06-18 10:14:20 -0400901 sources += skia_sksl_sources
mtkleinc04ff472016-06-23 10:29:30 -0700902 sources += [
Stan Iliev73d8fd92017-08-02 15:36:24 -0400903 "src/android/SkAndroidFrameworkUtils.cpp",
Leon Scroggins III42ee2842018-01-14 14:46:51 -0500904 "src/android/SkAnimatedImage.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700905 "src/android/SkBitmapRegionCodec.cpp",
906 "src/android/SkBitmapRegionDecoder.cpp",
907 "src/codec/SkAndroidCodec.cpp",
Nigel Tao612a65d2018-11-09 10:10:31 +1100908 "src/codec/SkAndroidCodecAdapter.cpp",
Leon Scroggins IIId81fed92017-06-01 13:42:28 -0400909 "src/codec/SkBmpBaseCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700910 "src/codec/SkBmpCodec.cpp",
911 "src/codec/SkBmpMaskCodec.cpp",
912 "src/codec/SkBmpRLECodec.cpp",
913 "src/codec/SkBmpStandardCodec.cpp",
914 "src/codec/SkCodec.cpp",
915 "src/codec/SkCodecImageGenerator.cpp",
Leon Scroggins III22f673d2018-05-30 15:33:46 -0400916 "src/codec/SkColorTable.cpp",
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400917 "src/codec/SkEncodedInfo.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700918 "src/codec/SkMaskSwizzler.cpp",
919 "src/codec/SkMasks.cpp",
Leon Scroggins IIIba458302019-09-24 12:40:11 -0400920 "src/codec/SkParseEncodedOrigin.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700921 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700922 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -0700923 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700924 "src/codec/SkSwizzler.cpp",
925 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700926 "src/images/SkImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700927 "src/ports/SkDiscardableMemory_none.cpp",
Mike Klein54378232018-11-08 12:08:05 +0000928 "src/ports/SkGlobalInitialization_default.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700929 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700930 "src/ports/SkMemory_malloc.cpp",
931 "src/ports/SkOSFile_stdio.cpp",
932 "src/sfnt/SkOTTable_name.cpp",
933 "src/sfnt/SkOTUtils.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700934 ]
brettwb9447282016-09-01 14:24:39 -0700935
Kevin Lubick32dfdbe2018-10-18 09:47:01 -0400936 defines = []
mtklein7d6fb2c2016-08-25 14:50:44 -0700937 libs = []
938
mtkleinc04ff472016-06-23 10:29:30 -0700939 if (is_win) {
940 sources += [
941 "src/ports/SkDebug_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700942 "src/ports/SkImageEncoder_WIC.cpp",
943 "src/ports/SkImageGeneratorWIC.cpp",
944 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -0700945 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700946 "src/ports/SkTLS_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700947 ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400948 libs += [
949 "FontSub.lib",
950 "Ole32.lib",
951 "OleAut32.lib",
952 "User32.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500953 "Usp10.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400954 ]
mtkleinc04ff472016-06-23 10:29:30 -0700955 } else {
956 sources += [
mtkleinc04ff472016-06-23 10:29:30 -0700957 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -0700958 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700959 "src/ports/SkTLS_pthread.cpp",
960 ]
Ben Wagnerbe6ae5b2017-08-31 16:45:23 -0400961 libs += [ "dl" ]
mtkleinc04ff472016-06-23 10:29:30 -0700962 }
963
mtklein7d6fb2c2016-08-25 14:50:44 -0700964 if (is_android) {
Mike Klein1c471872017-01-13 15:27:45 -0500965 deps += [ "//third_party/expat" ]
Mike Kleine459afd2017-03-03 09:21:30 -0500966 if (defined(ndk) && ndk != "") {
Mike Klein1c471872017-01-13 15:27:45 -0500967 deps += [ "//third_party/cpu-features" ]
968 }
mtklein06c35c02016-09-20 12:28:12 -0700969 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -0700970 libs += [
971 "EGL",
972 "GLESv2",
973 "log",
974 ]
975 }
976
Kevin Lubick217056c2018-09-20 17:39:31 -0400977 if (is_linux || target_cpu == "wasm") {
mtklein06c35c02016-09-20 12:28:12 -0700978 sources += [ "src/ports/SkDebug_stdio.cpp" ]
Hal Canary25375e82018-03-14 15:16:56 -0400979 if (skia_use_egl) {
980 libs += [ "GLESv2" ]
981 }
mtkleinc04ff472016-06-23 10:29:30 -0700982 }
983
Leon Scroggins III85e22fc2018-11-28 08:58:47 -0500984 if (skia_use_fonthost_mac) {
Sergey Ulanovf3babcd2018-11-30 17:42:00 -0800985 sources += [ "src/ports/SkFontHost_mac.cpp" ]
Leon Scroggins III85e22fc2018-11-28 08:58:47 -0500986 }
987
mtkleinc04ff472016-06-23 10:29:30 -0700988 if (is_mac) {
989 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -0700990 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700991 "src/ports/SkImageEncoder_CG.cpp",
992 "src/ports/SkImageGeneratorCG.cpp",
993 ]
mtklein09e61f72016-08-23 13:35:28 -0700994 libs += [
bungeman3e306f62017-03-29 11:32:02 -0400995 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
996 "AppKit.framework",
mtklein09e61f72016-08-23 13:35:28 -0700997 "ApplicationServices.framework",
998 "OpenGL.framework",
999 ]
mtkleinc04ff472016-06-23 10:29:30 -07001000 }
abarth6fc8ff02016-07-15 15:15:15 -07001001
Mike Klein7d302882016-11-03 14:06:31 -04001002 if (is_ios) {
1003 sources += [
1004 "src/ports/SkDebug_stdio.cpp",
1005 "src/ports/SkFontHost_mac.cpp",
1006 "src/ports/SkImageEncoder_CG.cpp",
1007 "src/ports/SkImageGeneratorCG.cpp",
1008 ]
1009 libs += [
1010 "CoreFoundation.framework",
1011 "CoreGraphics.framework",
1012 "CoreText.framework",
1013 "ImageIO.framework",
1014 "MobileCoreServices.framework",
bungeman3e306f62017-03-29 11:32:02 -04001015
1016 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
1017 "UIKit.framework",
Mike Klein7d302882016-11-03 14:06:31 -04001018 ]
1019 }
1020
abarth6fc8ff02016-07-15 15:15:15 -07001021 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -07001022 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -07001023 }
Brian Osmanfb32ddf2019-06-18 10:14:20 -04001024
1025 if (skia_enable_spirv_validation) {
Stephen White238fc242019-08-26 10:19:23 -04001026 deps += [ "//third_party/spirv-tools:spvtools_val" ]
Brian Osmanfb32ddf2019-06-18 10:14:20 -04001027 defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
1028 }
Nathaniel Nifong0c4fbf12019-06-25 15:48:47 -04001029
1030 if (skia_include_multiframe_procs) {
1031 sources += [ "tools/SkSharingProc.cpp" ]
1032 }
mtkleinc04ff472016-06-23 10:29:30 -07001033}
1034
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001035# DebugCanvas used in experimental/wasm-skp-debugger
1036if (target_cpu == "wasm") {
1037 static_library("debugcanvas") {
1038 public_configs = [ ":skia_public" ]
1039
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001040 sources = [
Nathaniel Nifong0426c382019-06-21 11:09:19 -04001041 "tools/SkSharingProc.cpp",
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001042 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05001043 "tools/debugger/DebugCanvas.cpp",
Nathaniel Nifong20b177a2019-12-12 11:05:10 -05001044 "tools/debugger/DebugLayerManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05001045 "tools/debugger/DrawCommand.cpp",
1046 "tools/debugger/JsonWriteBuffer.cpp",
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001047 ]
1048
1049 deps = [
1050 ":fontmgr_wasm",
1051 ]
1052 }
1053}
1054
Kevin Lubickcbcff382018-10-02 09:02:18 -04001055static_library("pathkit") {
Hal Canaryc25f4e92019-02-26 11:54:25 -05001056 check_includes = false
Kevin Lubickcbcff382018-10-02 09:02:18 -04001057 public_configs = [ ":skia_public" ]
1058 configs += skia_library_configs
1059
1060 deps = [
1061 ":arm64",
1062 ":armv7",
1063 ":avx",
1064 ":crc32",
1065 ":hsw",
1066 ":none",
1067 ":sse2",
1068 ":sse41",
1069 ":sse42",
1070 ":ssse3",
1071 ]
1072
1073 # This file (and all GN files in Skia) are designed to work with an
1074 # empty sources assignment filter; we handle all that explicitly.
1075 # We clear the filter here for clients who may have set up a global filter.
1076 set_sources_assignment_filter([])
1077
1078 sources = []
1079 sources += skia_pathops_sources
Hal Canaryc25f4e92019-02-26 11:54:25 -05001080 sources += skia_pathops_public
Kevin Lubickcbcff382018-10-02 09:02:18 -04001081 sources += [
1082 "src/core/SkAnalyticEdge.cpp",
1083 "src/core/SkArenaAlloc.cpp",
Mike Reedcc88f3a2019-02-06 11:40:27 -05001084 "src/core/SkContourMeasure.cpp",
Kevin Lubickcbcff382018-10-02 09:02:18 -04001085 "src/core/SkCubicMap.cpp",
1086 "src/core/SkEdge.cpp",
1087 "src/core/SkEdgeBuilder.cpp",
1088 "src/core/SkEdgeClipper.cpp",
1089 "src/core/SkGeometry.cpp",
1090 "src/core/SkLineClipper.cpp",
Hal Canary7823aeb2019-10-30 17:26:45 -04001091 "src/core/SkMalloc.cpp",
Kevin Lubickcbcff382018-10-02 09:02:18 -04001092 "src/core/SkMallocPixelRef.cpp",
1093 "src/core/SkMath.cpp",
1094 "src/core/SkMatrix.cpp",
1095 "src/core/SkOpts.cpp",
1096 "src/core/SkPaint.cpp",
1097 "src/core/SkPath.cpp",
1098 "src/core/SkPathEffect.cpp",
1099 "src/core/SkPathMeasure.cpp",
1100 "src/core/SkPathRef.cpp",
1101 "src/core/SkPoint.cpp",
1102 "src/core/SkRRect.cpp",
1103 "src/core/SkRect.cpp",
1104 "src/core/SkSemaphore.cpp",
1105 "src/core/SkStream.cpp",
1106 "src/core/SkString.cpp",
1107 "src/core/SkStringUtils.cpp",
1108 "src/core/SkStroke.cpp",
1109 "src/core/SkStrokeRec.cpp",
1110 "src/core/SkStrokerPriv.cpp",
1111 "src/core/SkThreadID.cpp",
1112 "src/core/SkUtils.cpp",
1113 "src/effects/SkDashPathEffect.cpp",
1114 "src/effects/SkTrimPathEffect.cpp",
1115 "src/ports/SkDebug_stdio.cpp",
1116 "src/ports/SkMemory_malloc.cpp",
1117 "src/utils/SkDashPath.cpp",
1118 "src/utils/SkParse.cpp",
1119 "src/utils/SkParsePath.cpp",
1120 "src/utils/SkUTF.cpp",
1121 ]
1122}
1123
Kevin Lubick1ba9c4d2019-02-22 10:04:06 -05001124group("modules") {
1125 deps = [
Kevin Lubick96634842019-03-05 14:09:24 -05001126 "modules/particles",
Kevin Lubick1ba9c4d2019-02-22 10:04:06 -05001127 "modules/skottie",
1128 "modules/skshaper",
1129 ]
Kevin Lubickd7134452019-10-03 15:31:03 -04001130 if (target_cpu == "wasm") {
Brian Osman1244db52019-10-03 14:40:39 -04001131 deps += [ "modules/skparagraph" ]
1132 }
Kevin Lubick1ba9c4d2019-02-22 10:04:06 -05001133}
1134
mtkleinc095df52016-08-24 12:23:52 -07001135# Targets guarded by skia_enable_tools may use //third_party freely.
1136if (skia_enable_tools) {
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001137 skia_public_includes = [
1138 "include/android",
1139 "include/atlastext",
1140 "include/c",
1141 "include/codec",
1142 "include/config",
1143 "include/core",
1144 "include/docs",
1145 "include/effects",
1146 "include/encode",
1147 "include/gpu",
1148 "include/pathops",
1149 "include/ports",
1150 "include/svg",
1151 "include/utils",
1152 "include/utils/mac",
1153 "modules/sksg/include",
1154 "modules/skshaper/include",
1155 "modules/skottie/include",
1156 ]
1157
Mike Klein308b5ac2016-12-06 16:03:52 -05001158 # Used by gn_to_bp.py to list our public include dirs.
1159 source_set("public") {
1160 configs += [ ":skia_public" ]
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001161 include_dirs = skia_public_includes
Mike Klein308b5ac2016-12-06 16:03:52 -05001162 }
1163
Mike Kleinc36dedf2016-11-18 09:35:28 -05001164 config("skia.h_config") {
1165 include_dirs = [ "$target_gen_dir" ]
1166 }
1167 action("skia.h") {
1168 public_configs = [ ":skia.h_config" ]
1169 skia_h = "$target_gen_dir/skia.h"
1170 script = "gn/find_headers.py"
Florin Malita6e4d95f2018-05-30 09:27:32 -04001171
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001172 args = [ rebase_path("//bin/gn") ] + [ rebase_path("//") ] +
1173 [ rebase_path(skia_h, root_build_dir) ] +
1174 rebase_path(skia_public_includes)
Mike Kleinc36dedf2016-11-18 09:35:28 -05001175 depfile = "$skia_h.deps"
1176 outputs = [
1177 skia_h,
1178 ]
1179 }
1180
Brian Osmanc9a42472018-05-31 13:17:12 -04001181 if (target_cpu == "x64") {
Mike Kleinc36dedf2016-11-18 09:35:28 -05001182 executable("fiddle") {
Hal Canaryc25f4e92019-02-26 11:54:25 -05001183 check_includes = false
Mike Kleinc36dedf2016-11-18 09:35:28 -05001184 libs = []
Mike Kleinc36dedf2016-11-18 09:35:28 -05001185 sources = [
Mike Kleinc36dedf2016-11-18 09:35:28 -05001186 "tools/fiddle/draw.cpp",
1187 "tools/fiddle/fiddle_main.cpp",
1188 ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -04001189
1190 if (skia_use_egl) {
1191 sources += [ "tools/fiddle/egl_context.cpp" ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -04001192 } else {
1193 sources += [ "tools/fiddle/null_context.cpp" ]
1194 }
Joe Gregorio1e735c02017-04-19 14:05:14 -04001195 testonly = true
Mike Kleinc36dedf2016-11-18 09:35:28 -05001196 deps = [
Joe Gregorio1e735c02017-04-19 14:05:14 -04001197 ":flags",
Robert Phillips57e08282017-11-16 14:59:48 -05001198 ":gpu_tool_utils",
Mike Kleinc36dedf2016-11-18 09:35:28 -05001199 ":skia",
1200 ":skia.h",
Florin Malita6e4d95f2018-05-30 09:27:32 -04001201 "modules/skottie",
Florin Malitaa1dcaae2019-03-25 17:38:43 -04001202 "modules/skshaper",
Mike Kleinc36dedf2016-11-18 09:35:28 -05001203 ]
1204 }
1205 }
1206
Mike Klein9e25bb92019-04-29 09:46:36 -05001207 config("our_vulkan_headers") {
Mike Klein9e25bb92019-04-29 09:46:36 -05001208 include_dirs = [ "include/third_party/vulkan" ]
1209 }
1210
Brian Osmanc9a42472018-05-31 13:17:12 -04001211 source_set("public_headers_warnings_check") {
1212 sources = [
1213 "tools/public_headers_warnings_check.cpp",
1214 ]
1215 configs -= [ "//gn:warnings_except_public_headers" ]
Mike Klein9e25bb92019-04-29 09:46:36 -05001216 configs += [ ":our_vulkan_headers" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001217 deps = [
1218 ":skia",
1219 ":skia.h",
1220 "modules/skottie",
Florin Malitaa1dcaae2019-03-25 17:38:43 -04001221 "modules/skshaper",
Brian Osmanc9a42472018-05-31 13:17:12 -04001222 ]
Stephen White0d70b712019-07-10 15:51:30 -04001223
1224 if (skia_use_dawn) {
1225 deps += [ "//third_party/dawn:dawn_headers" ]
1226 }
Mike Kleinc36dedf2016-11-18 09:35:28 -05001227 }
1228
mtkleinc095df52016-08-24 12:23:52 -07001229 template("test_lib") {
1230 config(target_name + "_config") {
mtkleina627b5c2016-09-20 13:36:47 -07001231 if (defined(invoker.public_defines)) {
1232 defines = invoker.public_defines
1233 }
mtklein25c81d42016-07-27 13:55:26 -07001234 }
mtkleinc095df52016-08-24 12:23:52 -07001235 source_set(target_name) {
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001236 forward_variables_from(invoker, "*", [])
Hal Canaryc25f4e92019-02-26 11:54:25 -05001237 check_includes = false
mtkleinc095df52016-08-24 12:23:52 -07001238 public_configs = [
1239 ":" + target_name + "_config",
1240 ":skia_private",
1241 ]
1242
1243 if (!defined(deps)) {
1244 deps = []
1245 }
1246 deps += [ ":skia" ]
1247 testonly = true
1248 }
mtklein25c81d42016-07-27 13:55:26 -07001249 }
mtklein25c81d42016-07-27 13:55:26 -07001250
Mike Kleine6682eb2017-01-05 10:54:57 -05001251 template("test_app") {
Jim Van Verth443a9132017-11-28 09:45:26 -05001252 if (is_ios) {
Hal Canary3388c1a2019-09-16 12:53:17 -04001253 ios_app_bundle(target_name) {
Jim Van Verth443a9132017-11-28 09:45:26 -05001254 forward_variables_from(invoker,
1255 "*",
1256 [
1257 "output_name",
1258 "visibility",
1259 "is_shared_library",
1260 ])
Mike Kleine6682eb2017-01-05 10:54:57 -05001261 testonly = true
Hal Canary3388c1a2019-09-16 12:53:17 -04001262 extra_configs = [ ":skia_private" ]
1263 launchscreen = "platform_tools/ios/app/LaunchScreen.storyboard"
1264 data_sources = [ "resources" ]
1265 if ("True" == exec_script("//gn/checkdir.py",
1266 [ rebase_path("skps", root_build_dir) ],
1267 "trim string")) {
1268 data_sources += [ "skps" ]
Jim Van Verth443a9132017-11-28 09:45:26 -05001269 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001270 }
1271 } else {
Jim Van Verth443a9132017-11-28 09:45:26 -05001272 # !is_ios
1273
1274 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
1275 shared_library("lib" + target_name) {
1276 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1277 configs += [ ":skia_private" ]
1278 testonly = true
1279 }
1280 } else {
1281 _executable = target_name
1282 executable(_executable) {
Hal Canaryc25f4e92019-02-26 11:54:25 -05001283 check_includes = false
Jim Van Verth443a9132017-11-28 09:45:26 -05001284 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1285 configs += [ ":skia_private" ]
1286 testonly = true
1287 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001288 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001289 if (is_android && skia_android_serial != "" && defined(_executable)) {
1290 action("push_" + target_name) {
1291 script = "gn/push_to_android.py"
1292 deps = [
1293 ":" + _executable,
1294 ]
1295 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
1296 outputs = [
1297 _stamp,
1298 ]
1299 args = [
1300 rebase_path("$root_build_dir/$_executable"),
1301 skia_android_serial,
1302 rebase_path(_stamp),
1303 ]
1304 testonly = true
1305 }
Mike Klein7d921032017-01-05 12:20:41 -05001306 }
1307 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001308 }
1309
mtkleinc095df52016-08-24 12:23:52 -07001310 test_lib("gpu_tool_utils") {
Brian Osmanc9a42472018-05-31 13:17:12 -04001311 public_defines = []
mtkleind68f9b02016-09-23 13:18:41 -07001312
Mike Klein9e25bb92019-04-29 09:46:36 -05001313 # Bots and even devs may not have Vulkan headers, so put
1314 # include/third_party/vulkan on our path so they're always available.
1315 all_dependent_configs = [ ":our_vulkan_headers" ]
1316
Mike Klein333fb452019-04-24 08:48:11 -05001317 defines = []
1318 if (skia_enable_discrete_gpu) {
1319 defines += [ "SK_ENABLE_DISCRETE_GPU" ]
1320 }
1321
Brian Osmanc9a42472018-05-31 13:17:12 -04001322 deps = []
Greg Danielda16cce2018-08-01 09:23:57 -04001323 public_deps = []
Brian Osmanc9a42472018-05-31 13:17:12 -04001324 sources = [
1325 "tools/gpu/GrContextFactory.cpp",
1326 "tools/gpu/GrTest.cpp",
Brian Salomon00a5eb82018-07-11 15:32:05 -04001327 "tools/gpu/MemoryCache.cpp",
1328 "tools/gpu/MemoryCache.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04001329 "tools/gpu/ProxyUtils.cpp",
1330 "tools/gpu/TestContext.cpp",
Brian Salomone21af502019-11-22 16:56:36 -05001331 "tools/gpu/TestOps.cpp",
1332 "tools/gpu/TestOps.h",
Michael Ludwigd9958f82019-03-21 13:08:36 -04001333 "tools/gpu/YUVUtils.cpp",
1334 "tools/gpu/YUVUtils.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04001335 "tools/gpu/mock/MockTestContext.cpp",
1336 ]
John Rosasco24cbdab2019-09-25 14:14:35 -07001337 if (skia_use_gl) {
1338 sources += [
1339 "tools/gpu/atlastext/GLTestAtlasTextRenderer.cpp",
1340 "tools/gpu/gl/GLTestContext.cpp",
1341 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
1342 ]
1343 }
John Rosascoa9b348f2019-11-08 13:18:15 -08001344
Brian Osmanc9a42472018-05-31 13:17:12 -04001345 libs = []
1346
1347 if (is_android || skia_use_egl) {
1348 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
1349 } else if (is_ios) {
1350 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
1351 libs += [ "OpenGLES.framework" ]
1352 } else if (is_linux) {
1353 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
Mike Kleina27f2692018-06-20 11:06:39 -04001354 libs += [
1355 "GLU",
1356 "X11",
1357 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001358 } else if (is_mac) {
1359 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
1360 } else if (is_win) {
1361 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
Brian Osman0c757272018-12-10 10:27:26 -05001362 libs += [ "Gdi32.lib" ]
1363 if (target_cpu != "arm64") {
1364 libs += [ "OpenGL32.lib" ]
1365 }
John Rosasco24cbdab2019-09-25 14:14:35 -07001366 } else if (is_fuchsia && using_fuchsia_sdk) {
Robert Phillipsc919f972019-11-18 11:01:05 -05001367 libs +=
1368 [ "${fuchsia_sdk_path}/arch/${target_cpu}/sysroot/lib/libzircon.so" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001369 }
mtklein25c81d42016-07-27 13:55:26 -07001370
Brian Osmanc9a42472018-05-31 13:17:12 -04001371 cflags_objcc = [ "-fobjc-arc" ]
mtklein6ef69992016-09-14 06:12:09 -07001372
Brian Osmanc9a42472018-05-31 13:17:12 -04001373 if (skia_use_angle) {
1374 deps += [ "//third_party/angle2" ]
1375 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
1376 }
Greg Daniel54200e42018-12-11 17:03:39 -05001377
Brian Osmanc9a42472018-05-31 13:17:12 -04001378 if (skia_use_vulkan) {
1379 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
1380 sources += [ "tools/gpu/vk/VkTestUtils.cpp" ]
1381 }
1382 if (skia_use_metal) {
1383 sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
mtkleina627b5c2016-09-20 13:36:47 -07001384 }
Jim Van Verthb01e12b2020-02-18 14:34:38 -05001385 if (skia_use_direct3d) {
1386 sources += [ "tools/gpu/d3d/D3DTestContext.cpp" ]
1387 }
Stephen White985741a2019-07-18 11:43:45 -04001388 if (skia_use_dawn) {
1389 public_deps += [ "//third_party/dawn:dawn_headers" ]
1390 sources += [ "tools/gpu/dawn/DawnTestContext.cpp" ]
1391 }
John Rosasco24cbdab2019-09-25 14:14:35 -07001392 } # test_lib("gpu_tool_utils")
mtklein25c81d42016-07-27 13:55:26 -07001393
mtkleinc095df52016-08-24 12:23:52 -07001394 test_lib("flags") {
mtkleinc095df52016-08-24 12:23:52 -07001395 sources = [
Mike Klein88544fb2019-03-20 10:50:33 -05001396 "tools/flags/CommandLineFlags.cpp",
mtklein046cb562016-09-16 10:23:12 -07001397 ]
1398 }
Mike Kleinc6142d82019-03-25 10:54:59 -05001399
1400 test_lib("common_flags_config") {
mtklein046cb562016-09-16 10:23:12 -07001401 sources = [
Mike Klein88544fb2019-03-20 10:50:33 -05001402 "tools/flags/CommonFlagsConfig.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001403 ]
1404 deps = [
mtklein046cb562016-09-16 10:23:12 -07001405 ":flags",
Greg Danielda16cce2018-08-01 09:23:57 -04001406 ]
1407 public_deps = [
mtkleinc095df52016-08-24 12:23:52 -07001408 ":gpu_tool_utils",
1409 ]
1410 }
Mike Kleinc6142d82019-03-25 10:54:59 -05001411 test_lib("common_flags_gpu") {
Mike Kleinc6142d82019-03-25 10:54:59 -05001412 sources = [
1413 "tools/flags/CommonFlagsGpu.cpp",
1414 ]
1415 deps = [
1416 ":flags",
1417 ]
1418 public_deps = [
1419 ":gpu_tool_utils",
1420 ]
1421 }
1422 test_lib("common_flags_images") {
Mike Kleinc6142d82019-03-25 10:54:59 -05001423 sources = [
1424 "tools/flags/CommonFlagsImages.cpp",
1425 ]
1426 deps = [
1427 ":flags",
1428 ]
1429 }
1430 test_lib("common_flags_aa") {
Mike Kleinc6142d82019-03-25 10:54:59 -05001431 sources = [
1432 "tools/flags/CommonFlagsAA.cpp",
1433 ]
1434 deps = [
1435 ":flags",
1436 ]
1437 }
mtklein25c81d42016-07-27 13:55:26 -07001438
Mike Klein499f0ac2019-03-25 13:00:12 -05001439 test_lib("trace") {
Mike Klein499f0ac2019-03-25 13:00:12 -05001440 deps = [
1441 ":flags",
1442 ]
1443 sources = [
1444 "tools/trace/ChromeTracingTracer.cpp",
1445 "tools/trace/ChromeTracingTracer.h",
1446 "tools/trace/EventTracingPriv.cpp",
1447 "tools/trace/EventTracingPriv.h",
1448 "tools/trace/SkDebugfTracer.cpp",
1449 "tools/trace/SkDebugfTracer.h",
1450 ]
1451 }
1452
mtkleinc095df52016-08-24 12:23:52 -07001453 test_lib("tool_utils") {
mtkleinc095df52016-08-24 12:23:52 -07001454 sources = [
mtkleinb37c0342016-09-09 11:07:45 -07001455 "tools/AndroidSkDebugToStdOut.cpp",
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001456 "tools/AutoreleasePool.h",
mtkleinc095df52016-08-24 12:23:52 -07001457 "tools/CrashHandler.cpp",
Robert Phillips96601082018-05-29 16:13:26 -04001458 "tools/DDLPromiseImageHelper.cpp",
1459 "tools/DDLTileHelper.cpp",
mtklein0590fa52016-09-01 07:06:54 -07001460 "tools/LsanSuppressions.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001461 "tools/ProcStats.cpp",
1462 "tools/Resources.cpp",
Hal Canarye574f1e2019-07-15 14:01:37 -04001463 "tools/SkMetaData.cpp",
1464 "tools/SkMetaData.h",
Nathaniel Nifong0426c382019-06-21 11:09:19 -04001465 "tools/SkSharingProc.cpp",
Mike Kleinea3f0142019-03-20 11:12:10 -05001466 "tools/ToolUtils.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001467 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05001468 "tools/debugger/DebugCanvas.cpp",
Nathaniel Nifong20b177a2019-12-12 11:05:10 -05001469 "tools/debugger/DebugLayerManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05001470 "tools/debugger/DrawCommand.cpp",
1471 "tools/debugger/JsonWriteBuffer.cpp",
Mike Klein0cffcbf92019-03-20 11:08:46 -05001472 "tools/fonts/RandomScalerContext.cpp",
1473 "tools/fonts/TestEmptyTypeface.h",
1474 "tools/fonts/TestFontMgr.cpp",
1475 "tools/fonts/TestFontMgr.h",
1476 "tools/fonts/TestSVGTypeface.cpp",
1477 "tools/fonts/TestSVGTypeface.h",
1478 "tools/fonts/TestTypeface.cpp",
1479 "tools/fonts/TestTypeface.h",
Mike Kleinea3f0142019-03-20 11:12:10 -05001480 "tools/fonts/ToolUtilsFont.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001481 "tools/random_parse_path.cpp",
Hal Canary41248072019-07-11 16:32:53 -04001482 "tools/timer/TimeUtils.h",
mtkleinc095df52016-08-24 12:23:52 -07001483 "tools/timer/Timer.cpp",
1484 ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001485 libs = []
1486 if (is_ios) {
1487 sources += [ "tools/ios_utils.m" ]
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001488 sources += [ "tools/ios_utils.h" ]
1489 if (skia_use_metal) {
1490 sources += [ "tools/AutoreleasePool.mm" ]
1491 }
Mike Kleinadacaef2017-02-06 09:26:14 -05001492 libs += [ "Foundation.framework" ]
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001493 } else if (is_mac) {
1494 if (skia_use_metal) {
1495 sources += [ "tools/AutoreleasePool.mm" ]
1496 libs += [ "Foundation.framework" ]
1497 }
Mike Kleinbf15b662019-04-15 11:32:16 -05001498 } else if (is_win) {
1499 libs += [ "DbgHelp.lib" ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001500 }
Mike Kleinbf15b662019-04-15 11:32:16 -05001501
Hal Canaryfd9bcab2018-04-24 11:47:23 -04001502 defines = []
1503 if (skia_tools_require_resources) {
1504 defines += [ "SK_TOOLS_REQUIRE_RESOURCES" ]
1505 }
mtkleinc095df52016-08-24 12:23:52 -07001506 deps = [
Ben Wagner97182cc2018-02-15 10:20:04 -05001507 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001508 ":flags",
Mike Kleine4ad58a2019-03-26 09:05:52 -05001509 ]
1510 public_deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05001511 ":gpu_tool_utils",
mtkleinc095df52016-08-24 12:23:52 -07001512 ]
mtkleinc095df52016-08-24 12:23:52 -07001513 }
mtklein25c81d42016-07-27 13:55:26 -07001514
Mike Kleine11e5c12019-04-24 12:46:06 -05001515 test_lib("etc1") {
1516 sources = [
1517 "third_party/etc1/etc1.cpp",
1518 ]
1519 }
1520
Mike Reed7bf160e2019-05-17 16:50:51 -04001521 if (skia_use_ffmpeg) {
1522 test_lib("video_decoder") {
1523 sources = [
1524 "experimental/ffmpeg/SkVideoDecoder.cpp",
1525 "experimental/ffmpeg/SkVideoDecoder.h",
Mike Reedc0ee21f2019-05-28 16:11:03 -04001526 "experimental/ffmpeg/SkVideoEncoder.cpp",
1527 "experimental/ffmpeg/SkVideoEncoder.h",
Mike Reed7bf160e2019-05-17 16:50:51 -04001528 ]
1529 libs = [
Mike Reedf97e8e92019-05-29 13:33:55 -04001530 "swscale",
Mike Reed7bf160e2019-05-17 16:50:51 -04001531 "avcodec",
1532 "avformat",
1533 "avutil",
1534 ]
1535 }
1536 }
1537
Mike Klein6e744122016-10-27 12:21:40 -04001538 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -07001539 test_lib("gm") {
mtkleinc095df52016-08-24 12:23:52 -07001540 sources = gm_sources
John Rosasco24cbdab2019-09-25 14:14:35 -07001541 if (skia_use_gl) {
1542 sources += gl_gm_sources
1543 }
mtkleinc095df52016-08-24 12:23:52 -07001544 deps = [
Mike Kleine11e5c12019-04-24 12:46:06 -05001545 ":etc1",
scroggo19b91532016-10-24 09:03:26 -07001546 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001547 ":skia",
1548 ":tool_utils",
Mike Reed2f0edd52018-05-31 14:22:30 -04001549 "modules/skottie",
Florin Malita26870722018-09-20 14:35:30 -04001550 "modules/skottie:gm",
Florin Malita3b526b02018-05-25 12:43:51 -04001551 "modules/sksg",
Brian Osmanc725e8f2019-04-10 14:08:44 -04001552 "modules/skshaper",
mtkleinc095df52016-08-24 12:23:52 -07001553 ]
Mike Kleinc4abade2019-08-09 10:11:35 -04001554 if (is_skia_dev_build) {
1555 sources += [ "gm/fiddle.cpp" ]
1556 deps += [ ":skia.h" ]
1557 }
Greg Danielda16cce2018-08-01 09:23:57 -04001558 public_deps = [
1559 ":gpu_tool_utils",
1560 ]
Mike Reed7bf160e2019-05-17 16:50:51 -04001561
1562 if (skia_use_ffmpeg) {
1563 deps += [ ":video_decoder" ]
1564 sources += [ "gm/video_decoder.cpp" ]
1565 }
mtkleinc095df52016-08-24 12:23:52 -07001566 }
mtklein25c81d42016-07-27 13:55:26 -07001567
Mike Klein7b7077c2019-06-03 17:10:59 -05001568 test_lib("skvm_builders") {
1569 sources = [
1570 "tools/SkVMBuilders.cpp",
1571 "tools/SkVMBuilders.h",
1572 ]
1573 }
1574
Mike Klein6e744122016-10-27 12:21:40 -04001575 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07001576 test_lib("tests") {
Mike Klein6e744122016-10-27 12:21:40 -04001577 sources = tests_sources + pathops_tests_sources
Robert Phillips0c6daf02019-05-16 12:43:11 -04001578 if (skia_use_metal) {
1579 sources += metal_tests_sources
Jim Van Verth9187e492019-11-11 16:14:13 -05001580 cflags_objcc = [ "-fobjc-arc" ]
Robert Phillips0c6daf02019-05-16 12:43:11 -04001581 }
John Rosasco24cbdab2019-09-25 14:14:35 -07001582 if (skia_use_gl) {
1583 sources += gl_tests_sources
1584 }
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -05001585 if (!skia_enable_fontmgr_android) {
Mike Klein6e744122016-10-27 12:21:40 -04001586 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -07001587 }
Ben Wagner37a06c02018-06-22 21:11:00 +00001588 if (!(skia_use_freetype && skia_use_fontconfig)) {
1589 sources -= [ "//tests/FontMgrFontConfigTest.cpp" ]
1590 }
mtkleinc095df52016-08-24 12:23:52 -07001591 deps = [
Hal Canary0f666812018-03-22 15:21:12 -04001592 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001593 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001594 ":skia",
Mike Klein7b7077c2019-06-03 17:10:59 -05001595 ":skvm_builders",
mtkleinc095df52016-08-24 12:23:52 -07001596 ":tool_utils",
Florin Malita94d4d3e2018-06-18 13:10:51 -04001597 "modules/skottie:tests",
Julia Lavrovaa3552c52019-05-30 16:12:56 -04001598 "modules/skparagraph:tests",
Brian Osmanccb87522018-06-01 19:20:00 +00001599 "modules/sksg:tests",
Brian Osmanc725e8f2019-04-10 14:08:44 -04001600 "modules/skshaper",
mtkleinc095df52016-08-24 12:23:52 -07001601 "//third_party/libpng",
Leon Scroggins III194580d2019-02-22 12:32:16 -05001602 "//third_party/libwebp",
mtkleinc095df52016-08-24 12:23:52 -07001603 "//third_party/zlib",
1604 ]
Mike Kleind63442d2017-03-27 14:16:04 -04001605 public_deps = [
1606 ":gpu_tool_utils", # Test.h #includes headers from this target.
1607 ]
mtkleinc095df52016-08-24 12:23:52 -07001608 }
mtklein2f3416d2016-08-02 16:02:05 -07001609
Mike Klein6e744122016-10-27 12:21:40 -04001610 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07001611 test_lib("bench") {
mtkleinc095df52016-08-24 12:23:52 -07001612 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -07001613 deps = [
1614 ":flags",
1615 ":gm",
1616 ":gpu_tool_utils",
1617 ":skia",
Mike Klein7b7077c2019-06-03 17:10:59 -05001618 ":skvm_builders",
mtkleinc095df52016-08-24 12:23:52 -07001619 ":tool_utils",
Julia Lavrovaa3552c52019-05-30 16:12:56 -04001620 "modules/skparagraph:bench",
Mike Reedd62d4062019-06-12 10:20:44 -04001621 "modules/skshaper",
mtkleinc095df52016-08-24 12:23:52 -07001622 ]
1623 }
mtklein2b6870c2016-07-28 14:17:33 -07001624
mtkleinc095df52016-08-24 12:23:52 -07001625 test_lib("experimental_svg_model") {
Hal Canary0f666812018-03-22 15:21:12 -04001626 if (skia_use_expat) {
Hal Canary0f666812018-03-22 15:21:12 -04001627 sources = [
1628 "experimental/svg/model/SkSVGAttribute.cpp",
1629 "experimental/svg/model/SkSVGAttributeParser.cpp",
1630 "experimental/svg/model/SkSVGCircle.cpp",
1631 "experimental/svg/model/SkSVGClipPath.cpp",
1632 "experimental/svg/model/SkSVGContainer.cpp",
1633 "experimental/svg/model/SkSVGDOM.cpp",
1634 "experimental/svg/model/SkSVGEllipse.cpp",
1635 "experimental/svg/model/SkSVGGradient.cpp",
1636 "experimental/svg/model/SkSVGLine.cpp",
1637 "experimental/svg/model/SkSVGLinearGradient.cpp",
1638 "experimental/svg/model/SkSVGNode.cpp",
1639 "experimental/svg/model/SkSVGPath.cpp",
1640 "experimental/svg/model/SkSVGPattern.cpp",
1641 "experimental/svg/model/SkSVGPoly.cpp",
1642 "experimental/svg/model/SkSVGRadialGradient.cpp",
1643 "experimental/svg/model/SkSVGRect.cpp",
1644 "experimental/svg/model/SkSVGRenderContext.cpp",
1645 "experimental/svg/model/SkSVGSVG.cpp",
1646 "experimental/svg/model/SkSVGShape.cpp",
1647 "experimental/svg/model/SkSVGStop.cpp",
1648 "experimental/svg/model/SkSVGTransformableNode.cpp",
1649 "experimental/svg/model/SkSVGUse.cpp",
1650 "experimental/svg/model/SkSVGValue.cpp",
1651 ]
1652 deps = [
1653 ":skia",
1654 ":xml",
1655 ]
1656 }
mtkleinc095df52016-08-24 12:23:52 -07001657 }
fmalitaa2b9fdf2016-08-03 19:53:36 -07001658
Mike Reedd62d4062019-06-12 10:20:44 -04001659 test_lib("experimental_xform") {
1660 sources = [
1661 "experimental/xform/SkShape.cpp",
1662 "experimental/xform/SkXform.cpp",
1663 "experimental/xform/XContext.cpp",
1664 ]
1665 deps = [
1666 ":skia",
1667 ]
1668 }
1669
Mike Klein38af9432016-11-11 11:39:44 -05001670 if (skia_use_lua) {
1671 test_lib("lua") {
Mike Klein38af9432016-11-11 11:39:44 -05001672 sources = [
1673 "src/utils/SkLua.cpp",
1674 "src/utils/SkLuaCanvas.cpp",
1675 ]
1676 deps = [
Herb Derby264182c2018-05-29 15:53:40 -04001677 "modules/skshaper",
Mike Klein38af9432016-11-11 11:39:44 -05001678 "//third_party/lua",
1679 ]
1680 }
1681
Mike Kleine6682eb2017-01-05 10:54:57 -05001682 test_app("lua_app") {
Mike Klein38af9432016-11-11 11:39:44 -05001683 sources = [
1684 "tools/lua/lua_app.cpp",
1685 ]
1686 deps = [
1687 ":lua",
1688 ":skia",
1689 "//third_party/lua",
1690 ]
Mike Klein38af9432016-11-11 11:39:44 -05001691 }
1692
Mike Kleine6682eb2017-01-05 10:54:57 -05001693 test_app("lua_pictures") {
Mike Klein38af9432016-11-11 11:39:44 -05001694 sources = [
1695 "tools/lua/lua_pictures.cpp",
1696 ]
1697 deps = [
1698 ":flags",
1699 ":lua",
1700 ":skia",
1701 ":tool_utils",
1702 "//third_party/lua",
1703 ]
Mike Klein38af9432016-11-11 11:39:44 -05001704 }
1705 }
1706
Florin Malitabfe876a2018-09-02 12:33:59 -04001707 if (is_linux || is_mac) {
Florin Malita79725d32018-06-05 16:16:57 -04001708 test_app("skottie_tool") {
1709 deps = [
1710 "modules/skottie:tool",
1711 ]
1712 }
1713 }
1714
Hal Canary5b39dc82019-04-17 13:29:46 -04001715 test_app("make_skqp_model") {
1716 sources = [
1717 "tools/skqp/make_skqp_model.cpp",
1718 ]
1719 deps = [
1720 ":skia",
1721 ]
1722 }
1723
Kevin Lubickebf648e2017-09-21 13:45:16 -04001724 if (target_cpu != "wasm") {
1725 import("gn/samples.gni")
1726 test_lib("samples") {
Yuqian Li56a4a092018-02-12 14:47:34 +08001727 sources = samples_sources
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04001728 public_deps = [
1729 ":tool_utils",
1730 ]
Kevin Lubickebf648e2017-09-21 13:45:16 -04001731 deps = [
1732 ":experimental_svg_model",
1733 ":flags",
Mike Kleinc6142d82019-03-25 10:54:59 -05001734 ":gpu_tool_utils",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001735 ":xml",
Julia Lavrovaa3552c52019-05-30 16:12:56 -04001736 "modules/skparagraph:samples",
Mike Reedec80d902019-02-12 11:31:27 -05001737 "modules/sksg",
Herb Derby264182c2018-05-29 15:53:40 -04001738 "modules/skshaper",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001739 ]
Mike Klein38af9432016-11-11 11:39:44 -05001740
Kevin Lubickebf648e2017-09-21 13:45:16 -04001741 if (skia_use_lua) {
1742 sources += [ "samplecode/SampleLua.cpp" ]
1743 deps += [
1744 ":lua",
1745 "//third_party/lua",
1746 ]
1747 }
1748 }
Mike Klein7af351a2018-07-27 09:54:43 -04001749 test_app("imgcvt") {
1750 sources = [
1751 "tools/imgcvt.cpp",
1752 ]
1753 deps = [
1754 ":skcms",
1755 ":skia",
1756 ]
1757 }
Mike Klein735c7ba2019-03-25 12:57:58 -05001758 test_lib("hash_and_encode") {
Mike Klein735c7ba2019-03-25 12:57:58 -05001759 sources = [
1760 "tools/HashAndEncode.cpp",
1761 "tools/HashAndEncode.h",
1762 ]
1763 deps = [
1764 ":flags",
1765 ":skia",
1766 "//third_party/libpng",
1767 ]
1768 }
1769 test_app("fm") {
1770 sources = [
Mike Kleinfee00792019-11-21 16:18:47 -06001771 "dm/DMGpuTestProcs.cpp", # blech
Mike Klein735c7ba2019-03-25 12:57:58 -05001772 "tools/fm/fm.cpp",
1773 ]
1774 deps = [
1775 ":common_flags_aa",
1776 ":common_flags_gpu",
Mike Klein6253d902019-03-27 15:09:12 -05001777 ":experimental_svg_model",
Mike Klein735c7ba2019-03-25 12:57:58 -05001778 ":flags",
1779 ":gm",
1780 ":gpu_tool_utils",
1781 ":hash_and_encode",
1782 ":skia",
Mike Kleinfee00792019-11-21 16:18:47 -06001783 ":tests",
Mike Klein735c7ba2019-03-25 12:57:58 -05001784 ":tool_utils",
1785 ":trace",
Mike Klein22924262019-04-02 14:14:56 -04001786 "modules/skottie",
1787 "modules/skottie:utils",
Mike Klein735c7ba2019-03-25 12:57:58 -05001788 ]
1789 }
Kevin Lubickebf648e2017-09-21 13:45:16 -04001790 test_app("dm") {
1791 sources = [
1792 "dm/DM.cpp",
Hal Canaryb6c5e5b2017-10-09 16:13:02 -04001793 "dm/DMGpuTestProcs.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001794 "dm/DMJsonWriter.cpp",
1795 "dm/DMSrcSink.cpp",
1796 ]
Kevin Lubickebf648e2017-09-21 13:45:16 -04001797 deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05001798 ":common_flags_aa",
1799 ":common_flags_config",
1800 ":common_flags_gpu",
1801 ":common_flags_images",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001802 ":experimental_svg_model",
1803 ":flags",
1804 ":gm",
1805 ":gpu_tool_utils",
Mike Klein735c7ba2019-03-25 12:57:58 -05001806 ":hash_and_encode",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001807 ":skia",
1808 ":tests",
1809 ":tool_utils",
Mike Klein499f0ac2019-03-25 13:00:12 -05001810 ":trace",
Florin Malita3d856bd2018-05-26 09:49:28 -04001811 "modules/skottie",
Florin Malitaa8316552018-11-09 16:19:44 -05001812 "modules/skottie:utils",
Florin Malita3b526b02018-05-25 12:43:51 -04001813 "modules/sksg",
Mike Klein38af9432016-11-11 11:39:44 -05001814 ]
1815 }
Brian Osman16adfa32016-10-18 14:42:44 -04001816 }
1817
Mike Kleina8a51ce2018-01-09 12:34:11 -05001818 if (!is_win) {
1819 test_app("remote_demo") {
1820 sources = [
1821 "tools/remote_demo.cpp",
1822 ]
1823 deps = [
1824 ":skia",
1825 ]
1826 }
1827 }
1828
Hal Canarye107faa2019-10-23 12:52:33 -04001829 if (!is_win) {
1830 test_app("blob_cache_sim") {
1831 sources = [
1832 "tools/blob_cache_sim.cpp",
1833 ]
1834 deps = [
1835 ":skia",
1836 ]
1837 }
1838 }
1839
Mike Kleine6682eb2017-01-05 10:54:57 -05001840 test_app("nanobench") {
mtklein2b6870c2016-07-28 14:17:33 -07001841 sources = [
1842 "bench/nanobench.cpp",
1843 ]
1844 deps = [
1845 ":bench",
Mike Kleinc6142d82019-03-25 10:54:59 -05001846 ":common_flags_aa",
1847 ":common_flags_config",
1848 ":common_flags_gpu",
1849 ":common_flags_images",
fmalita6519c212016-09-14 08:05:17 -07001850 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001851 ":flags",
1852 ":gm",
1853 ":gpu_tool_utils",
1854 ":skia",
1855 ":tool_utils",
Mike Klein499f0ac2019-03-25 13:00:12 -05001856 ":trace",
Julia Lavrovaa3552c52019-05-30 16:12:56 -04001857 "modules/skparagraph:bench",
Mike Reedd62d4062019-06-12 10:20:44 -04001858 "modules/sksg",
Julia Lavrovaa3552c52019-05-30 16:12:56 -04001859 "modules/skshaper",
mtklein2b6870c2016-07-28 14:17:33 -07001860 ]
mtklein2b6870c2016-07-28 14:17:33 -07001861 }
halcanary19a97202016-08-03 15:08:04 -07001862
Ravi Mistry10d36c52017-01-31 09:49:18 -05001863 test_app("skpinfo") {
1864 sources = [
1865 "tools/skpinfo.cpp",
1866 ]
1867 deps = [
1868 ":flags",
1869 ":skia",
1870 ]
1871 }
1872
Mike Reedc0ee21f2019-05-28 16:11:03 -04001873 if (skia_use_ffmpeg) {
1874 test_app("skottie2movie") {
1875 sources = [
1876 "tools/skottie2movie.cpp",
1877 ]
1878 deps = [
1879 ":flags",
Mike Reed5f12eaa2019-09-24 12:01:58 -04001880 ":gpu_tool_utils",
Mike Reedc0ee21f2019-05-28 16:11:03 -04001881 ":skia",
1882 ":video_decoder",
1883 "modules/skottie",
Mike Reed5093e232019-05-30 10:10:50 -04001884 "modules/skottie:utils",
Mike Reedc0ee21f2019-05-28 16:11:03 -04001885 ]
1886 }
1887 }
1888
Brian Osmanc9a42472018-05-31 13:17:12 -04001889 test_app("skpbench") {
1890 sources = [
1891 "tools/skpbench/skpbench.cpp",
1892 ]
1893 deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05001894 ":common_flags_config",
1895 ":common_flags_gpu",
Brian Osmanc9a42472018-05-31 13:17:12 -04001896 ":flags",
1897 ":gpu_tool_utils",
1898 ":skia",
1899 ":tool_utils",
1900 ]
csmartdalton4b5179b2016-09-19 11:03:58 -07001901 }
1902
Mike Kleine6682eb2017-01-05 10:54:57 -05001903 test_app("sktexttopdf") {
halcanary3eee9d92016-09-10 07:01:53 -07001904 sources = [
Herb Derby264182c2018-05-29 15:53:40 -04001905 "tools/using_skia_and_harfbuzz.cpp",
halcanary3eee9d92016-09-10 07:01:53 -07001906 ]
1907 deps = [
1908 ":skia",
Herb Derby264182c2018-05-29 15:53:40 -04001909 "modules/skshaper",
halcanary3eee9d92016-09-10 07:01:53 -07001910 ]
halcanary3eee9d92016-09-10 07:01:53 -07001911 }
mtklein046cb562016-09-16 10:23:12 -07001912
Ben Wagner219f3622017-07-17 15:32:25 -04001913 test_app("create_test_font") {
1914 sources = [
Ben Wagner483c7722018-02-20 17:06:07 -05001915 "tools/fonts/create_test_font.cpp",
Ben Wagner219f3622017-07-17 15:32:25 -04001916 ]
1917 deps = [
1918 ":skia",
1919 ]
1920 assert_no_deps = [
1921 # tool_utils requires the output of this app.
1922 ":tool_utils",
1923 ]
1924 }
1925
Florin Malita5d3ff432018-07-31 16:38:43 -04001926 if (skia_use_expat) {
1927 test_app("create_test_font_color") {
1928 sources = [
1929 "tools/fonts/create_test_font_color.cpp",
1930 ]
1931 deps = [
1932 ":flags",
1933 ":skia",
1934 ":tool_utils",
1935 ]
1936 }
Ben Wagner97182cc2018-02-15 10:20:04 -05001937 }
1938
Mike Kleine6682eb2017-01-05 10:54:57 -05001939 test_app("get_images_from_skps") {
mtklein046cb562016-09-16 10:23:12 -07001940 sources = [
1941 "tools/get_images_from_skps.cpp",
1942 ]
1943 deps = [
1944 ":flags",
1945 ":skia",
mtklein046cb562016-09-16 10:23:12 -07001946 ]
mtklein046cb562016-09-16 10:23:12 -07001947 }
mtkleinecbc5262016-09-22 11:51:24 -07001948
Brian Osman6788a542018-12-10 11:56:01 -05001949 if (!is_ios && target_cpu != "wasm" && !(is_win && target_cpu == "arm64")) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001950 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04001951 sources = [
1952 "tools/skiaserve/Request.cpp",
1953 "tools/skiaserve/Response.cpp",
1954 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001955 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1956 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1957 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1958 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1959 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1960 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1961 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1962 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1963 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05001964 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1965 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001966 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1967 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1968 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1969 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1970 ]
1971 deps = [
1972 ":flags",
1973 ":gpu_tool_utils",
1974 ":skia",
1975 ":tool_utils",
Mike Klein7d302882016-11-03 14:06:31 -04001976 "//third_party/libmicrohttpd",
Mike Klein7d302882016-11-03 14:06:31 -04001977 ]
Mike Klein7d302882016-11-03 14:06:31 -04001978 }
mtkleinecbc5262016-09-22 11:51:24 -07001979 }
kjlubick14f984b2016-10-03 11:49:45 -07001980
Mike Kleine6682eb2017-01-05 10:54:57 -05001981 test_app("fuzz") {
kjlubick14f984b2016-10-03 11:49:45 -07001982 sources = [
Kevin Lubickbc9a1a82018-09-17 14:46:57 -04001983 "fuzz/Fuzz.cpp",
Hal Canary24ac42b2017-02-14 13:35:14 -05001984 "fuzz/FuzzCanvas.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05001985 "fuzz/FuzzCommon.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05001986 "fuzz/FuzzDrawFunctions.cpp",
Kevin Lubicke4be55d2018-03-30 15:05:13 -04001987 "fuzz/FuzzEncoders.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001988 "fuzz/FuzzGradients.cpp",
Kevin Lubickbc9a1a82018-09-17 14:46:57 -04001989 "fuzz/FuzzMain.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001990 "fuzz/FuzzParsePath.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05001991 "fuzz/FuzzPathMeasure.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001992 "fuzz/FuzzPathop.cpp",
Jim Van Verth061cc212018-07-11 14:09:09 -04001993 "fuzz/FuzzPolyUtils.cpp",
Hal Canary13872dd2018-04-06 10:25:12 -04001994 "fuzz/FuzzRegionOp.cpp",
Kevin Lubick2be14d32019-10-21 13:44:48 -04001995 "fuzz/FuzzSkDescriptor.cpp",
Leon Scroggins III0b8fcbc2018-10-16 15:52:17 -04001996 "fuzz/oss_fuzz/FuzzAndroidCodec.cpp",
Kevin Lubick2416f962018-02-12 08:26:39 -05001997 "fuzz/oss_fuzz/FuzzAnimatedImage.cpp",
1998 "fuzz/oss_fuzz/FuzzImage.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05001999 "fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp",
Leon Scroggins III0b8fcbc2018-10-16 15:52:17 -04002000 "fuzz/oss_fuzz/FuzzIncrementalImage.cpp",
Florin Malita80452be2018-06-19 11:27:20 -04002001 "fuzz/oss_fuzz/FuzzJSON.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05002002 "fuzz/oss_fuzz/FuzzPathDeserialize.cpp",
Kevin Lubick2541edf2018-01-11 10:27:14 -05002003 "fuzz/oss_fuzz/FuzzRegionDeserialize.cpp",
2004 "fuzz/oss_fuzz/FuzzRegionSetPath.cpp",
Kevin Lubicke9c1ce82019-03-11 11:09:40 -04002005 "fuzz/oss_fuzz/FuzzSKSL2GLSL.cpp",
2006 "fuzz/oss_fuzz/FuzzSKSL2Metal.cpp",
Kevin Lubick0f0a7102019-03-18 16:20:55 -04002007 "fuzz/oss_fuzz/FuzzSKSL2Pipeline.cpp",
Kevin Lubicke9c1ce82019-03-11 11:09:40 -04002008 "fuzz/oss_fuzz/FuzzSKSL2SPIRV.cpp",
Kevin Lubick2be14d32019-10-21 13:44:48 -04002009 "fuzz/oss_fuzz/FuzzSkDescriptorDeserialize.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05002010 "fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp",
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05002011 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002012 "tools/debugger/DebugCanvas.cpp",
Nathaniel Nifong20b177a2019-12-12 11:05:10 -05002013 "tools/debugger/DebugLayerManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002014 "tools/debugger/DrawCommand.cpp",
2015 "tools/debugger/JsonWriteBuffer.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07002016 ]
2017 deps = [
2018 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04002019 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07002020 ":skia",
Florin Malita3d856bd2018-05-26 09:49:28 -04002021 "modules/skottie:fuzz",
kjlubick14f984b2016-10-03 11:49:45 -07002022 ]
kjlubick14f984b2016-10-03 11:49:45 -07002023 }
Mike Klein38312422016-10-05 15:41:01 -04002024
Mike Kleine6682eb2017-01-05 10:54:57 -05002025 test_app("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04002026 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04002027 rebase_path("tests/skia_test.cpp"),
2028 rebase_path("tests/Test.cpp"),
2029 ]
caryclark9feb6322016-10-25 08:58:26 -07002030 deps = [
2031 ":flags",
2032 ":gpu_tool_utils",
2033 ":skia",
2034 ":tool_utils",
2035 ]
caryclark9feb6322016-10-25 08:58:26 -07002036 }
2037
Mike Kleine6682eb2017-01-05 10:54:57 -05002038 test_app("dump_record") {
Mike Klein38312422016-10-05 15:41:01 -04002039 sources = [
2040 "tools/DumpRecord.cpp",
2041 "tools/dump_record.cpp",
2042 ]
2043 deps = [
2044 ":flags",
2045 ":skia",
2046 ]
Mike Klein38312422016-10-05 15:41:01 -04002047 }
bungemanfe917272016-10-13 17:36:40 -04002048
Mike Kleine6682eb2017-01-05 10:54:57 -05002049 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04002050 sources = [
2051 "tools/skdiff/skdiff.cpp",
2052 "tools/skdiff/skdiff_html.cpp",
2053 "tools/skdiff/skdiff_main.cpp",
2054 "tools/skdiff/skdiff_utils.cpp",
2055 ]
2056 deps = [
2057 ":skia",
2058 ":tool_utils",
2059 ]
bungemanfe917272016-10-13 17:36:40 -04002060 }
halcanarya73d76a2016-10-17 13:19:02 -07002061
Mike Kleine6682eb2017-01-05 10:54:57 -05002062 test_app("skp_parser") {
halcanarya73d76a2016-10-17 13:19:02 -07002063 sources = [
2064 "tools/skp_parser.cpp",
2065 ]
2066 deps = [
2067 ":skia",
2068 ":tool_utils",
halcanarya73d76a2016-10-17 13:19:02 -07002069 ]
halcanarya73d76a2016-10-17 13:19:02 -07002070 }
Brian Osman16adfa32016-10-18 14:42:44 -04002071
Brian Osmanc9a42472018-05-31 13:17:12 -04002072 if (!is_win) {
Colin Cross654eb2a2019-11-08 13:08:36 -08002073 source_set("skqp_lib") {
2074 check_includes = false
2075 testonly = true
2076 if (!is_official_build) {
2077 configs -= [ "//gn:warnings" ]
2078 }
2079 public_configs = [ ":skia_private" ]
Hal Canary0e07ad72018-02-08 13:06:56 -05002080 defines =
2081 [ "SK_SKQP_GLOBAL_ERROR_TOLERANCE=$skia_skqp_global_error_tolerance" ]
Hal Canary75427132017-10-11 16:00:31 -04002082 sources = [
2083 "dm/DMGpuTestProcs.cpp",
Hal Canaryac7f23c2018-11-26 14:07:41 -05002084 "tools/skqp/src/skqp.cpp",
2085 "tools/skqp/src/skqp_model.cpp",
Hal Canary75427132017-10-11 16:00:31 -04002086 ]
2087 deps = [
2088 ":gm",
Hal Canary75427132017-10-11 16:00:31 -04002089 ":skia",
2090 ":tests",
Hal Canaryd7b38452017-12-11 17:46:26 -05002091 ":tool_utils",
2092 ]
2093 }
2094 test_app("skqp") {
2095 sources = [
Hal Canaryac7f23c2018-11-26 14:07:41 -05002096 "tools/skqp/src/skqp_main.cpp",
Hal Canaryd7b38452017-12-11 17:46:26 -05002097 ]
John Rosasco24cbdab2019-09-25 14:14:35 -07002098 include_dirs = [ "//" ]
2099 lib_dirs = []
Robert Phillipsc919f972019-11-18 11:01:05 -05002100 deps = [
2101 ":skqp_lib",
2102 ]
Hal Canaryac7f23c2018-11-26 14:07:41 -05002103 }
2104 test_app("jitter_gms") {
2105 sources = [
2106 "tools/skqp/jitter_gms.cpp",
2107 ]
2108 deps = [
2109 ":gm",
2110 ":skia",
2111 ":skqp_lib",
Hal Canary75427132017-10-11 16:00:31 -04002112 ]
2113 }
2114 }
John Rosasco24cbdab2019-09-25 14:14:35 -07002115 if (is_fuchsia) {
2116 # Build a package repository for skqp on Fuchsia.
2117 group("skqp_repo") {
2118 testonly = true
2119 deps = [
Robert Phillipsc919f972019-11-18 11:01:05 -05002120 "//build/fuchsia/skqp:skqp_repo",
John Rosasco24cbdab2019-09-25 14:14:35 -07002121 ]
2122 }
2123 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002124 if (is_android) {
Colin Cross654eb2a2019-11-08 13:08:36 -08002125 shared_library("libskqp_app") {
2126 configs += [ ":skia_private" ]
2127 if (!is_official_build) {
2128 configs -= [ "//gn:warnings" ]
2129 }
2130 testonly = true
Hal Canary28f89382017-12-12 09:42:14 -05002131 sources = [
Hal Canaryac7f23c2018-11-26 14:07:41 -05002132 "tools/skqp/src/jni_skqp.cpp",
Hal Canary28f89382017-12-12 09:42:14 -05002133 ]
2134 deps = [
2135 ":skia",
2136 ":skqp_lib",
Hal Canaryb4d01a92018-01-29 13:10:08 -05002137 ":tool_utils",
Hal Canary28f89382017-12-12 09:42:14 -05002138 ]
2139 libs = [ "android" ]
2140 }
2141 }
Stan Iliev93151722018-08-02 11:10:52 -04002142 if (is_android && skia_enable_gpu) {
2143 test_app("skottie_android") {
2144 is_shared_library = true
2145
2146 sources = [
2147 "platform_tools/android/apps/skottie/src/main/cpp/JavaInputStreamAdaptor.cpp",
2148 "platform_tools/android/apps/skottie/src/main/cpp/native-lib.cpp",
2149 ]
2150 libs = []
2151
Stan Iliev93151722018-08-02 11:10:52 -04002152 deps = [
2153 ":skia",
2154 "modules/skottie",
Stan Ilieva7a52b92018-10-01 15:36:32 -04002155 "modules/sksg:samples",
Stan Iliev93151722018-08-02 11:10:52 -04002156 ]
2157 }
2158 }
Hal Canary75427132017-10-11 16:00:31 -04002159
Hal Canarya9de7602018-01-19 13:08:23 -05002160 test_app("list_gms") {
2161 sources = [
2162 "tools/list_gms.cpp",
2163 ]
2164 deps = [
2165 ":gm",
2166 ":skia",
2167 ]
2168 }
2169 test_app("list_gpu_unit_tests") {
2170 sources = [
2171 "dm/DMGpuTestProcs.cpp",
2172 "tools/list_gpu_unit_tests.cpp",
2173 ]
2174 deps = [
2175 ":skia",
2176 ":tests",
2177 ]
2178 }
2179
Brian Osmanc9a42472018-05-31 13:17:12 -04002180 test_lib("sk_app") {
Hal Canary378be8d2019-04-26 08:20:14 -04002181 public_deps = [
Hal Canary378be8d2019-04-26 08:20:14 -04002182 ":gpu_tool_utils",
Hal Canary05694472019-05-03 17:14:21 -04002183 ":skia",
Hal Canary378be8d2019-04-26 08:20:14 -04002184 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002185 sources = [
2186 "tools/sk_app/CommandSet.cpp",
2187 "tools/sk_app/GLWindowContext.cpp",
2188 "tools/sk_app/Window.cpp",
2189 ]
2190 libs = []
2191
Stephen Whitea800ec92019-08-02 15:04:52 -04002192 if (skia_use_dawn) {
2193 sources += [ "tools/sk_app/DawnWindowContext.cpp" ]
2194 }
2195
Brian Osmanc9a42472018-05-31 13:17:12 -04002196 if (is_android) {
2197 sources += [
2198 "tools/sk_app/android/GLWindowContext_android.cpp",
2199 "tools/sk_app/android/RasterWindowContext_android.cpp",
2200 "tools/sk_app/android/Window_android.cpp",
2201 "tools/sk_app/android/main_android.cpp",
2202 "tools/sk_app/android/surface_glue_android.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04002203 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002204 libs += [ "android" ]
2205 } else if (is_linux) {
2206 sources += [
2207 "tools/sk_app/unix/GLWindowContext_unix.cpp",
2208 "tools/sk_app/unix/RasterWindowContext_unix.cpp",
2209 "tools/sk_app/unix/Window_unix.cpp",
2210 "tools/sk_app/unix/keysym2ucs.c",
2211 "tools/sk_app/unix/main_unix.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04002212 ]
Stephen Whitea800ec92019-08-02 15:04:52 -04002213 if (skia_use_dawn) {
2214 if (dawn_enable_vulkan) {
2215 sources += [ "tools/sk_app/unix/DawnVulkanWindowContext_unix.cpp" ]
2216 defines = [ "VK_USE_PLATFORM_XCB_KHR" ]
2217 libs += [ "X11-xcb" ]
2218 }
2219 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002220 libs += [
2221 "GL",
2222 "X11",
2223 ]
2224 } else if (is_win) {
2225 sources += [
2226 "tools/sk_app/win/GLWindowContext_win.cpp",
2227 "tools/sk_app/win/RasterWindowContext_win.cpp",
2228 "tools/sk_app/win/Window_win.cpp",
2229 "tools/sk_app/win/main_win.cpp",
2230 ]
Brian Salomon194db172017-08-17 14:37:06 -04002231 if (skia_use_angle) {
Brian Osmanc9a42472018-05-31 13:17:12 -04002232 sources += [ "tools/sk_app/win/ANGLEWindowContext_win.cpp" ]
Brian Salomon194db172017-08-17 14:37:06 -04002233 }
Stephen Whitea800ec92019-08-02 15:04:52 -04002234 if (skia_use_dawn) {
2235 if (dawn_enable_d3d12) {
2236 sources += [ "tools/sk_app/win/DawnD3D12WindowContext_win.cpp" ]
2237 }
2238 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002239 } else if (is_mac) {
2240 sources += [
Jim Van Verth1f086ca2019-01-28 14:46:04 -05002241 "tools/sk_app/mac/GLWindowContext_mac.mm",
2242 "tools/sk_app/mac/RasterWindowContext_mac.mm",
2243 "tools/sk_app/mac/Window_mac.mm",
2244 "tools/sk_app/mac/main_mac.mm",
Brian Osmanc9a42472018-05-31 13:17:12 -04002245 ]
Stephen Whitea800ec92019-08-02 15:04:52 -04002246 if (skia_use_dawn) {
2247 if (dawn_enable_metal) {
2248 sources += [ "tools/sk_app/mac/DawnMTLWindowContext_mac.mm" ]
2249 }
2250 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002251 libs += [
2252 "QuartzCore.framework",
2253 "Cocoa.framework",
2254 "Foundation.framework",
2255 ]
2256 } else if (is_ios) {
2257 sources += [
Jim Van Verth68cb8b02019-08-29 14:59:17 -04002258 "tools/sk_app/ios/GLWindowContext_ios.mm",
2259 "tools/sk_app/ios/RasterWindowContext_ios.mm",
2260 "tools/sk_app/ios/Window_ios.mm",
2261 "tools/sk_app/ios/main_ios.mm",
Brian Osmanc9a42472018-05-31 13:17:12 -04002262 ]
Jim Van Verth68cb8b02019-08-29 14:59:17 -04002263 libs += [ "QuartzCore.framework" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002264 }
2265
2266 if (skia_use_vulkan) {
2267 sources += [ "tools/sk_app/VulkanWindowContext.cpp" ]
2268 if (is_android) {
2269 sources += [ "tools/sk_app/android/VulkanWindowContext_android.cpp" ]
2270 } else if (is_linux) {
2271 sources += [ "tools/sk_app/unix/VulkanWindowContext_unix.cpp" ]
2272 libs += [ "X11-xcb" ]
2273 } else if (is_win) {
2274 sources += [ "tools/sk_app/win/VulkanWindowContext_win.cpp" ]
2275 }
2276 }
2277
Jim Van Verthbe39f712019-02-08 15:36:14 -05002278 if (skia_use_metal) {
2279 sources += [ "tools/sk_app/MetalWindowContext.mm" ]
2280 if (is_mac) {
2281 sources += [ "tools/sk_app/mac/MetalWindowContext_mac.mm" ]
Jim Van Verth68cb8b02019-08-29 14:59:17 -04002282 } else if (is_ios) {
Jim Van Verthe58d5322019-09-03 09:42:57 -04002283 sources += [ "tools/sk_app/ios/MetalWindowContext_ios.mm" ]
Jim Van Verthbe39f712019-02-08 15:36:14 -05002284 }
Jim Van Verthbe39f712019-02-08 15:36:14 -05002285 }
2286
Brian Osmanc9a42472018-05-31 13:17:12 -04002287 deps = [
Brian Osmanc9a42472018-05-31 13:17:12 -04002288 ":tool_utils",
Brian Osmanc9a42472018-05-31 13:17:12 -04002289 ]
2290 if (is_android) {
2291 deps += [ "//third_party/native_app_glue" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002292 }
2293 if (skia_use_angle) {
2294 deps += [ "//third_party/angle2" ]
Mike Kleina92c3832016-12-08 09:49:39 -05002295 }
Brian Osman16adfa32016-10-18 14:42:44 -04002296 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05002297
Hal Canary87515122019-03-15 14:22:51 -04002298 if (!skia_use_vulkan && (is_mac || is_linux || is_win)) {
2299 test_app("fiddle_examples") {
2300 sources = [
Brian Osmanc725e8f2019-04-10 14:08:44 -04002301 "tools/fiddle/all_examples.cpp",
Hal Canary87515122019-03-15 14:22:51 -04002302 "tools/fiddle/examples.cpp",
Brian Osman72ef2d52019-03-17 11:09:17 -04002303 "tools/fiddle/examples.h",
Hal Canary87515122019-03-15 14:22:51 -04002304 ]
Brian Osman72ef2d52019-03-17 11:09:17 -04002305 if (is_win) {
Hal Canary6c8422c2020-01-10 15:22:09 -05002306 cflags = [
2307 "/wd4756", # Overflow in constant arithmetic
2308 "/wd4305", # truncation from 'double' to 'float'
2309 ]
Brian Osman72ef2d52019-03-17 11:09:17 -04002310 }
Hal Canary87515122019-03-15 14:22:51 -04002311 deps = [
2312 ":skia",
2313 ":skia.h",
2314 "modules/skottie",
Florin Malitaa1dcaae2019-03-25 17:38:43 -04002315 "modules/skshaper",
Hal Canary87515122019-03-15 14:22:51 -04002316 ]
2317 }
2318 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002319 test_app("viewer") {
2320 is_shared_library = is_android
Brian Osmanc9a42472018-05-31 13:17:12 -04002321 sources = [
Hal Canary41248072019-07-11 16:32:53 -04002322 "tools/viewer/AnimTimer.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002323 "tools/viewer/BisectSlide.cpp",
2324 "tools/viewer/GMSlide.cpp",
2325 "tools/viewer/ImGuiLayer.cpp",
2326 "tools/viewer/ImageSlide.cpp",
Brian Osman7c979f52019-02-12 13:27:51 -05002327 "tools/viewer/ParticlesSlide.cpp",
Brian Osmanc9a42472018-05-31 13:17:12 -04002328 "tools/viewer/SKPSlide.cpp",
2329 "tools/viewer/SampleSlide.cpp",
Brian Osmand927bd22019-12-18 11:23:12 -05002330 "tools/viewer/SkSLSlide.cpp",
Brian Osmanc9a42472018-05-31 13:17:12 -04002331 "tools/viewer/SkottieSlide.cpp",
2332 "tools/viewer/SlideDir.cpp",
2333 "tools/viewer/StatsLayer.cpp",
2334 "tools/viewer/SvgSlide.cpp",
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04002335 "tools/viewer/TouchGesture.cpp",
Leon Scroggins III81886e82018-08-22 11:18:08 -04002336 "tools/viewer/TouchGesture.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002337 "tools/viewer/Viewer.cpp",
2338 ]
2339 libs = []
2340
Brian Osmanc9a42472018-05-31 13:17:12 -04002341 deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05002342 ":common_flags_gpu",
Brian Osmanc9a42472018-05-31 13:17:12 -04002343 ":experimental_svg_model",
2344 ":flags",
2345 ":gm",
2346 ":gpu_tool_utils",
2347 ":samples",
2348 ":sk_app",
2349 ":skia",
2350 ":tool_utils",
Mike Klein499f0ac2019-03-25 13:00:12 -05002351 ":trace",
Brian Osman7c979f52019-02-12 13:27:51 -05002352 "modules/particles",
Brian Osmanc9a42472018-05-31 13:17:12 -04002353 "modules/skottie",
Florin Malitaa8316552018-11-09 16:19:44 -05002354 "modules/skottie:utils",
Brian Osmanc9a42472018-05-31 13:17:12 -04002355 "modules/sksg",
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04002356 "modules/sksg:samples",
Brian Osmanc9a42472018-05-31 13:17:12 -04002357 "//third_party/imgui",
Brian Osmanc9a42472018-05-31 13:17:12 -04002358 ]
Mike Reedd62d4062019-06-12 10:20:44 -04002359 if (skia_use_experimental_xform) {
2360 deps += [ ":experimental_xform" ]
2361 sources += [ "gm/xform.cpp" ]
2362 }
Brian Osmaneff04b52017-11-21 13:18:02 -05002363 }
2364
Brian Osmanc9a42472018-05-31 13:17:12 -04002365 if (!skia_use_angle && (is_linux || is_win || is_mac)) {
Brian Osmaneff04b52017-11-21 13:18:02 -05002366 test_app("HelloWorld") {
2367 sources = [
2368 "example/HelloWorld.cpp",
2369 ]
2370 libs = []
2371
Brian Osmaneff04b52017-11-21 13:18:02 -05002372 deps = [
2373 ":flags",
2374 ":gpu_tool_utils",
2375 ":sk_app",
2376 ":skia",
2377 ":tool_utils",
Brian Osmaneff04b52017-11-21 13:18:02 -05002378 ]
2379 }
2380 }
2381
Ben Wagnerf4fcbd42019-11-19 22:22:34 -05002382 if ((is_linux || is_mac || is_ios) && target_cpu != "mips64el" &&
2383 target_cpu != "loongson3a") {
Jim Van Verth4c70c752017-07-11 12:03:01 -04002384 test_app("SkiaSDLExample") {
2385 sources = [
2386 "example/SkiaSDLExample.cpp",
2387 ]
2388 libs = []
Jim Van Verth4c70c752017-07-11 12:03:01 -04002389 deps = [
2390 ":gpu_tool_utils",
2391 ":skia",
2392 "//third_party/libsdl",
2393 ]
2394 }
2395 }
2396
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002397 if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
2398 action_foreach("generate_mocs") {
2399 script = "gn/call.py"
2400 sources = [
2401 "tools/mdbviz/MainWindow.h",
2402 ]
2403 outputs = [
2404 "$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp",
2405 ]
2406 args = [
2407 "$skia_qt_path" + "/bin/moc",
2408 "{{source}}",
2409 "-o",
2410 "gen/mdbviz/{{source_name_part}}_moc.cpp",
2411 ]
2412 }
2413 action_foreach("generate_resources") {
2414 script = "gn/call.py"
2415 sources = [
2416 "tools/mdbviz/resources.qrc",
2417 ]
2418 outputs = [
2419 "$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp",
2420 ]
2421 args = [
2422 "$skia_qt_path" + "/bin/rcc",
2423 "{{source}}",
2424 "-o",
2425 "gen/mdbviz/{{source_name_part}}_res.cpp",
2426 ]
2427 }
2428 test_app("mdbviz") {
2429 if (is_win) {
2430 # on Windows we need to disable some exception handling warnings due to the Qt headers
2431 cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
2432 }
2433 sources = [
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002434 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002435 "tools/debugger/DebugCanvas.cpp",
Nathaniel Nifong20b177a2019-12-12 11:05:10 -05002436 "tools/debugger/DebugLayerManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002437 "tools/debugger/DrawCommand.cpp",
2438 "tools/debugger/JsonWriteBuffer.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002439 "tools/mdbviz/MainWindow.cpp",
Robert Phillipsdeaf5682017-09-06 13:07:21 -04002440 "tools/mdbviz/Model.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002441 "tools/mdbviz/main.cpp",
2442
2443 # generated files
2444 "$target_gen_dir/mdbviz/MainWindow_moc.cpp",
2445 "$target_gen_dir/mdbviz/resources_res.cpp",
2446 ]
2447 lib_dirs = [ "$skia_qt_path/lib" ]
2448 libs = [
2449 "Qt5Core.lib",
2450 "Qt5Gui.lib",
2451 "Qt5Widgets.lib",
2452 ]
2453 include_dirs = [
2454 "$skia_qt_path/include",
Robert Phillips276066b2017-09-06 17:17:44 -04002455 "$skia_qt_path/include/QtCore",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002456 "$skia_qt_path/include/QtWidgets",
2457 ]
2458 deps = [
2459 ":generate_mocs",
2460 ":generate_resources",
2461 ":skia",
2462 ]
2463 }
2464 }
2465
Mike Kleine459afd2017-03-03 09:21:30 -05002466 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05002467 copy("gdbserver") {
2468 sources = [
2469 "$ndk/$ndk_gdbserver",
2470 ]
2471 outputs = [
2472 "$root_out_dir/gdbserver",
2473 ]
2474 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05002475 }
Mike Kleinf9ae6702018-06-20 14:05:05 -04002476
2477 if (skia_use_opencl) {
2478 test_app("hello-opencl") {
2479 sources = [
Mike Kleinf9ae6702018-06-20 14:05:05 -04002480 "tools/hello-opencl.cpp",
2481 ]
Mike Klein8a1f15d2019-02-11 11:59:41 -05002482 deps = [
2483 "//third_party/opencl",
2484 ]
Mike Kleinf9ae6702018-06-20 14:05:05 -04002485 }
2486 }
Hal Canaryb8f81af2019-04-24 13:56:16 -04002487
Brian Osmanf564f152019-07-23 15:14:30 -04002488 executable("cpu_modules") {
2489 sources = [
2490 "tools/cpu_modules.cpp",
2491 ]
2492 deps = [
2493 ":skia",
2494 "modules/particles",
2495 ]
2496 }
2497
Hal Canary1f94d392019-07-30 09:27:56 -04002498 if (skia_use_icu && skia_use_harfbuzz) {
2499 test_app("editor") {
2500 is_shared_library = is_android
2501 deps = [
Hal Canarya0b66fc2019-08-23 10:16:51 -04002502 "modules/skplaintexteditor:editor_app",
Hal Canary1f94d392019-07-30 09:27:56 -04002503 ]
2504 }
Hal Canaryb8f81af2019-04-24 13:56:16 -04002505 }
Hal Canarye5b65d22019-09-19 11:33:31 -04002506
2507 executable("image_diff_metric") {
Brian Osmanaea77262019-09-20 09:20:07 -04002508 sources = [
2509 "tools/image_diff_metric.cpp",
2510 ]
Hal Canarye5b65d22019-09-19 11:33:31 -04002511 deps = [
2512 ":skia",
2513 ]
2514 }
mtklein25c81d42016-07-27 13:55:26 -07002515}
Hal Canary932a2c02019-09-17 10:43:18 -04002516
Chinmay Gardea1ea0a92019-10-01 16:37:10 -07002517if (is_ios && skia_use_metal && !skia_enable_flutter_defines) {
Hal Canary932a2c02019-09-17 10:43:18 -04002518 group("minimal_ios_mtl_skia_app") {
2519 deps = [
2520 "experimental/minimal_ios_mtl_skia_app",
2521 ]
2522 }
Hal Canary27483062019-12-06 15:01:08 -05002523}
2524
Hal Canary60ff6512020-01-21 12:39:20 -05002525if (is_ios && skia_enable_skottie && !skia_enable_flutter_defines) {
Hal Canary932a2c02019-09-17 10:43:18 -04002526 group("skottie_ios") {
2527 deps = [
Hal Canaryefb4ed82019-12-11 10:32:59 -05002528 "tools/skottie_ios_app",
Hal Canary932a2c02019-09-17 10:43:18 -04002529 ]
2530 }
2531}