blob: 2b073a0d65f066ca266019f2bf17de9308cd689a [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) {
Brian Salomonc3915f72021-11-15 19:08:02 +000017 import("//third_party/externals/dawn/scripts/dawn_features.gni")
Stephen White0d70b712019-07-10 15:51:30 -040018}
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 = []
Chinmay Gardef832c0a2020-03-18 14:37:23 -070031 cflags_objcc = []
Mike Kleinae7e6712016-10-11 17:49:33 -040032 if (is_component_build) {
33 defines += [ "SKIA_DLL" ]
34 }
Mike Kleinc4cbd742016-09-26 21:37:09 -040035 if (is_fuchsia || is_linux) {
Mike Kleinf0a53692019-04-24 11:42:40 -050036 defines += [ "SK_R32_SHIFT=16" ]
jcgregorio5561e3d2016-08-25 09:25:11 -070037 }
Brian Osmanf2c90142017-07-13 15:50:03 -040038 if (skia_enable_flutter_defines) {
39 defines += flutter_defines
40 }
mtklein06c35c02016-09-20 12:28:12 -070041 if (!skia_enable_gpu) {
42 defines += [ "SK_SUPPORT_GPU=0" ]
43 }
Brian Osman946a4cb2021-07-12 17:02:21 -040044 if (skia_enable_sksl) {
45 defines += [ "SK_ENABLE_SKSL" ]
46 }
Mike Reed025f7832018-11-12 09:27:05 -050047 if (is_fuchsia) {
48 defines += fuchsia_defines
49 }
Kevin Lubick27ba7032019-03-21 08:13:54 -040050 if (skia_gl_standard == "gles") {
51 defines += [ "SK_ASSUME_GL_ES=1" ]
52 } else if (skia_gl_standard == "gl") {
53 defines += [ "SK_ASSUME_GL=1" ]
Kevin Lubick39026282019-03-28 12:46:40 -040054 } else if (skia_gl_standard == "webgl") {
Kevin Lubick2f9a0982020-08-20 10:33:39 -040055 defines += [
56 "SK_ASSUME_WEBGL=1",
57 "SK_USE_WEBGL",
58 ]
Kevin Lubick27ba7032019-03-21 08:13:54 -040059 }
Robert Phillips024668c2021-07-01 12:12:52 -040060 if (!skia_enable_skgpu_v1) {
Robert Phillips7cef6782021-07-01 13:21:37 -040061 defines += [ "SK_GPU_V1=0" ]
Robert Phillips3b97aa22021-05-03 11:42:40 -040062 }
Chinmay Gardef832c0a2020-03-18 14:37:23 -070063
64 # Some older versions of the Clang toolchain change the visibility of
65 # symbols decorated with API_AVAILABLE macro to be visible. Users of such
66 # toolchains suppress the use of this macro till toolchain updates are made.
67 if (is_mac || is_ios) {
68 if (skia_enable_api_available_macro) {
69 defines += [ "SK_ENABLE_API_AVAILABLE" ]
70 } else {
71 cflags_objcc += [ "-Wno-unguarded-availability" ]
72 }
73 }
mtkleinc04ff472016-06-23 10:29:30 -070074}
75
76# Skia internal APIs, used by Skia itself and a few test tools.
77config("skia_private") {
Mike Klein4f4c0642021-01-15 07:20:33 -060078 visibility = [ "./*" ]
mtkleinc04ff472016-06-23 10:29:30 -070079
Mike Reeda9e241d2017-05-03 10:52:00 -040080 defines = [ "SK_GAMMA_APPLY_TO_A8" ]
Leon Scroggins IIIc41a5f52018-11-15 15:54:59 -050081 if (skia_use_fixed_gamma_text) {
mtkleinb37c0342016-09-09 11:07:45 -070082 defines += [
83 "SK_GAMMA_EXPONENT=1.4",
84 "SK_GAMMA_CONTRAST=0.0",
85 ]
86 }
Kevin Lubicka59af6e2022-02-11 13:34:45 +000087 if (is_skia_dev_build) {
Mike Kleinb45d8622019-04-24 14:04:01 -050088 defines += [
89 "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=1",
90 "GR_TEST_UTILS=1",
91 ]
Jim Van Verth0c56bba2021-10-18 12:15:47 -040092 if (skia_enable_graphite) {
93 defines += [ "GRAPHITE_TEST_UTILS=1" ]
94 }
mtklein88a7ac02016-09-14 11:16:49 -070095 }
Brian Salomon789e25e2016-09-30 13:41:03 -040096 libs = []
97 lib_dirs = []
Brian Salomonf4ba4ec2020-03-19 15:54:28 -040098 if (skia_use_gl && skia_use_angle) {
Brian Osman34755e22016-12-05 09:46:02 -050099 defines += [ "SK_ANGLE" ]
100 }
Greg Danielb16beb92020-04-27 14:26:21 +0000101 if (skia_use_vma) {
102 defines += [ "SK_USE_VMA" ]
103 }
James Clarkeb8c0dab2021-02-09 06:22:41 -0800104 if (skia_enable_winuwp) {
James Clarkeb2bfa9d2021-02-18 19:54:42 -0800105 defines += [ "SK_WINUWP" ]
James Clarkeb8c0dab2021-02-09 06:22:41 -0800106 }
107}
108
mtkleinc04ff472016-06-23 10:29:30 -0700109# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
110config("skia_library") {
Mike Klein4f4c0642021-01-15 07:20:33 -0600111 visibility = [ "./*" ]
Mike Kleinf5f4e812019-04-29 15:45:14 +0000112 defines = [ "SKIA_IMPLEMENTATION=1" ]
mtkleinc04ff472016-06-23 10:29:30 -0700113}
114
115skia_library_configs = [
116 ":skia_public",
117 ":skia_private",
118 ":skia_library",
119]
120
mtklein9b8583d2016-08-24 17:32:30 -0700121# Use for CPU-specific Skia code that needs particular compiler flags.
122template("opts") {
123 if (invoker.enabled) {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400124 skia_source_set(target_name) {
125 visibility = [ ":*" ]
Hal Canaryc25f4e92019-02-26 11:54:25 -0500126 check_includes = false
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400127 configs = skia_library_configs
mtklein9b8583d2016-08-24 17:32:30 -0700128 forward_variables_from(invoker, "*")
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400129 if (defined(invoker.configs)) {
130 configs += invoker.configs
131 }
mtklein9b8583d2016-08-24 17:32:30 -0700132 }
133 } else {
134 # If not enabled, a phony empty target that swallows all otherwise unused variables.
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400135 skia_source_set(target_name) {
136 visibility = [ ":*" ]
Hal Canaryc25f4e92019-02-26 11:54:25 -0500137 check_includes = false
mtklein9b8583d2016-08-24 17:32:30 -0700138 forward_variables_from(invoker,
139 "*",
140 [
141 "sources",
142 "cflags",
143 ])
144 }
145 }
anmittala7eaf2e2016-08-17 13:57:26 -0700146}
147
mtklein422310d2016-08-16 18:28:43 -0700148is_x86 = current_cpu == "x64" || current_cpu == "x86"
mtkleinc04ff472016-06-23 10:29:30 -0700149
mtklein7d6fb2c2016-08-25 14:50:44 -0700150opts("none") {
151 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
brettwb9447282016-09-01 14:24:39 -0700152 sources = skia_opts.none_sources
anmittalb8b3f712016-08-25 04:55:19 -0700153 cflags = []
154}
155
mtklein7d6fb2c2016-08-25 14:50:44 -0700156opts("armv7") {
anmittalb8b3f712016-08-25 04:55:19 -0700157 enabled = current_cpu == "arm"
brettwb9447282016-09-01 14:24:39 -0700158 sources = skia_opts.armv7_sources + skia_opts.neon_sources
mtklein7d6fb2c2016-08-25 14:50:44 -0700159 cflags = []
anmittalb8b3f712016-08-25 04:55:19 -0700160}
161
162opts("arm64") {
163 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700164 sources = skia_opts.arm64_sources
anmittalb8b3f712016-08-25 04:55:19 -0700165 cflags = []
166}
167
168opts("crc32") {
169 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700170 sources = skia_opts.crc32_sources
anmittalb8b3f712016-08-25 04:55:19 -0700171 cflags = [ "-march=armv8-a+crc" ]
172}
173
mtklein9b8583d2016-08-24 17:32:30 -0700174opts("sse2") {
175 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700176 sources = skia_opts.sse2_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400177 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400178 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
179 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400180 cflags = [ "-msse2" ]
181 }
mtklein9b8583d2016-08-24 17:32:30 -0700182}
mtkleinc04ff472016-06-23 10:29:30 -0700183
mtklein9b8583d2016-08-24 17:32:30 -0700184opts("ssse3") {
185 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700186 sources = skia_opts.ssse3_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400187 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400188 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
189 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400190 cflags = [ "-mssse3" ]
191 }
mtklein9b8583d2016-08-24 17:32:30 -0700192}
mtkleinc04ff472016-06-23 10:29:30 -0700193
mtklein9b8583d2016-08-24 17:32:30 -0700194opts("sse41") {
195 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700196 sources = skia_opts.sse41_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400197 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400198 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
199 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400200 cflags = [ "-msse4.1" ]
201 }
mtklein9b8583d2016-08-24 17:32:30 -0700202}
mtklein4e976072016-08-08 09:06:27 -0700203
mtklein9b8583d2016-08-24 17:32:30 -0700204opts("sse42") {
205 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700206 sources = skia_opts.sse42_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400207 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400208 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
209 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400210 cflags = [ "-msse4.2" ]
211 }
mtklein9b8583d2016-08-24 17:32:30 -0700212}
213
214opts("avx") {
215 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700216 sources = skia_opts.avx_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400217 if (is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000218 cflags = [ "/arch:AVX" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400219 } else {
220 cflags = [ "-mavx" ]
Mike Klein1cc767b2019-12-13 13:02:22 -0500221 if (is_mac && is_debug) {
Mike Kleinf800c1d2020-06-04 11:53:56 -0500222 cflags += [ "-fno-stack-check" ] # Work around skia:9709
Mike Klein1cc767b2019-12-13 13:02:22 -0500223 }
Mike Klein3eb71212016-10-11 17:08:53 -0400224 }
mtkleinc04ff472016-06-23 10:29:30 -0700225}
226
Mike Klein1b9b7d52018-02-27 10:37:40 -0500227opts("hsw") {
228 enabled = is_x86
229 sources = skia_opts.hsw_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400230 if (is_win) {
Mike Klein1b9b7d52018-02-27 10:37:40 -0500231 cflags = [ "/arch:AVX2" ]
232 } else {
Mike Kleine87c4862018-03-23 00:13:58 +0000233 cflags = [ "-march=haswell" ]
Mike Kleindb380222020-01-22 13:53:18 -0600234 if (is_mac && is_debug) {
Mike Kleinf800c1d2020-06-04 11:53:56 -0500235 cflags += [ "-fno-stack-check" ] # Work around skia:9709
Mike Kleindb380222020-01-22 13:53:18 -0600236 }
Mike Klein1b9b7d52018-02-27 10:37:40 -0500237 }
Mike Klein1b9b7d52018-02-27 10:37:40 -0500238}
239
Mike Kleinad56c4c2020-06-05 06:57:30 -0500240opts("skx") {
241 enabled = is_x86
242 sources = skia_opts.skx_sources
243 if (is_win) {
244 cflags = [ "/arch:AVX512" ]
245 } else {
246 cflags = [ "-march=skylake-avx512" ]
247 if (is_mac && is_debug) {
248 cflags += [ "-fno-stack-check" ] # Work around skia:9709
249 }
250 }
251}
252
mtkleinc095df52016-08-24 12:23:52 -0700253# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700254template("optional") {
255 if (invoker.enabled) {
256 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700257 if (defined(invoker.public_defines)) {
258 defines = invoker.public_defines
259 }
Chris Dalton3a67b8e2018-05-03 09:30:29 -0600260 if (defined(invoker.public_configs)) {
261 configs = invoker.public_configs
262 }
Hal Canary2dad9902019-11-20 16:01:31 -0500263 if (defined(invoker.public_include_dirs)) {
264 include_dirs = invoker.public_include_dirs
265 }
mtklein457b42a2016-08-23 13:56:37 -0700266 }
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400267 skia_source_set(target_name) {
268 visibility = [ ":*" ]
Hal Canaryc25f4e92019-02-26 11:54:25 -0500269 check_includes = false
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400270 configs = skia_library_configs
271
272 # "*" clobbers the current scope; append to existing configs
mtkleincd01b032016-08-31 04:58:19 -0700273 forward_variables_from(invoker,
274 "*",
275 [
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400276 "configs",
mtkleincd01b032016-08-31 04:58:19 -0700277 "public_defines",
Ben Wagnere75021e2021-02-17 22:18:34 -0500278 "sources_for_tests",
mtkleincd01b032016-08-31 04:58:19 -0700279 "sources_when_disabled",
280 ])
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400281 if (defined(invoker.configs)) {
282 configs += invoker.configs
scroggof84ad642016-10-31 09:02:57 -0700283 }
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400284 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein457b42a2016-08-23 13:56:37 -0700285 }
Ben Wagnere75021e2021-02-17 22:18:34 -0500286 if (defined(invoker.sources_for_tests) && skia_enable_tools) {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400287 skia_source_set(target_name + "_tests") {
288 visibility = [ ":*" ]
Ben Wagnere75021e2021-02-17 22:18:34 -0500289 check_includes = false
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400290 configs = skia_library_configs
291
292 # "*" clobbers the current scope; append to existing configs
Ben Wagnere75021e2021-02-17 22:18:34 -0500293 forward_variables_from(invoker,
294 "*",
295 [
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400296 "configs",
Ben Wagnere75021e2021-02-17 22:18:34 -0500297 "public_defines",
298 "sources",
299 "sources_for_tests",
300 "sources_when_disabled",
Ben Wagnere75021e2021-02-17 22:18:34 -0500301 ])
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400302 if (defined(invoker.configs)) {
303 configs += invoker.configs
304 }
Ben Wagnere75021e2021-02-17 22:18:34 -0500305 testonly = true
306 sources = invoker.sources_for_tests
307 if (!defined(deps)) {
308 deps = []
309 }
310 deps += [ ":test" ]
311 all_dependent_configs = [ ":" + target_name + "_public" ]
Ben Wagnere75021e2021-02-17 22:18:34 -0500312 }
313 }
mtklein457b42a2016-08-23 13:56:37 -0700314 } else {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400315 skia_source_set(target_name) {
316 visibility = [ ":*" ]
317 configs = skia_library_configs
318
319 # "*" clobbers the current scope; append to existing configs
mtklein457b42a2016-08-23 13:56:37 -0700320 forward_variables_from(invoker,
321 "*",
322 [
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400323 "configs",
Ben Wagnerea765a32020-06-05 13:42:30 -0400324 "public",
mtklein457b42a2016-08-23 13:56:37 -0700325 "public_defines",
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400326 "public_deps",
mtklein457b42a2016-08-23 13:56:37 -0700327 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700328 "libs",
Jim Van Verthef820be2020-08-12 10:45:00 -0400329 "frameworks",
mtklein457b42a2016-08-23 13:56:37 -0700330 "sources",
Ben Wagnere75021e2021-02-17 22:18:34 -0500331 "sources_for_tests",
mtkleincd01b032016-08-31 04:58:19 -0700332 "sources_when_disabled",
mtklein457b42a2016-08-23 13:56:37 -0700333 ])
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400334 if (defined(invoker.configs)) {
335 configs += invoker.configs
336 }
mtkleincd01b032016-08-31 04:58:19 -0700337 if (defined(invoker.sources_when_disabled)) {
338 sources = invoker.sources_when_disabled
339 }
mtklein457b42a2016-08-23 13:56:37 -0700340 }
Ben Wagnere75021e2021-02-17 22:18:34 -0500341 if (defined(invoker.sources_for_tests)) {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400342 skia_source_set(target_name + "_tests") {
343 visibility = [ ":*" ]
Ben Wagnere75021e2021-02-17 22:18:34 -0500344 }
345 }
mtkleineb3c4252016-08-23 07:38:09 -0700346 }
mtklein457b42a2016-08-23 13:56:37 -0700347}
mtklein457b42a2016-08-23 13:56:37 -0700348
Leon Scroggins III63cfb362020-04-24 13:00:48 -0400349optional("android_utils") {
350 enabled = skia_enable_android_utils
351
Leon Scroggins III87caae62020-05-04 10:02:45 -0400352 public = [
353 "client_utils/android/BRDAllocator.h",
354 "client_utils/android/BitmapRegionDecoder.h",
355 "client_utils/android/FrontBufferedStream.h",
356 ]
Leon Scroggins III63cfb362020-04-24 13:00:48 -0400357 public_defines = [ "SK_ENABLE_ANDROID_UTILS" ]
Leon Scroggins III87caae62020-05-04 10:02:45 -0400358 sources = [
359 "client_utils/android/BitmapRegionDecoder.cpp",
360 "client_utils/android/FrontBufferedStream.cpp",
361 ]
Leon Scroggins III63cfb362020-04-24 13:00:48 -0400362}
363
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400364group("fontmgr_factory") {
365 public_deps = [ skia_fontmgr_factory ]
366}
367
368optional("fontmgr_empty_factory") {
369 enabled = true
370 sources = [ "src/ports/SkFontMgr_empty_factory.cpp" ]
Ben Wagner75626e42020-06-03 13:20:37 -0400371}
372
mtkleina45be612016-08-29 15:22:10 -0700373optional("fontmgr_android") {
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500374 enabled = skia_enable_fontmgr_android
mtkleina45be612016-08-29 15:22:10 -0700375
376 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500377 ":typeface_freetype",
mtkleina45be612016-08-29 15:22:10 -0700378 "//third_party/expat",
mtkleina45be612016-08-29 15:22:10 -0700379 ]
Ben Wagner75626e42020-06-03 13:20:37 -0400380 public = [ "include/ports/SkFontMgr_android.h" ]
mtkleina45be612016-08-29 15:22:10 -0700381 sources = [
382 "src/ports/SkFontMgr_android.cpp",
mtkleina45be612016-08-29 15:22:10 -0700383 "src/ports/SkFontMgr_android_parser.cpp",
Ben Wagner75626e42020-06-03 13:20:37 -0400384 "src/ports/SkFontMgr_android_parser.h",
mtkleina45be612016-08-29 15:22:10 -0700385 ]
Ben Wagnere75021e2021-02-17 22:18:34 -0500386 sources_for_tests = [ "tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -0700387}
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400388optional("fontmgr_android_factory") {
389 enabled = skia_enable_fontmgr_android
390 deps = [ ":fontmgr_android" ]
391 sources = [ "src/ports/SkFontMgr_android_factory.cpp" ]
392}
mtkleina45be612016-08-29 15:22:10 -0700393
mtkleind2e39db2016-09-07 07:52:55 -0700394optional("fontmgr_custom") {
Ben Wagner75626e42020-06-03 13:20:37 -0400395 enabled =
396 skia_enable_fontmgr_custom_directory ||
397 skia_enable_fontmgr_custom_embedded || skia_enable_fontmgr_custom_empty
mtkleind2e39db2016-09-07 07:52:55 -0700398
Mike Kleina01c6b02020-04-01 13:47:34 -0500399 deps = [ ":typeface_freetype" ]
Ben Wagner75626e42020-06-03 13:20:37 -0400400 public = [ "src/ports/SkFontMgr_custom.h" ]
401 sources = [ "src/ports/SkFontMgr_custom.cpp" ]
402}
403
404optional("fontmgr_custom_directory") {
405 enabled = skia_enable_fontmgr_custom_directory
406
407 deps = [
408 ":fontmgr_custom",
409 ":typeface_freetype",
mtkleind2e39db2016-09-07 07:52:55 -0700410 ]
Ben Wagner75626e42020-06-03 13:20:37 -0400411 public = [ "include/ports/SkFontMgr_directory.h" ]
412 sources = [ "src/ports/SkFontMgr_custom_directory.cpp" ]
413}
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400414optional("fontmgr_custom_directory_factory") {
415 enabled = skia_enable_fontmgr_custom_directory
416 deps = [ ":fontmgr_custom_directory" ]
417 sources = [ "src/ports/SkFontMgr_custom_directory_factory.cpp" ]
418}
Ben Wagner75626e42020-06-03 13:20:37 -0400419
420optional("fontmgr_custom_embedded") {
421 enabled = skia_enable_fontmgr_custom_embedded
422
423 deps = [
424 ":fontmgr_custom",
425 ":typeface_freetype",
426 ]
427 sources = [ "src/ports/SkFontMgr_custom_embedded.cpp" ]
mtkleind2e39db2016-09-07 07:52:55 -0700428}
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400429optional("fontmgr_custom_embedded_factory") {
430 enabled = skia_enable_fontmgr_custom_embedded
431 deps = [ ":fontmgr_custom_embedded" ]
432 sources = [ "src/ports/SkFontMgr_custom_embedded_factory.cpp" ]
433}
mtkleind2e39db2016-09-07 07:52:55 -0700434
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500435optional("fontmgr_custom_empty") {
436 enabled = skia_enable_fontmgr_custom_empty
Kevin Lubickddd0a332018-12-12 10:35:13 -0500437
Ben Wagner75626e42020-06-03 13:20:37 -0400438 deps = [
439 ":fontmgr_custom",
440 ":typeface_freetype",
Sergey Ulanovf3babcd2018-11-30 17:42:00 -0800441 ]
Ben Wagner75626e42020-06-03 13:20:37 -0400442 public = [ "include/ports/SkFontMgr_empty.h" ]
443 sources = [ "src/ports/SkFontMgr_custom_empty.cpp" ]
Hal Canaryff2742e2018-01-30 11:35:47 -0500444}
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400445optional("fontmgr_custom_empty_factory") {
446 enabled = skia_enable_fontmgr_custom_empty
447 deps = [ ":fontmgr_custom_empty" ]
448 sources = [ "src/ports/SkFontMgr_custom_empty_factory.cpp" ]
449}
Hal Canaryff2742e2018-01-30 11:35:47 -0500450
mtklein3cc22182016-08-29 13:26:14 -0700451optional("fontmgr_fontconfig") {
Ben Wagner75626e42020-06-03 13:20:37 -0400452 enabled = skia_enable_fontmgr_fontconfig
mtklein3cc22182016-08-29 13:26:14 -0700453
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400454 # The public header includes fontconfig.h and uses FcConfig*
455 public_deps = [ "//third_party:fontconfig" ]
Ben Wagner75626e42020-06-03 13:20:37 -0400456 public = [ "include/ports/SkFontMgr_fontconfig.h" ]
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400457 deps = [ ":typeface_freetype" ]
Ben Wagner75626e42020-06-03 13:20:37 -0400458 sources = [ "src/ports/SkFontMgr_fontconfig.cpp" ]
Ben Wagnere75021e2021-02-17 22:18:34 -0500459 sources_for_tests = [ "tests/FontMgrFontConfigTest.cpp" ]
Ben Wagner75626e42020-06-03 13:20:37 -0400460}
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400461optional("fontmgr_fontconfig_factory") {
462 enabled = skia_enable_fontmgr_fontconfig
463 deps = [ ":fontmgr_fontconfig" ]
464 sources = [ "src/ports/SkFontMgr_fontconfig_factory.cpp" ]
465}
Ben Wagner75626e42020-06-03 13:20:37 -0400466
467optional("fontmgr_FontConfigInterface") {
468 enabled = skia_enable_fontmgr_FontConfigInterface
469
470 deps = [
471 ":typeface_freetype",
472 "//third_party:fontconfig",
473 ]
474 public = [
475 "include/ports/SkFontConfigInterface.h",
476 "include/ports/SkFontMgr_FontConfigInterface.h",
477 ]
mtklein3cc22182016-08-29 13:26:14 -0700478 sources = [
bungeman1ae0e012016-09-19 12:13:16 -0700479 "src/ports/SkFontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700480 "src/ports/SkFontConfigInterface_direct.cpp",
481 "src/ports/SkFontConfigInterface_direct_factory.cpp",
Ben Wagner75626e42020-06-03 13:20:37 -0400482 "src/ports/SkFontConfigTypeface.h",
mtklein3cc22182016-08-29 13:26:14 -0700483 "src/ports/SkFontMgr_FontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700484 ]
485}
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400486optional("fontmgr_FontConfigInterface_factory") {
487 enabled = skia_enable_fontmgr_FontConfigInterface
488 deps = [ ":fontmgr_FontConfigInterface" ]
489 sources = [ "src/ports/SkFontMgr_FontConfigInterface_factory.cpp" ]
490}
mtklein3cc22182016-08-29 13:26:14 -0700491
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500492optional("fontmgr_fuchsia") {
493 enabled = skia_enable_fontmgr_fuchsia
494
Chinmay Garde89820762019-05-06 16:44:06 -0700495 deps = []
496
497 if (is_fuchsia && using_fuchsia_sdk) {
John Rosasco24cbdab2019-09-25 14:14:35 -0700498 deps += [ "//build/fuchsia/fidl:fuchsia.fonts" ]
Chinmay Garde89820762019-05-06 16:44:06 -0700499 } else {
Mike Kleina01c6b02020-04-01 13:47:34 -0500500 deps = [ "//sdk/fidl/fuchsia.fonts" ]
Chinmay Garde89820762019-05-06 16:44:06 -0700501 }
Ben Wagner75626e42020-06-03 13:20:37 -0400502 public = [ "src/ports/SkFontMgr_fuchsia.h" ]
503 sources = [ "src/ports/SkFontMgr_fuchsia.cpp" ]
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500504}
505
Ben Wagner75626e42020-06-03 13:20:37 -0400506optional("fontmgr_mac_ct") {
Ben Wagnerd13487e2020-06-03 23:29:43 -0400507 enabled = skia_use_fonthost_mac
508
Ben Wagner75626e42020-06-03 13:20:37 -0400509 public = [
510 "include/ports/SkFontMgr_mac_ct.h",
511 "include/ports/SkTypeface_mac.h",
512 ]
Ben Wagner0ef90dd2020-06-05 11:25:42 -0400513 sources = [
Ben Wagner0ef90dd2020-06-05 11:25:42 -0400514 "src/ports/SkFontMgr_mac_ct.cpp",
Ben Wagner0ef90dd2020-06-05 11:25:42 -0400515 "src/ports/SkScalerContext_mac_ct.cpp",
516 "src/ports/SkScalerContext_mac_ct.h",
517 "src/ports/SkTypeface_mac_ct.cpp",
518 "src/ports/SkTypeface_mac_ct.h",
519 ]
Ben Wagnera3e5e552021-02-22 15:37:33 +0000520 sources_for_tests = [ "tests/TypefaceMacTest.cpp" ]
Ben Wagnerd13487e2020-06-03 23:29:43 -0400521
522 if (is_mac) {
Jim Van Verthef820be2020-08-12 10:45:00 -0400523 frameworks = [
Ben Wagnerd13487e2020-06-03 23:29:43 -0400524 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
525 "AppKit.framework",
526 "ApplicationServices.framework",
527 ]
528 }
529
530 if (is_ios) {
Jim Van Verthef820be2020-08-12 10:45:00 -0400531 frameworks = [
Ben Wagnerd13487e2020-06-03 23:29:43 -0400532 "CoreFoundation.framework",
533 "CoreGraphics.framework",
534 "CoreText.framework",
535
536 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
537 "UIKit.framework",
538 ]
539 }
540}
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400541optional("fontmgr_mac_ct_factory") {
542 enabled = skia_use_fonthost_mac
543 deps = [ ":fontmgr_mac_ct" ]
544 sources = [ "src/ports/SkFontMgr_mac_ct_factory.cpp" ]
545}
Ben Wagnerd13487e2020-06-03 23:29:43 -0400546
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500547optional("fontmgr_win") {
548 enabled = skia_enable_fontmgr_win
549
Ben Wagner75626e42020-06-03 13:20:37 -0400550 public = [ "include/ports/SkTypeface_win.h" ]
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500551 sources = [
552 "src/fonts/SkFontMgr_indirect.cpp",
553 "src/ports/SkFontMgr_win_dw.cpp",
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500554 "src/ports/SkScalerContext_win_dw.cpp",
Ben Wagner66899512021-12-01 17:27:08 -0500555 "src/ports/SkScalerContext_win_dw.h",
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500556 "src/ports/SkTypeface_win_dw.cpp",
Ben Wagner66899512021-12-01 17:27:08 -0500557 "src/ports/SkTypeface_win_dw.h",
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500558 ]
559}
Ben Wagner8c3daeb2020-06-29 11:59:10 -0400560optional("fontmgr_win_factory") {
561 enabled = skia_enable_fontmgr_win
562 deps = [ ":fontmgr_win" ]
563 sources = [ "src/ports/SkFontMgr_win_dw_factory.cpp" ]
564}
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500565
566optional("fontmgr_win_gdi") {
567 enabled = skia_enable_fontmgr_win_gdi
568
Ben Wagner75626e42020-06-03 13:20:37 -0400569 public = [ "include/ports/SkTypeface_win.h" ]
Mike Kleina01c6b02020-04-01 13:47:34 -0500570 sources = [ "src/ports/SkFontHost_win.cpp" ]
Leon Scroggins III631dbc82019-03-04 13:54:02 -0500571 libs = [ "Gdi32.lib" ]
572}
573
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700574if (skia_lex) {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400575 skia_executable("sksllex") {
Ethan Nicholasca82a922017-09-07 09:39:50 -0400576 sources = [
John Stiles97d9e472021-10-20 12:40:03 -0400577 "src/sksl/lex/DFA.h",
578 "src/sksl/lex/DFAState.h",
579 "src/sksl/lex/LexUtil.h",
Ethan Nicholasca82a922017-09-07 09:39:50 -0400580 "src/sksl/lex/Main.cpp",
581 "src/sksl/lex/NFA.cpp",
John Stiles97d9e472021-10-20 12:40:03 -0400582 "src/sksl/lex/NFA.h",
583 "src/sksl/lex/NFAState.h",
584 "src/sksl/lex/NFAtoDFA.h",
Ethan Nicholasca82a922017-09-07 09:39:50 -0400585 "src/sksl/lex/RegexNode.cpp",
John Stiles97d9e472021-10-20 12:40:03 -0400586 "src/sksl/lex/RegexNode.h",
Ethan Nicholasca82a922017-09-07 09:39:50 -0400587 "src/sksl/lex/RegexParser.cpp",
John Stiles97d9e472021-10-20 12:40:03 -0400588 "src/sksl/lex/RegexParser.h",
589 "src/sksl/lex/TransitionTable.cpp",
590 "src/sksl/lex/TransitionTable.h",
Ethan Nicholasca82a922017-09-07 09:39:50 -0400591 ]
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500592 include_dirs = [ "." ]
Ethan Nicholasca82a922017-09-07 09:39:50 -0400593 }
594
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700595 action("run_sksllex") {
596 script = "gn/run_sksllex.py"
Mike Kleina01c6b02020-04-01 13:47:34 -0500597 deps = [ ":sksllex(//gn/toolchain:$host_toolchain)" ]
598 sources = [ "src/sksl/lex/sksl.lex" ]
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700599
600 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
601 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
602 outputs = [
Brian Osman1e7d8aa2021-02-18 14:37:29 -0500603 "$target_out_dir/" + rebase_path("src/sksl/SkSLLexer.h", target_out_dir),
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700604 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
605 # confused due to the same file being named by two different paths
606 ]
607 sksllex_path = "$root_out_dir/"
608 sksllex_path += "sksllex"
609 if (host_os == "win") {
610 sksllex_path += ".exe"
611 }
612 args = [
613 rebase_path(sksllex_path),
614 rebase_path("bin/clang-format"),
John Stiles796e7022020-06-11 19:57:22 -0400615 rebase_path("bin/fetch-clang-format"),
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700616 rebase_path("src"),
617 ]
618 }
619} else {
620 group("run_sksllex") {
621 }
622}
623
Brian Osmaned5181e2021-07-01 13:54:20 -0400624# `Compile SkSL Tests` relies on skslc.
625if (skia_compile_sksl_tests) {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -0400626 skia_executable("skslc") {
Brian Osman8d09d4a2020-11-24 15:51:06 -0500627 defines = [
628 "SKSL_STANDALONE",
Brian Osmand010f652021-02-24 13:59:39 -0500629 "SK_DISABLE_TRACING",
Arman Ugurayb58bab12021-12-09 12:24:51 -0800630 "SK_ENABLE_SPIRV_CROSS",
Brian Osman8d09d4a2020-11-24 15:51:06 -0500631 "SK_ENABLE_SPIRV_VALIDATION",
632 ]
Brian Osmana6ca9752020-10-02 13:41:21 -0400633 sources = [
John Stiles24e7ec72021-11-16 08:41:11 -0500634 "src/core/SkArenaAlloc.cpp",
Michael Ludwigc1ed11d2021-08-24 11:49:55 -0400635 "src/core/SkBlockAllocator.cpp",
Brian Osman47726a12020-12-17 16:02:08 -0500636 "src/core/SkCpu.cpp",
637 "src/core/SkData.cpp",
638 "src/core/SkHalf.cpp",
Brian Osmana6ca9752020-10-02 13:41:21 -0400639 "src/core/SkMalloc.cpp",
640 "src/core/SkMath.cpp",
John Stilesfbd9fae2021-06-22 09:34:14 -0400641 "src/core/SkMatrixInvert.cpp",
John Stiles060503e2020-10-22 15:02:26 -0400642 "src/core/SkSemaphore.cpp",
Brian Osman47726a12020-12-17 16:02:08 -0500643 "src/core/SkStream.cpp",
644 "src/core/SkString.cpp",
Brian Osmane9ad19b2020-12-23 13:31:13 -0500645 "src/core/SkStringUtils.cpp",
John Stiles060503e2020-10-22 15:02:26 -0400646 "src/core/SkThreadID.cpp",
Brian Osman47726a12020-12-17 16:02:08 -0500647 "src/core/SkUtils.cpp",
648 "src/core/SkVM.cpp",
John Stiles23e68662020-10-29 10:17:15 -0400649 "src/gpu/GrMemoryPool.cpp",
Brian Osmana6ca9752020-10-02 13:41:21 -0400650 "src/ports/SkMemory_malloc.cpp",
Brian Osman47726a12020-12-17 16:02:08 -0500651 "src/ports/SkOSFile_stdio.cpp",
Brian Osmana6ca9752020-10-02 13:41:21 -0400652 "src/sksl/SkSLMain.cpp",
John Stiles24e7ec72021-11-16 08:41:11 -0500653 "src/utils/SkJSON.cpp",
654 "src/utils/SkJSONWriter.cpp",
655 "src/utils/SkParse.cpp",
Jim Van Verthdb9f95c2021-12-10 17:27:10 -0500656 "src/utils/SkShaderUtils.cpp",
Brian Osman47726a12020-12-17 16:02:08 -0500657 "src/utils/SkUTF.cpp",
Julia Lavrova20187a22021-12-21 14:33:35 +0000658 "src/utils/SkVMVisualizer.cpp",
Brian Osmana6ca9752020-10-02 13:41:21 -0400659 ]
Julia Lavrova20187a22021-12-21 14:33:35 +0000660 libs = []
Brian Osman47726a12020-12-17 16:02:08 -0500661 if (is_win) {
662 sources += [ "src/ports/SkOSFile_win.cpp" ]
663 } else {
664 sources += [ "src/ports/SkOSFile_posix.cpp" ]
Julia Lavrova20187a22021-12-21 14:33:35 +0000665 libs += [ "dl" ]
Brian Osman47726a12020-12-17 16:02:08 -0500666 }
Ethan Nicholas762466e2017-06-29 10:03:38 -0400667 sources += skia_sksl_sources
Brian Osmanfb32ddf2019-06-18 10:14:20 -0400668 sources += skia_sksl_gpu_sources
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500669 include_dirs = [ "." ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400670 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500671 ":run_sksllex",
Julia Lavrova20187a22021-12-21 14:33:35 +0000672 ":skvm_jit",
Corentin Wallez89d6e792021-03-08 15:25:34 +0100673 "//third_party/externals/spirv-tools:spvtools",
674 "//third_party/externals/spirv-tools:spvtools_val",
Arman Ugurayb58bab12021-12-09 12:24:51 -0800675 "//third_party/spirv-cross:spirv_cross",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400676 ]
677 }
678
Ethan Nicholasc18bb512020-07-28 14:46:53 -0400679 skslc_path = "$root_out_dir/"
680 if (host_toolchain != default_toolchain_name) {
681 skslc_path += "$host_toolchain/"
682 }
683 skslc_path += "skslc"
684 if (host_os == "win") {
685 skslc_path += ".exe"
686 }
687
Brian Osmandd496172020-08-08 08:17:18 -0400688 copy("sksl_pre_includes") {
689 sources = [
690 "src/sksl/sksl_frag.sksl",
Brian Osmandd496172020-08-08 08:17:18 -0400691 "src/sksl/sksl_gpu.sksl",
Brian Osmanb06301e2020-11-06 11:45:36 -0500692 "src/sksl/sksl_public.sksl",
Brian Osmancbb60bd2021-04-12 09:49:20 -0400693 "src/sksl/sksl_rt_shader.sksl",
Brian Osmandd496172020-08-08 08:17:18 -0400694 "src/sksl/sksl_vert.sksl",
695 ]
696 outputs = [ "$root_out_dir/{{source_file_part}}" ]
697 }
698
699 dehydrate_sksl_sources = get_target_outputs(":sksl_pre_includes")
Brian Osmandd496172020-08-08 08:17:18 -0400700
701 dehydrate_sksl_outputs = []
702 foreach(src, dehydrate_sksl_sources) {
703 name = get_path_info(src, "name")
704
705 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
706 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
707 dehydrate_sksl_outputs += [ "$target_out_dir/" + rebase_path(
708 "src/sksl/generated/$name.dehydrated.sksl",
709 target_out_dir) ]
710 }
711
Ethan Nicholasc18bb512020-07-28 14:46:53 -0400712 action("dehydrate_sksl") {
713 script = "gn/dehydrate_sksl.py"
Brian Osmandd496172020-08-08 08:17:18 -0400714 deps = [
Brian Osmandd496172020-08-08 08:17:18 -0400715 ":sksl_pre_includes",
716 ":skslc(//gn/toolchain:$host_toolchain)",
717 ]
718 sources = dehydrate_sksl_sources
719 outputs = dehydrate_sksl_outputs
Brian Osmana5781382020-08-07 21:28:12 +0000720 args = [
721 rebase_path(skslc_path),
Brian Osmandd496172020-08-08 08:17:18 -0400722 rebase_path("src/sksl/generated"),
Brian Osmana5781382020-08-07 21:28:12 +0000723 ]
Brian Osmandd496172020-08-08 08:17:18 -0400724 args += rebase_path(dehydrate_sksl_sources)
Ethan Nicholasc18bb512020-07-28 14:46:53 -0400725 }
John Stilesd836f842020-09-14 10:21:44 -0400726} else {
727 group("dehydrate_sksl") {
728 }
729}
730
John Stilesd836f842020-09-14 10:21:44 -0400731if (skia_compile_sksl_tests) {
732 import("gn/sksl_tests.gni")
John Stilesd836f842020-09-14 10:21:44 -0400733
John Stiles7e248712020-09-24 16:42:09 -0400734 template("compile_sksl") {
735 # Compile the passed-in `sources` into `outputs` using skslc, with the given language/settings.
736 action("compile_sksl_${target_name}") {
737 script = "gn/compile_sksl_tests.py"
738 deps = [
John Stiles7e248712020-09-24 16:42:09 -0400739 ":sksl_pre_includes",
740 ":skslc(//gn/toolchain:$host_toolchain)",
741 ]
John Stilesda57fc02021-01-22 11:54:30 -0500742 sources = []
John Stiles7e248712020-09-24 16:42:09 -0400743 outputs = []
John Stilesb7f5e1b2021-01-27 14:05:15 -0500744 response_file_contents = []
John Stilesda57fc02021-01-22 11:54:30 -0500745 args = [
746 rebase_path(skslc_path),
747 invoker.lang,
748 invoker.settings,
John Stilesb7f5e1b2021-01-27 14:05:15 -0500749 "{{response_file_name}}",
John Stilesda57fc02021-01-22 11:54:30 -0500750 ]
751
John Stilesbfc9be02021-01-22 11:55:48 -0500752 testsDir = get_path_info("tests", "abspath")
753 resourcesDir = get_path_info("resources", "abspath")
754
755 foreach(partialPath, invoker.sources) {
756 dst = testsDir + partialPath
757 src = resourcesDir + partialPath
758
759 dir = get_path_info(dst, "dir")
John Stiles0a0a50a2021-04-14 09:35:24 -0400760
761 # We want to support double-extensions (for '.dsl.cpp') but GN doesn't natively handle this.
762 # Workaround: http://go/ggroup/a/chromium.org/g/gn-dev/c/RdEpjeYtb-4
763 # For input path "file.aa.bb", name will contain "file" and ext will contain ".aa.bb".
764 # For input path "file.cc", name will contain "file" and ext will contain ".cc".
765 nameTmp = get_path_info(dst, "name")
766 name = get_path_info(nameTmp, "name")
767 ext = get_path_info(nameTmp, "extension")
768 ext += get_path_info(dst, "extension")
John Stilesb7f5e1b2021-01-27 14:05:15 -0500769 response_file_contents += rebase_path([
770 src,
771 dir,
772 ])
John Stilesda57fc02021-01-22 11:54:30 -0500773 sources += [ src ]
John Stilesc3012182020-12-08 15:07:00 -0500774
John Stilesda57fc02021-01-22 11:54:30 -0500775 foreach(outExtension, invoker.outExtensions) {
Brian Osman99ddd2a2021-08-27 11:21:12 -0400776 # SPIR-V uses separate extensions for .vert shaders.
John Stiles82ab3402021-04-13 17:13:03 -0400777 if (ext == "vert" && outExtension == ".asm.frag") {
John Stilesc3012182020-12-08 15:07:00 -0500778 outExtension = ".asm.vert"
John Stilesc3012182020-12-08 15:07:00 -0500779 }
John Stilesbfc9be02021-01-22 11:55:48 -0500780 outputs +=
781 [ target_out_dir + "/" +
782 rebase_path(dir + "/" + name + outExtension, target_out_dir) ]
John Stiles7e248712020-09-24 16:42:09 -0400783 }
784 }
John Stiles7e248712020-09-24 16:42:09 -0400785 }
John Stilesd836f842020-09-14 10:21:44 -0400786 }
John Stiles7e248712020-09-24 16:42:09 -0400787 compile_sksl("glsl_tests") {
788 sources = sksl_glsl_tests_sources + sksl_glsl_settings_tests_sources
John Stilesda57fc02021-01-22 11:54:30 -0500789 outExtensions = [ ".glsl" ]
John Stiles7e248712020-09-24 16:42:09 -0400790 lang = "--glsl"
791 settings = "--settings"
John Stiles0ed9f312020-09-16 17:46:37 -0400792 }
John Stiles7e248712020-09-24 16:42:09 -0400793 compile_sksl("glsl_nosettings_tests") {
John Stiles0ed9f312020-09-16 17:46:37 -0400794 sources = sksl_glsl_settings_tests_sources
John Stilesda57fc02021-01-22 11:54:30 -0500795 outExtensions = [ "StandaloneSettings.glsl" ]
John Stiles7e248712020-09-24 16:42:09 -0400796 lang = "--glsl"
797 settings = "--nosettings"
John Stilesd836f842020-09-14 10:21:44 -0400798 }
John Stilesaeae3a52020-09-25 13:35:58 -0400799 compile_sksl("metal_tests") {
800 sources = sksl_metal_tests_sources
John Stilesda57fc02021-01-22 11:54:30 -0500801 outExtensions = [ ".metal" ]
John Stilesaeae3a52020-09-25 13:35:58 -0400802 lang = "--metal"
803 settings = "--settings"
804 }
Brian Osman977feec2020-12-22 11:28:59 -0500805 compile_sksl("skvm_tests") {
806 sources = sksl_skvm_tests_sources
John Stilesda57fc02021-01-22 11:54:30 -0500807 outExtensions = [ ".skvm" ]
Brian Osman977feec2020-12-22 11:28:59 -0500808 lang = "--skvm"
809 settings = "--settings"
810 }
Brian Osman62b039b2021-02-08 13:49:53 -0500811 compile_sksl("stage_tests") {
812 sources = sksl_stage_tests_sources
813 outExtensions = [ ".stage" ]
814 lang = "--stage"
815 settings = "--settings"
816 }
John Stilesdda1d312020-11-20 16:28:50 -0500817 compile_sksl("spirv_tests") {
818 sources = sksl_spirv_tests_sources
John Stilesda57fc02021-01-22 11:54:30 -0500819 outExtensions = [ ".asm.frag" ]
John Stilesdda1d312020-11-20 16:28:50 -0500820 lang = "--spirv"
821 settings = "--settings"
822 }
John Stilesd836f842020-09-14 10:21:44 -0400823} else {
John Stiles7e248712020-09-24 16:42:09 -0400824 group("compile_sksl_glsl_tests") {
825 }
826 group("compile_sksl_glsl_nosettings_tests") {
John Stiles0ed9f312020-09-16 17:46:37 -0400827 }
John Stilesaeae3a52020-09-25 13:35:58 -0400828 group("compile_sksl_metal_tests") {
829 }
Brian Osman977feec2020-12-22 11:28:59 -0500830 group("compile_sksl_skvm_tests") {
831 }
John Stilesdda1d312020-11-20 16:28:50 -0500832 group("compile_sksl_spirv_tests") {
833 }
Ethan Nicholas762466e2017-06-29 10:03:38 -0400834}
835
Greg Daniel292bbb12021-11-03 16:25:41 -0400836optional("gpu_shared") {
837 enabled = skia_enable_gpu || skia_enable_graphite
838
839 sources = skia_shared_gpu_sources
840}
841
Ben Wagnere27ee6c2019-02-15 14:59:30 -0500842optional("gpu") {
mtklein06c35c02016-09-20 12:28:12 -0700843 enabled = skia_enable_gpu
Ethan Nicholas762466e2017-06-29 10:03:38 -0400844 deps = [
John Stiles7e248712020-09-24 16:42:09 -0400845 ":compile_sksl_glsl_nosettings_tests",
846 ":compile_sksl_glsl_tests",
John Stilesaeae3a52020-09-25 13:35:58 -0400847 ":compile_sksl_metal_tests",
Brian Osman977feec2020-12-22 11:28:59 -0500848 ":compile_sksl_skvm_tests",
John Stilesdda1d312020-11-20 16:28:50 -0500849 ":compile_sksl_spirv_tests",
Ethan Nicholasc18bb512020-07-28 14:46:53 -0400850 ":dehydrate_sksl",
Greg Daniel292bbb12021-11-03 16:25:41 -0400851 ":gpu_shared",
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700852 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400853 ]
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700854 if (skia_generate_workarounds) {
855 deps += [ ":workaround_list" ]
856 }
John Rosascoa9b348f2019-11-08 13:18:15 -0800857 public_defines = []
Chris Dalton3a67b8e2018-05-03 09:30:29 -0600858 public_configs = []
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400859 public_deps = []
mtkleine9fb3d52016-09-20 15:11:46 -0700860
Greg Daniel292bbb12021-11-03 16:25:41 -0400861 sources = skia_gpu_sources + skia_sksl_gpu_sources
Robert Phillips024668c2021-07-01 12:12:52 -0400862 if (!skia_enable_skgpu_v1) {
863 sources -= skia_skgpu_v1_sources
Robert Phillips7b931f82021-06-09 14:04:05 -0400864 }
Robert Phillips3b97aa22021-05-03 11:42:40 -0400865
Mike Klein703cf5a2016-10-13 17:18:04 -0400866 libs = []
Jim Van Verthef820be2020-08-12 10:45:00 -0400867 frameworks = []
mtkleine9fb3d52016-09-20 15:11:46 -0700868
John Rosascoa9b348f2019-11-08 13:18:15 -0800869 if (skia_use_gl) {
870 public_defines += [ "SK_GL" ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -0400871 if (is_android) {
Brian Salomonbe6de9b2021-02-18 16:23:41 -0500872 sources += [
873 "src/gpu/gl/egl/GrGLMakeEGLInterface.cpp",
874 "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp",
875 ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -0400876
877 # this lib is required to link against AHardwareBuffer
878 if (defined(ndk_api) && ndk_api >= 26) {
879 libs += [ "android" ]
880 }
881 } else if (skia_use_egl) {
Brian Salomonbe6de9b2021-02-18 16:23:41 -0500882 sources += [
883 "src/gpu/gl/egl/GrGLMakeEGLInterface.cpp",
884 "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp",
885 ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -0400886 libs += [ "EGL" ]
Kevin Lubick204c3be2020-08-19 14:30:58 -0400887 } else if (skia_use_webgl) {
888 sources += [ "src/gpu/gl/webgl/GrGLMakeNativeInterface_webgl.cpp" ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -0400889 } else if (is_linux && skia_use_x11) {
Brian Salomonbe6de9b2021-02-18 16:23:41 -0500890 sources += [
891 "src/gpu/gl/glx/GrGLMakeGLXInterface.cpp",
892 "src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp",
893 ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -0400894 libs += [ "GL" ]
895 } else if (is_mac) {
896 sources += [ "src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
897 } else if (is_ios) {
898 sources += [ "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
James Clarkeb8c0dab2021-02-09 06:22:41 -0800899 } else if (is_win && !skia_enable_winuwp) {
Brian Salomonf4ba4ec2020-03-19 15:54:28 -0400900 sources += [ "src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp" ]
901 if (target_cpu != "arm64") {
902 libs += [ "OpenGL32.lib" ]
903 }
904 } else {
905 sources += [ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ]
906 }
John Rosascoa9b348f2019-11-08 13:18:15 -0800907 sources += skia_gl_gpu_sources
908 }
Brian Salomonf4ba4ec2020-03-19 15:54:28 -0400909
mtkleine9fb3d52016-09-20 15:11:46 -0700910 if (skia_use_vulkan) {
Greg Danielda16cce2018-08-01 09:23:57 -0400911 public_defines += [ "SK_VULKAN" ]
Greg Danielb16beb92020-04-27 14:26:21 +0000912 if (skia_use_vma) {
913 deps += [ "third_party/vulkanmemoryallocator" ]
914 }
mtkleine9fb3d52016-09-20 15:11:46 -0700915 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700916 if (skia_enable_vulkan_debug_layers) {
917 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
918 }
Craig Stoutcb6b4bd2018-12-13 10:20:07 -0800919 if (is_fuchsia) {
John Rosascoe57ca492019-11-13 14:30:45 -0800920 if (using_fuchsia_sdk) {
Chinmay Garde89820762019-05-06 16:44:06 -0700921 public_deps += [ "$fuchsia_sdk_root/pkg:vulkan" ]
922 } else {
Brian Osman489cf882019-07-09 10:48:28 -0400923 public_deps += [ "//src/graphics/lib/vulkan" ]
Chinmay Garde89820762019-05-06 16:44:06 -0700924 }
Craig Stoutcb6b4bd2018-12-13 10:20:07 -0800925 }
mtkleine9fb3d52016-09-20 15:11:46 -0700926 }
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400927
Brian Salomonf4ba4ec2020-03-19 15:54:28 -0400928 if (is_android && (skia_use_gl || skia_use_vulkan)) {
929 # this lib is required to link against AHardwareBuffer
930 if (defined(ndk_api) && ndk_api >= 26) {
931 libs += [ "android" ]
932 }
933 }
934
Stephen White0d70b712019-07-10 15:51:30 -0400935 if (skia_use_dawn) {
936 public_defines += [ "SK_DAWN" ]
Stephen White985741a2019-07-18 11:43:45 -0400937 sources += skia_dawn_sources
Zhenyao Mo4f17b602020-04-13 15:26:17 -0700938 public_deps += [ "//third_party/externals/dawn/src/dawn:dawn_headers" ]
Stephen Whitefbffb992019-10-17 10:32:40 -0400939 deps += [
Zhenyao Mo4f17b602020-04-13 15:26:17 -0700940 "//third_party/externals/dawn/src/dawn:dawn_proc",
941 "//third_party/externals/dawn/src/dawn:dawncpp",
Stephen White0d70b712019-07-10 15:51:30 -0400942 ]
Brian Salomonc3915f72021-11-15 19:08:02 +0000943 if (dawn_enable_d3d12 || dawn_enable_desktop_gl || dawn_enable_metal ||
944 dawn_enable_opengles || dawn_enable_vulkan) {
945 deps += [ "//third_party/externals/dawn/src/dawn_native" ]
946 }
Stephen White0d70b712019-07-10 15:51:30 -0400947 if (dawn_enable_d3d12) {
948 libs += [
949 "d3d12.lib",
950 "dxgi.lib",
951 "d3dcompiler.lib",
952 ]
953 } else if (dawn_enable_metal) {
Jim Van Verthef820be2020-08-12 10:45:00 -0400954 frameworks += [ "Metal.framework" ]
Stephen White0d70b712019-07-10 15:51:30 -0400955 }
956 }
957
Jim Van Verthb01e12b2020-02-18 14:34:38 -0500958 if (skia_use_direct3d) {
Arman Ugurayb58bab12021-12-09 12:24:51 -0800959 public_defines += [
960 "SK_DIRECT3D",
961 "SK_ENABLE_SPIRV_CROSS",
962 ]
Jim Van Verth1b89eb72020-09-23 16:29:51 -0400963 deps += [
964 "//third_party/d3d12allocator",
965 "//third_party/spirv-cross:spirv_cross",
966 ]
Jim Van Verthb01e12b2020-02-18 14:34:38 -0500967 sources += skia_direct3d_sources
Jim Van Verth03b8ab22020-02-24 11:36:15 -0500968 if (skia_enable_direct3d_debug_layer) {
969 public_defines += [ "SK_ENABLE_D3D_DEBUG_LAYER" ]
970 }
Jim Van Verthb01e12b2020-02-18 14:34:38 -0500971 libs += [
972 "d3d12.lib",
973 "dxgi.lib",
974 "d3dcompiler.lib",
975 ]
976 }
977
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400978 cflags_objcc = []
Greg Daniele5ddff52017-07-05 16:49:36 -0400979 if (skia_use_metal) {
980 public_defines += [ "SK_METAL" ]
981 sources += skia_metal_sources
Jim Van Verth758d81f2021-07-07 12:02:10 -0400982 if (skia_enable_metal_debug_info) {
983 public_defines += [ "SK_ENABLE_MTL_DEBUG_INFO" ]
984 }
Jim Van Verthef820be2020-08-12 10:45:00 -0400985 frameworks += [ "Metal.framework" ]
Jim Van Verthef820be2020-08-12 10:45:00 -0400986 frameworks += [ "Foundation.framework" ]
Jim Van Vertha8d38072021-11-04 09:22:22 -0400987 if (is_ios) {
988 frameworks += [ "UIKit.framework" ]
989 }
Jim Van Verth36b86af2020-08-24 17:16:46 +0000990 cflags_objcc += [ "-fobjc-arc" ]
Greg Daniele5ddff52017-07-05 16:49:36 -0400991 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500992
Kevin Lubickf4def342018-10-04 12:52:50 -0400993 if (is_debug) {
994 public_defines += [ "SK_ENABLE_DUMP_GPU" ]
995 }
mtklein06c35c02016-09-20 12:28:12 -0700996}
997
Leon Scroggins III41169202019-01-29 09:29:57 -0500998optional("gif") {
Hal Canary2dad9902019-11-20 16:01:31 -0500999 enabled = !skia_use_wuffs && skia_use_libgifcodec
Hal Canary1ec9a282019-11-21 10:15:50 -05001000 _libgifcodec_gni_path = "third_party/externals/libgifcodec/libgifcodec.gni"
1001 if ("True" ==
1002 exec_script("gn/checkpath.py",
1003 [ rebase_path(_libgifcodec_gni_path, root_build_dir) ],
1004 "trim string")) {
1005 public_defines = [ "SK_USE_LIBGIFCODEC" ]
1006 public_include_dirs = [
1007 ".",
1008 skia_libgifcodec_path,
1009 ]
1010 include_dirs = public_include_dirs
1011 import(_libgifcodec_gni_path)
1012 sources = rebase_path(libgifcodec_sources + libgifcodec_public,
1013 ".",
1014 skia_libgifcodec_path)
1015 }
Leon Scroggins III41169202019-01-29 09:29:57 -05001016}
1017
Leon Scroggins III04be2b52017-08-17 15:13:20 -04001018optional("heif") {
1019 enabled = skia_use_libheif
1020 public_defines = [ "SK_HAS_HEIF_LIBRARY" ]
1021
Kevin Lubick8ed49ea2021-11-11 12:50:02 -05001022 # This HEIF decoding functionality is a part of the Android Framework.
1023 # https://android.googlesource.com/platform/frameworks/av/+/master/media/libheif/include/HeifDecoderAPI.h
1024 # There isn't a way to compile that library outside of it, so we just link against
1025 # the library. This feature is not supported on other platforms (and we haven't
1026 # yet tried something like https://github.com/strukturag/libheif/tree/master/libheif).
1027 # The dependency for Android is set in gn_to_bp.py.
Leon Scroggins III04be2b52017-08-17 15:13:20 -04001028 deps = []
1029
Mike Kleina01c6b02020-04-01 13:47:34 -05001030 sources = [ "src/codec/SkHeifCodec.cpp" ]
Leon Scroggins III04be2b52017-08-17 15:13:20 -04001031}
1032
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001033optional("jpeg_decode") {
1034 enabled = skia_use_libjpeg_turbo_decode
1035 public_defines = [ "SK_CODEC_DECODES_JPEG" ]
1036
Mike Kleina01c6b02020-04-01 13:47:34 -05001037 deps = [ "//third_party/libjpeg-turbo:libjpeg" ]
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001038 sources = [
1039 "src/codec/SkJpegCodec.cpp",
1040 "src/codec/SkJpegDecoderMgr.cpp",
1041 "src/codec/SkJpegUtility.cpp",
1042 ]
1043}
1044
1045optional("jpeg_encode") {
1046 enabled = skia_use_libjpeg_turbo_encode
1047 public_defines = [ "SK_ENCODE_JPEG" ]
mtklein63213812016-08-24 09:55:56 -07001048
Mike Kleina01c6b02020-04-01 13:47:34 -05001049 deps = [ "//third_party/libjpeg-turbo:libjpeg" ]
1050 public = [ "include/encode/SkJpegEncoder.h" ]
mtklein63213812016-08-24 09:55:56 -07001051 sources = [
mtklein63213812016-08-24 09:55:56 -07001052 "src/images/SkJPEGWriteUtility.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -04001053 "src/images/SkJpegEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -07001054 ]
1055}
1056
Evgenii Kliuchnikov0dae2e82022-02-02 13:45:33 +00001057optional("jpegxl_decode") {
1058 enabled = skia_use_libjxl_decode
1059 public_defines = [ "SK_CODEC_DECODES_JPEGXL" ]
1060
1061 deps = [ "//third_party/libjxl" ]
1062 sources = [ "src/codec/SkJpegxlCodec.cpp" ]
1063}
1064
Leon Scroggins III326b9892020-08-05 16:51:10 -04001065optional("ndk_images") {
1066 enabled = skia_use_ndk_images
1067 public_defines = [ "SK_ENABLE_NDK_IMAGES" ]
1068 sources = [
1069 "src/ports/SkImageEncoder_NDK.cpp",
1070 "src/ports/SkImageGeneratorNDK.cpp",
1071 "src/ports/SkNDKConversions.cpp",
1072 ]
Leon Scroggins IIIf21d6b92020-08-05 10:44:17 -04001073 libs = [ "jnigraphics" ]
1074}
1075
Robert Phillips755e00e2021-09-21 11:59:57 -04001076optional("graphite") {
Jim Van Verthff733b32021-09-24 16:46:36 -04001077 libs = []
1078 frameworks = []
1079
Robert Phillips755e00e2021-09-21 11:59:57 -04001080 enabled = skia_enable_graphite
Greg Daniel292bbb12021-11-03 16:25:41 -04001081 deps = [ ":gpu_shared" ]
Robert Phillips755e00e2021-09-21 11:59:57 -04001082 public_defines = [ "SK_GRAPHITE_ENABLED" ]
1083 public = skia_graphite_public
Greg Danielf0b283e2021-11-04 08:37:59 -04001084 sources = skia_graphite_sources
Jim Van Verthff733b32021-09-24 16:46:36 -04001085 if (skia_use_metal) {
1086 public_defines += [ "SK_METAL" ]
1087 sources += skia_graphite_mtl_sources
1088 if (skia_enable_metal_debug_info) {
1089 public_defines += [ "SK_ENABLE_MTL_DEBUG_INFO" ]
1090 }
1091 frameworks += [ "Metal.framework" ]
1092 frameworks += [ "Foundation.framework" ]
Jim Van Verth09828fb2021-12-16 10:50:01 -05001093 if (is_ios) {
1094 frameworks += [ "UIKit.framework" ]
1095 }
Jim Van Verthff733b32021-09-24 16:46:36 -04001096 }
Robert Phillips1a4080a2021-09-21 09:57:43 -04001097}
1098
mtklein63213812016-08-24 09:55:56 -07001099optional("pdf") {
Hal Canary43fb7a02016-12-30 13:09:03 -05001100 enabled = skia_use_zlib && skia_enable_pdf
1101 public_defines = [ "SK_SUPPORT_PDF" ]
mtklein63213812016-08-24 09:55:56 -07001102
Mike Kleina01c6b02020-04-01 13:47:34 -05001103 deps = [ "//third_party/zlib" ]
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001104 if (skia_use_libjpeg_turbo_decode) {
1105 deps += [ ":jpeg_decode" ]
1106 }
1107 if (skia_use_libjpeg_turbo_encode) {
1108 deps += [ ":jpeg_encode" ]
Hal Canary83e0f1b2018-04-05 16:58:41 -04001109 }
Robert Phillips9b00f1f2020-03-24 12:29:44 -04001110 public = skia_pdf_public
brettwb9447282016-09-01 14:24:39 -07001111 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -07001112 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
Hal Canary2a3093c2019-02-20 11:25:45 -05001113 if (skia_use_icu && skia_use_harfbuzz && skia_pdf_subset_harfbuzz) {
1114 deps += [ "//third_party/harfbuzz" ]
1115 defines = [ "SK_PDF_USE_HARFBUZZ_SUBSET" ]
1116 } else if (skia_use_icu && skia_use_sfntly) {
mtklein63213812016-08-24 09:55:56 -07001117 deps += [ "//third_party/sfntly" ]
Hal Canary32498f02019-02-04 15:36:31 -05001118 defines = [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -07001119 }
1120}
1121
Robert Phillips9b00f1f2020-03-24 12:29:44 -04001122optional("xps") {
1123 enabled = skia_use_xps && is_win
1124 public_defines = [ "SK_SUPPORT_XPS" ]
1125 public = skia_xps_public
1126 sources = skia_xps_sources
1127}
1128
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001129optional("png_decode") {
1130 enabled = skia_use_libpng_decode
1131 public_defines = [ "SK_CODEC_DECODES_PNG" ]
mtklein63213812016-08-24 09:55:56 -07001132
Mike Kleina01c6b02020-04-01 13:47:34 -05001133 deps = [ "//third_party/libpng" ]
mtklein63213812016-08-24 09:55:56 -07001134 sources = [
1135 "src/codec/SkIcoCodec.cpp",
1136 "src/codec/SkPngCodec.cpp",
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001137 ]
1138}
1139
1140optional("png_encode") {
1141 enabled = skia_use_libpng_encode
1142 public_defines = [ "SK_ENCODE_PNG" ]
1143
Mike Kleina01c6b02020-04-01 13:47:34 -05001144 deps = [ "//third_party/libpng" ]
1145 sources = [ "src/images/SkPngEncoder.cpp" ]
mtklein63213812016-08-24 09:55:56 -07001146}
1147
scroggof84ad642016-10-31 09:02:57 -07001148optional("raw") {
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001149 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo_decode && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -07001150 public_defines = [ "SK_CODEC_DECODES_RAW" ]
1151
1152 deps = [
1153 "//third_party/dng_sdk",
1154 "//third_party/libjpeg-turbo:libjpeg",
1155 "//third_party/piex",
1156 ]
1157
1158 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
1159 # Skia.
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001160 configs = [ "gn/portable:add_exceptions" ]
scroggof84ad642016-10-31 09:02:57 -07001161
Mike Kleina01c6b02020-04-01 13:47:34 -05001162 sources = [ "src/codec/SkRawCodec.cpp" ]
scroggof84ad642016-10-31 09:02:57 -07001163}
1164
Mike Klein852a8cb2018-05-15 10:46:58 -04001165import("third_party/skcms/skcms.gni")
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001166skia_source_set("skcms") {
Mike Klein852a8cb2018-05-15 10:46:58 -04001167 cflags = []
1168 if (!is_win || is_clang) {
1169 cflags += [
1170 "-w",
1171 "-std=c11",
1172 ]
1173 }
1174
Mike Kleina01c6b02020-04-01 13:47:34 -05001175 public = [ "include/third_party/skcms/skcms.h" ]
Brian Osmanea236bf2019-04-29 10:28:22 -04001176 include_dirs = [ "include/third_party/skcms" ]
Mike Klein852a8cb2018-05-15 10:46:58 -04001177 sources = rebase_path(skcms_sources, ".", "third_party/skcms")
1178}
1179
mtklein3cc22182016-08-29 13:26:14 -07001180optional("typeface_freetype") {
1181 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -07001182
Mike Kleina01c6b02020-04-01 13:47:34 -05001183 deps = [ "//third_party/freetype2" ]
mtklein3cc22182016-08-29 13:26:14 -07001184 sources = [
1185 "src/ports/SkFontHost_FreeType.cpp",
1186 "src/ports/SkFontHost_FreeType_common.cpp",
Ben Wagner9d5c55c2020-06-27 12:52:14 -04001187 "src/ports/SkFontHost_FreeType_common.h",
mtklein3cc22182016-08-29 13:26:14 -07001188 ]
1189}
1190
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001191optional("webp_decode") {
1192 enabled = skia_use_libwebp_decode
1193 public_defines = [ "SK_CODEC_DECODES_WEBP" ]
mtklein457b42a2016-08-23 13:56:37 -07001194
Mike Kleina01c6b02020-04-01 13:47:34 -05001195 deps = [ "//third_party/libwebp" ]
1196 sources = [ "src/codec/SkWebpCodec.cpp" ]
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001197}
1198
1199optional("webp_encode") {
1200 enabled = skia_use_libwebp_encode
1201 public_defines = [ "SK_ENCODE_WEBP" ]
1202
Mike Kleina01c6b02020-04-01 13:47:34 -05001203 deps = [ "//third_party/libwebp" ]
1204 sources = [ "src/images/SkWebpEncoder.cpp" ]
mtkleineb3c4252016-08-23 07:38:09 -07001205}
1206
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001207optional("wuffs") {
1208 enabled = skia_use_wuffs
Nigel Tao5cfa7192020-08-17 21:14:13 +10001209 public_defines = [ "SK_HAS_WUFFS_LIBRARY" ]
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001210
Mike Kleina01c6b02020-04-01 13:47:34 -05001211 deps = [ "//third_party/wuffs" ]
1212 sources = [ "src/codec/SkWuffsCodec.cpp" ]
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001213}
1214
mtklein63213812016-08-24 09:55:56 -07001215optional("xml") {
1216 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +00001217 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -07001218
Mike Kleina01c6b02020-04-01 13:47:34 -05001219 deps = [ "//third_party/expat" ]
mtklein63213812016-08-24 09:55:56 -07001220 sources = [
Mike Kleinbd41bcc2017-02-09 16:38:15 -05001221 "src/svg/SkSVGCanvas.cpp",
1222 "src/svg/SkSVGDevice.cpp",
mtklein63213812016-08-24 09:55:56 -07001223 "src/xml/SkDOM.cpp",
1224 "src/xml/SkXMLParser.cpp",
1225 "src/xml/SkXMLWriter.cpp",
1226 ]
1227}
1228
Mike Klein613ad382019-06-06 11:42:02 -05001229optional("skvm_jit") {
Mike Klein13ec5442020-08-14 07:36:54 -05001230 enabled = skia_enable_skvm_jit_when_possible
1231 public_defines = [ "SKVM_JIT_WHEN_POSSIBLE" ]
Mike Klein2b54e832020-07-10 12:56:07 -05001232 if (skia_vtune_path != "") {
1233 public_defines += [ "SKVM_JIT_VTUNE" ]
1234 public_include_dirs = [ "$skia_vtune_path/include" ]
1235 libs = [ "$skia_vtune_path/lib64/jitprofiling.lib" ]
1236 }
Mike Klein613ad382019-06-06 11:42:02 -05001237}
1238
Adrienne Walker1df7cd82018-04-18 13:46:25 -07001239if (skia_enable_gpu && skia_generate_workarounds) {
1240 action("workaround_list") {
1241 script = "tools/build_workaround_header.py"
1242
Mike Kleina01c6b02020-04-01 13:47:34 -05001243 inputs = [ "src/gpu/gpu_workaround_list.txt" ]
Adrienne Walker1df7cd82018-04-18 13:46:25 -07001244
Brian Osmaned5181e2021-07-01 13:54:20 -04001245 # GN insists its outputs should go somewhere underneath root_out_dir, so we trick it with a
1246 # path that starts with root_out_dir and then uses ".." to back up into the src dir.
Adrienne Walker1df7cd82018-04-18 13:46:25 -07001247 output_file =
Adrienne Walkerab7181d2018-05-14 14:02:03 -07001248 rebase_path("include/gpu/GrDriverBugWorkaroundsAutogen.h", root_out_dir)
Adrienne Walker1df7cd82018-04-18 13:46:25 -07001249
Mike Kleina01c6b02020-04-01 13:47:34 -05001250 outputs = [ "$root_out_dir/$output_file" ]
Adrienne Walker1df7cd82018-04-18 13:46:25 -07001251 args = [
1252 "--output-file",
1253 "$output_file",
1254 ]
1255
1256 foreach(file, inputs) {
1257 args += [ rebase_path(file, root_build_dir) ]
1258 }
1259 }
1260}
1261
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001262skia_component("skia") {
mtkleinc04ff472016-06-23 10:29:30 -07001263 public_configs = [ ":skia_public" ]
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001264 configs = skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -07001265
Mike Klein607b0a72018-11-07 16:17:34 -05001266 public_deps = [
Ben Wagner32d5cfa2020-06-11 14:41:47 -04001267 ":fontmgr_FontConfigInterface",
1268 ":fontmgr_android",
1269 ":fontmgr_custom_directory",
1270 ":fontmgr_custom_embedded",
1271 ":fontmgr_custom_empty",
1272 ":fontmgr_fontconfig",
1273 ":fontmgr_fuchsia",
1274 ":fontmgr_mac_ct",
1275 ":fontmgr_win",
1276 ":fontmgr_win_gdi",
Ben Wagnere27ee6c2019-02-15 14:59:30 -05001277 ":gpu",
Robert Phillips755e00e2021-09-21 11:59:57 -04001278 ":graphite",
Mike Klein607b0a72018-11-07 16:17:34 -05001279 ":pdf",
1280 ":skcms",
Robert Phillips9b00f1f2020-03-24 12:29:44 -04001281 ":xps",
Mike Klein607b0a72018-11-07 16:17:34 -05001282 ]
1283
mtkleinc04ff472016-06-23 10:29:30 -07001284 deps = [
Leon Scroggins III63cfb362020-04-24 13:00:48 -04001285 ":android_utils",
anmittalb8b3f712016-08-25 04:55:19 -07001286 ":arm64",
1287 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -07001288 ":avx",
anmittalb8b3f712016-08-25 04:55:19 -07001289 ":crc32",
Ben Wagner75626e42020-06-03 13:20:37 -04001290 ":fontmgr_factory",
Leon Scroggins III41169202019-01-29 09:29:57 -05001291 ":gif",
Leon Scroggins III04be2b52017-08-17 15:13:20 -04001292 ":heif",
Mike Klein1b9b7d52018-02-27 10:37:40 -05001293 ":hsw",
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001294 ":jpeg_decode",
1295 ":jpeg_encode",
Evgenii Kliuchnikov0dae2e82022-02-02 13:45:33 +00001296 ":jpegxl_decode",
Leon Scroggins III326b9892020-08-05 16:51:10 -04001297 ":ndk_images",
mtklein9b8583d2016-08-24 17:32:30 -07001298 ":none",
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001299 ":png_decode",
1300 ":png_encode",
scroggof84ad642016-10-31 09:02:57 -07001301 ":raw",
Mike Klein613ad382019-06-06 11:42:02 -05001302 ":skvm_jit",
Mike Kleina9026da2020-06-05 08:57:05 -05001303 ":skx",
mtklein9b8583d2016-08-24 17:32:30 -07001304 ":sse2",
1305 ":sse41",
1306 ":sse42",
1307 ":ssse3",
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -04001308 ":webp_decode",
1309 ":webp_encode",
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -04001310 ":wuffs",
mtklein63213812016-08-24 09:55:56 -07001311 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -07001312 ]
1313
Hal Canaryc25f4e92019-02-26 11:54:25 -05001314 public = skia_core_public
1315 public += skia_utils_public
1316 public += skia_effects_public
1317 public += skia_effects_imagefilter_public
Hal Canaryc25f4e92019-02-26 11:54:25 -05001318
mtkleinc04ff472016-06-23 10:29:30 -07001319 sources = []
brettwb9447282016-09-01 14:24:39 -07001320 sources += skia_core_sources
brettwb9447282016-09-01 14:24:39 -07001321 sources += skia_utils_sources
Mike Klein54378232018-11-08 12:08:05 +00001322 sources += skia_effects_sources
1323 sources += skia_effects_imagefilter_sources
mtkleinc04ff472016-06-23 10:29:30 -07001324 sources += [
Stan Iliev73d8fd92017-08-02 15:36:24 -04001325 "src/android/SkAndroidFrameworkUtils.cpp",
Leon Scroggins III42ee2842018-01-14 14:46:51 -05001326 "src/android/SkAnimatedImage.cpp",
mtklein25c81d42016-07-27 13:55:26 -07001327 "src/codec/SkAndroidCodec.cpp",
Nigel Tao612a65d2018-11-09 10:10:31 +11001328 "src/codec/SkAndroidCodecAdapter.cpp",
Leon Scroggins IIId81fed92017-06-01 13:42:28 -04001329 "src/codec/SkBmpBaseCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -07001330 "src/codec/SkBmpCodec.cpp",
1331 "src/codec/SkBmpMaskCodec.cpp",
1332 "src/codec/SkBmpRLECodec.cpp",
1333 "src/codec/SkBmpStandardCodec.cpp",
1334 "src/codec/SkCodec.cpp",
1335 "src/codec/SkCodecImageGenerator.cpp",
Leon Scroggins III22f673d2018-05-30 15:33:46 -04001336 "src/codec/SkColorTable.cpp",
Leon Scroggins III36f7e322018-08-27 11:55:46 -04001337 "src/codec/SkEncodedInfo.cpp",
mtklein1211e0c2016-07-26 13:55:45 -07001338 "src/codec/SkMaskSwizzler.cpp",
1339 "src/codec/SkMasks.cpp",
Leon Scroggins IIIba458302019-09-24 12:40:11 -04001340 "src/codec/SkParseEncodedOrigin.cpp",
mtklein25c81d42016-07-27 13:55:26 -07001341 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -07001342 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -07001343 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -07001344 "src/codec/SkSwizzler.cpp",
1345 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -07001346 "src/images/SkImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -07001347 "src/ports/SkDiscardableMemory_none.cpp",
Mike Klein54378232018-11-08 12:08:05 +00001348 "src/ports/SkGlobalInitialization_default.cpp",
mtklein1211e0c2016-07-26 13:55:45 -07001349 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -07001350 "src/ports/SkMemory_malloc.cpp",
1351 "src/ports/SkOSFile_stdio.cpp",
1352 "src/sfnt/SkOTTable_name.cpp",
1353 "src/sfnt/SkOTUtils.cpp",
mtkleinc04ff472016-06-23 10:29:30 -07001354 ]
brettwb9447282016-09-01 14:24:39 -07001355
Leon Scroggins1340dbd2020-11-09 14:18:12 -05001356 defines = [ "SK_HAS_ANDROID_CODEC" ]
mtklein7d6fb2c2016-08-25 14:50:44 -07001357 libs = []
1358
Brian Osman946a4cb2021-07-12 17:02:21 -04001359 if (skia_enable_sksl) {
1360 deps += [ ":dehydrate_sksl" ]
1361 sources += skia_sksl_sources
1362 }
1363
mtkleinc04ff472016-06-23 10:29:30 -07001364 if (is_win) {
1365 sources += [
1366 "src/ports/SkDebug_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -07001367 "src/ports/SkImageEncoder_WIC.cpp",
1368 "src/ports/SkImageGeneratorWIC.cpp",
1369 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -07001370 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -07001371 ]
Mike Klein4b167fc2016-10-11 18:13:53 -04001372 libs += [
Mike Klein4b167fc2016-10-11 18:13:53 -04001373 "Ole32.lib",
1374 "OleAut32.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -04001375 ]
James Clarkeb8c0dab2021-02-09 06:22:41 -08001376
1377 if (!skia_enable_winuwp) {
1378 libs += [
1379 "FontSub.lib",
1380 "User32.lib",
1381 "Usp10.lib",
1382 ]
1383 }
mtkleinc04ff472016-06-23 10:29:30 -07001384 } else {
1385 sources += [
mtkleinc04ff472016-06-23 10:29:30 -07001386 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -07001387 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -07001388 ]
Ben Wagnerbe6ae5b2017-08-31 16:45:23 -04001389 libs += [ "dl" ]
mtkleinc04ff472016-06-23 10:29:30 -07001390 }
1391
mtklein7d6fb2c2016-08-25 14:50:44 -07001392 if (is_android) {
Mike Klein1c471872017-01-13 15:27:45 -05001393 deps += [ "//third_party/expat" ]
Mike Kleine459afd2017-03-03 09:21:30 -05001394 if (defined(ndk) && ndk != "") {
Mike Klein1c471872017-01-13 15:27:45 -05001395 deps += [ "//third_party/cpu-features" ]
1396 }
mtklein06c35c02016-09-20 12:28:12 -07001397 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -07001398 libs += [
1399 "EGL",
1400 "GLESv2",
1401 "log",
1402 ]
1403 }
1404
Kevin Lubick217056c2018-09-20 17:39:31 -04001405 if (is_linux || target_cpu == "wasm") {
mtklein06c35c02016-09-20 12:28:12 -07001406 sources += [ "src/ports/SkDebug_stdio.cpp" ]
Hal Canary25375e82018-03-14 15:16:56 -04001407 if (skia_use_egl) {
1408 libs += [ "GLESv2" ]
1409 }
mtkleinc04ff472016-06-23 10:29:30 -07001410 }
1411
1412 if (is_mac) {
Jim Van Verth37c49762021-10-05 14:22:02 -04001413 public += [ "include/ports/SkCFObject.h" ]
mtkleinc04ff472016-06-23 10:29:30 -07001414 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -07001415 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -07001416 "src/ports/SkImageEncoder_CG.cpp",
1417 "src/ports/SkImageGeneratorCG.cpp",
1418 ]
Jim Van Verthef820be2020-08-12 10:45:00 -04001419 frameworks = [
mtklein09e61f72016-08-23 13:35:28 -07001420 "ApplicationServices.framework",
1421 "OpenGL.framework",
1422 ]
mtkleinc04ff472016-06-23 10:29:30 -07001423 }
abarth6fc8ff02016-07-15 15:15:15 -07001424
Mike Klein7d302882016-11-03 14:06:31 -04001425 if (is_ios) {
Jim Van Verth37c49762021-10-05 14:22:02 -04001426 public += [ "include/ports/SkCFObject.h" ]
Mike Klein7d302882016-11-03 14:06:31 -04001427 sources += [
1428 "src/ports/SkDebug_stdio.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001429 "src/ports/SkImageEncoder_CG.cpp",
1430 "src/ports/SkImageGeneratorCG.cpp",
1431 ]
Jim Van Verthef820be2020-08-12 10:45:00 -04001432 frameworks = [
Mike Klein7d302882016-11-03 14:06:31 -04001433 "CoreFoundation.framework",
Mike Klein7d302882016-11-03 14:06:31 -04001434 "ImageIO.framework",
1435 "MobileCoreServices.framework",
1436 ]
1437 }
1438
abarth6fc8ff02016-07-15 15:15:15 -07001439 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -07001440 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -07001441 }
Brian Osmanfb32ddf2019-06-18 10:14:20 -04001442
1443 if (skia_enable_spirv_validation) {
Corentin Wallez89d6e792021-03-08 15:25:34 +01001444 deps += [ "//third_party/externals/spirv-tools:spvtools_val" ]
Brian Osmanfb32ddf2019-06-18 10:14:20 -04001445 defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
1446 }
Nathaniel Nifong0c4fbf12019-06-25 15:48:47 -04001447
1448 if (skia_include_multiframe_procs) {
1449 sources += [ "tools/SkSharingProc.cpp" ]
1450 }
mtkleinc04ff472016-06-23 10:29:30 -07001451}
1452
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001453# DebugCanvas used in experimental/wasm-skp-debugger
1454if (target_cpu == "wasm") {
Ben Wagner25eb5342021-03-22 14:07:15 -04001455 skia_static_library("debugcanvas") {
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001456 public_configs = [ ":skia_public" ]
1457
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001458 sources = [
Nathaniel Nifong0426c382019-06-21 11:09:19 -04001459 "tools/SkSharingProc.cpp",
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001460 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05001461 "tools/debugger/DebugCanvas.cpp",
Nathaniel Nifong20b177a2019-12-12 11:05:10 -05001462 "tools/debugger/DebugLayerManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05001463 "tools/debugger/DrawCommand.cpp",
1464 "tools/debugger/JsonWriteBuffer.cpp",
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001465 ]
Nathaniel Nifongad5f6cd2019-03-05 10:45:40 -05001466 }
1467}
1468
Ben Wagner25eb5342021-03-22 14:07:15 -04001469skia_static_library("pathkit") {
Hal Canaryc25f4e92019-02-26 11:54:25 -05001470 check_includes = false
Kevin Lubickcbcff382018-10-02 09:02:18 -04001471 public_configs = [ ":skia_public" ]
Ben Wagner25eb5342021-03-22 14:07:15 -04001472 configs = skia_library_configs
Kevin Lubickcbcff382018-10-02 09:02:18 -04001473
1474 deps = [
1475 ":arm64",
1476 ":armv7",
1477 ":avx",
1478 ":crc32",
1479 ":hsw",
1480 ":none",
1481 ":sse2",
1482 ":sse41",
1483 ":sse42",
1484 ":ssse3",
1485 ]
1486
Kevin Lubickcbcff382018-10-02 09:02:18 -04001487 sources = []
1488 sources += skia_pathops_sources
Hal Canaryc25f4e92019-02-26 11:54:25 -05001489 sources += skia_pathops_public
Kevin Lubickcbcff382018-10-02 09:02:18 -04001490 sources += [
1491 "src/core/SkAnalyticEdge.cpp",
1492 "src/core/SkArenaAlloc.cpp",
Mike Reedcc88f3a2019-02-06 11:40:27 -05001493 "src/core/SkContourMeasure.cpp",
Kevin Lubickcbcff382018-10-02 09:02:18 -04001494 "src/core/SkCubicMap.cpp",
1495 "src/core/SkEdge.cpp",
1496 "src/core/SkEdgeBuilder.cpp",
1497 "src/core/SkEdgeClipper.cpp",
1498 "src/core/SkGeometry.cpp",
Brian Salomon71fe9452020-03-02 16:59:40 -05001499 "src/core/SkIDChangeListener.cpp",
Kevin Lubickcbcff382018-10-02 09:02:18 -04001500 "src/core/SkLineClipper.cpp",
Hal Canary7823aeb2019-10-30 17:26:45 -04001501 "src/core/SkMalloc.cpp",
Kevin Lubickcbcff382018-10-02 09:02:18 -04001502 "src/core/SkMallocPixelRef.cpp",
1503 "src/core/SkMath.cpp",
1504 "src/core/SkMatrix.cpp",
1505 "src/core/SkOpts.cpp",
1506 "src/core/SkPaint.cpp",
Tyler Dennistonf8b7c1a2021-07-13 13:22:19 -04001507 "src/core/SkPaintPriv.cpp",
Kevin Lubickcbcff382018-10-02 09:02:18 -04001508 "src/core/SkPath.cpp",
Mike Reed06d7c9d2020-08-26 12:56:51 -04001509 "src/core/SkPathBuilder.cpp",
Kevin Lubickcbcff382018-10-02 09:02:18 -04001510 "src/core/SkPathEffect.cpp",
1511 "src/core/SkPathMeasure.cpp",
1512 "src/core/SkPathRef.cpp",
1513 "src/core/SkPoint.cpp",
1514 "src/core/SkRRect.cpp",
Mike Klein45f36b52020-06-08 14:10:29 -05001515 "src/core/SkReadBuffer.cpp",
Kevin Lubickcbcff382018-10-02 09:02:18 -04001516 "src/core/SkRect.cpp",
1517 "src/core/SkSemaphore.cpp",
1518 "src/core/SkStream.cpp",
1519 "src/core/SkString.cpp",
1520 "src/core/SkStringUtils.cpp",
1521 "src/core/SkStroke.cpp",
1522 "src/core/SkStrokeRec.cpp",
1523 "src/core/SkStrokerPriv.cpp",
1524 "src/core/SkThreadID.cpp",
1525 "src/core/SkUtils.cpp",
1526 "src/effects/SkDashPathEffect.cpp",
1527 "src/effects/SkTrimPathEffect.cpp",
1528 "src/ports/SkDebug_stdio.cpp",
1529 "src/ports/SkMemory_malloc.cpp",
1530 "src/utils/SkDashPath.cpp",
1531 "src/utils/SkParse.cpp",
1532 "src/utils/SkParsePath.cpp",
1533 "src/utils/SkUTF.cpp",
1534 ]
1535}
1536
Kevin Lubick1ba9c4d2019-02-22 10:04:06 -05001537group("modules") {
1538 deps = [
Kevin Lubick96634842019-03-05 14:09:24 -05001539 "modules/particles",
Kevin Lubick1ba9c4d2019-02-22 10:04:06 -05001540 "modules/skottie",
Mike Reed63559a52020-06-02 11:34:24 -04001541 "modules/skparagraph",
Kevin Lubick1ba9c4d2019-02-22 10:04:06 -05001542 "modules/skshaper",
Tyler Denniston333b9382021-03-18 13:48:52 -04001543 "modules/svg",
Kevin Lubick1ba9c4d2019-02-22 10:04:06 -05001544 ]
1545}
1546
Julia Lavrova9f6e4632021-09-17 15:19:02 -04001547group("experimental") {
1548 deps = [ "experimental/sktext" ]
1549}
1550
Brian Osmancd28fa62020-07-07 16:01:26 -04001551config("our_vulkan_headers") {
1552 include_dirs = [ "include/third_party/vulkan" ]
1553}
1554
mtkleinc095df52016-08-24 12:23:52 -07001555# Targets guarded by skia_enable_tools may use //third_party freely.
1556if (skia_enable_tools) {
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001557 skia_public_includes = [
Leon Scroggins III63cfb362020-04-24 13:00:48 -04001558 "client_utils/android",
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001559 "include/android",
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001560 "include/c",
1561 "include/codec",
1562 "include/config",
1563 "include/core",
1564 "include/docs",
1565 "include/effects",
1566 "include/encode",
1567 "include/gpu",
1568 "include/pathops",
1569 "include/ports",
1570 "include/svg",
1571 "include/utils",
1572 "include/utils/mac",
Joe Gregorio7ae1b4c2020-12-28 14:37:39 -05001573 "modules/particles/include",
1574 "modules/skottie/include",
Julia Lavrova70258c72020-07-15 11:28:57 -04001575 "modules/skparagraph/include",
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001576 "modules/skshaper/include",
Joe Gregorio7ae1b4c2020-12-28 14:37:39 -05001577 "modules/svg/include",
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001578 ]
1579
Mike Klein308b5ac2016-12-06 16:03:52 -05001580 # Used by gn_to_bp.py to list our public include dirs.
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001581 skia_source_set("public") {
1582 configs = [ ":skia_public" ]
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001583 include_dirs = skia_public_includes
Mike Klein308b5ac2016-12-06 16:03:52 -05001584 }
1585
Mike Kleinc36dedf2016-11-18 09:35:28 -05001586 config("skia.h_config") {
1587 include_dirs = [ "$target_gen_dir" ]
1588 }
1589 action("skia.h") {
1590 public_configs = [ ":skia.h_config" ]
1591 skia_h = "$target_gen_dir/skia.h"
1592 script = "gn/find_headers.py"
Florin Malita6e4d95f2018-05-30 09:27:32 -04001593
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001594 args = [ rebase_path("//bin/gn") ] + [ rebase_path("//") ] +
1595 [ rebase_path(skia_h, root_build_dir) ] +
1596 rebase_path(skia_public_includes)
Mike Kleinc36dedf2016-11-18 09:35:28 -05001597 depfile = "$skia_h.deps"
Mike Kleina01c6b02020-04-01 13:47:34 -05001598 outputs = [ skia_h ]
Mike Kleinc36dedf2016-11-18 09:35:28 -05001599 }
1600
Brian Osmanc9a42472018-05-31 13:17:12 -04001601 if (target_cpu == "x64") {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001602 skia_executable("fiddle") {
Hal Canaryc25f4e92019-02-26 11:54:25 -05001603 check_includes = false
Mike Kleinc36dedf2016-11-18 09:35:28 -05001604 libs = []
Mike Kleinc36dedf2016-11-18 09:35:28 -05001605 sources = [
Mike Kleinc36dedf2016-11-18 09:35:28 -05001606 "tools/fiddle/draw.cpp",
1607 "tools/fiddle/fiddle_main.cpp",
1608 ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -04001609
1610 if (skia_use_egl) {
1611 sources += [ "tools/fiddle/egl_context.cpp" ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -04001612 } else {
1613 sources += [ "tools/fiddle/null_context.cpp" ]
1614 }
Joe Gregorio1e735c02017-04-19 14:05:14 -04001615 testonly = true
Mike Kleinc36dedf2016-11-18 09:35:28 -05001616 deps = [
Joe Gregorio1e735c02017-04-19 14:05:14 -04001617 ":flags",
Robert Phillips57e08282017-11-16 14:59:48 -05001618 ":gpu_tool_utils",
Mike Kleinc36dedf2016-11-18 09:35:28 -05001619 ":skia",
1620 ":skia.h",
Joe Gregorio7ae1b4c2020-12-28 14:37:39 -05001621 "modules/particles",
Florin Malita6e4d95f2018-05-30 09:27:32 -04001622 "modules/skottie",
Joe Gregorio7ae1b4c2020-12-28 14:37:39 -05001623 "modules/skparagraph",
Florin Malitaa1dcaae2019-03-25 17:38:43 -04001624 "modules/skshaper",
Joe Gregorio7ae1b4c2020-12-28 14:37:39 -05001625 "modules/svg",
Mike Kleinc36dedf2016-11-18 09:35:28 -05001626 ]
1627 }
1628 }
1629
John Stiles2cf48632022-01-26 21:36:51 -05001630 config("cpp17") {
Mike Kleine5463e62020-06-11 13:53:53 -05001631 if (is_win) {
John Stiles2cf48632022-01-26 21:36:51 -05001632 cflags_cc = [ "/std:c++17" ]
Mike Kleine5463e62020-06-11 13:53:53 -05001633 } else {
John Stiles2cf48632022-01-26 21:36:51 -05001634 cflags_cc = [ "-std=c++17" ]
Mike Kleine5463e62020-06-11 13:53:53 -05001635 }
1636 }
1637
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001638 skia_source_set("public_headers_warnings_check") {
Mike Kleina01c6b02020-04-01 13:47:34 -05001639 sources = [ "tools/public_headers_warnings_check.cpp" ]
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001640 configs = [
Mike Kleine5463e62020-06-11 13:53:53 -05001641 ":our_vulkan_headers",
John Stiles2cf48632022-01-26 21:36:51 -05001642 ":cpp17",
Mike Kleine5463e62020-06-11 13:53:53 -05001643 ]
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001644 if (defined(skia_header_target_default_configs)) {
1645 configs += skia_header_target_default_configs
1646 }
Brian Osmanc9a42472018-05-31 13:17:12 -04001647 deps = [
1648 ":skia",
1649 ":skia.h",
1650 "modules/skottie",
Florin Malitaa1dcaae2019-03-25 17:38:43 -04001651 "modules/skshaper",
Brian Osmanc9a42472018-05-31 13:17:12 -04001652 ]
Stephen White0d70b712019-07-10 15:51:30 -04001653
1654 if (skia_use_dawn) {
Zhenyao Mo4f17b602020-04-13 15:26:17 -07001655 deps += [ "//third_party/externals/dawn/src/dawn:dawn_headers" ]
Stephen White0d70b712019-07-10 15:51:30 -04001656 }
Mike Kleinc36dedf2016-11-18 09:35:28 -05001657 }
1658
mtkleinc095df52016-08-24 12:23:52 -07001659 template("test_lib") {
1660 config(target_name + "_config") {
mtkleina627b5c2016-09-20 13:36:47 -07001661 if (defined(invoker.public_defines)) {
1662 defines = invoker.public_defines
1663 }
mtklein25c81d42016-07-27 13:55:26 -07001664 }
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001665 skia_source_set(target_name) {
Mike Kleinc0bd9f92019-04-23 12:05:21 -05001666 forward_variables_from(invoker, "*", [])
Hal Canaryc25f4e92019-02-26 11:54:25 -05001667 check_includes = false
mtkleinc095df52016-08-24 12:23:52 -07001668 public_configs = [
1669 ":" + target_name + "_config",
1670 ":skia_private",
1671 ]
1672
1673 if (!defined(deps)) {
1674 deps = []
1675 }
1676 deps += [ ":skia" ]
1677 testonly = true
1678 }
mtklein25c81d42016-07-27 13:55:26 -07001679 }
mtklein25c81d42016-07-27 13:55:26 -07001680
Mike Kleine6682eb2017-01-05 10:54:57 -05001681 template("test_app") {
Jim Van Verth443a9132017-11-28 09:45:26 -05001682 if (is_ios) {
Hal Canary3388c1a2019-09-16 12:53:17 -04001683 ios_app_bundle(target_name) {
Jim Van Verth443a9132017-11-28 09:45:26 -05001684 forward_variables_from(invoker,
1685 "*",
1686 [
1687 "output_name",
1688 "visibility",
1689 "is_shared_library",
1690 ])
Mike Kleine6682eb2017-01-05 10:54:57 -05001691 testonly = true
Hal Canary3388c1a2019-09-16 12:53:17 -04001692 extra_configs = [ ":skia_private" ]
1693 launchscreen = "platform_tools/ios/app/LaunchScreen.storyboard"
1694 data_sources = [ "resources" ]
1695 if ("True" == exec_script("//gn/checkdir.py",
1696 [ rebase_path("skps", root_build_dir) ],
1697 "trim string")) {
1698 data_sources += [ "skps" ]
Jim Van Verth443a9132017-11-28 09:45:26 -05001699 }
Brian Salomon06c9e292021-04-29 14:10:23 -04001700 if ("True" == exec_script("//gn/checkdir.py",
1701 [ rebase_path("mskps", root_build_dir) ],
1702 "trim string")) {
1703 data_sources += [ "mskps" ]
1704 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001705 }
1706 } else {
Jim Van Verth443a9132017-11-28 09:45:26 -05001707 # !is_ios
1708
1709 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001710 skia_shared_library("lib" + target_name) {
1711 output_dir = root_build_dir
Jim Van Verth443a9132017-11-28 09:45:26 -05001712 forward_variables_from(invoker, "*", [ "is_shared_library" ])
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001713 if (!defined(configs)) {
1714 configs = []
1715 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001716 configs += [ ":skia_private" ]
1717 testonly = true
1718 }
1719 } else {
1720 _executable = target_name
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001721 skia_executable(_executable) {
Hal Canaryc25f4e92019-02-26 11:54:25 -05001722 check_includes = false
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001723 output_dir = root_build_dir
Jim Van Verth443a9132017-11-28 09:45:26 -05001724 forward_variables_from(invoker, "*", [ "is_shared_library" ])
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001725 if (!defined(configs)) {
1726 configs = []
1727 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001728 configs += [ ":skia_private" ]
1729 testonly = true
1730 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001731 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001732 if (is_android && skia_android_serial != "" && defined(_executable)) {
1733 action("push_" + target_name) {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04001734 output_dir = root_build_dir
Jim Van Verth443a9132017-11-28 09:45:26 -05001735 script = "gn/push_to_android.py"
Mike Kleina01c6b02020-04-01 13:47:34 -05001736 deps = [ ":" + _executable ]
Jim Van Verth443a9132017-11-28 09:45:26 -05001737 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
Mike Kleina01c6b02020-04-01 13:47:34 -05001738 outputs = [ _stamp ]
Jim Van Verth443a9132017-11-28 09:45:26 -05001739 args = [
1740 rebase_path("$root_build_dir/$_executable"),
1741 skia_android_serial,
1742 rebase_path(_stamp),
1743 ]
1744 testonly = true
1745 }
Mike Klein7d921032017-01-05 12:20:41 -05001746 }
1747 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001748 }
1749
mtkleinc095df52016-08-24 12:23:52 -07001750 test_lib("gpu_tool_utils") {
Brian Osmanc9a42472018-05-31 13:17:12 -04001751 public_defines = []
mtkleind68f9b02016-09-23 13:18:41 -07001752
Mike Klein9e25bb92019-04-29 09:46:36 -05001753 # Bots and even devs may not have Vulkan headers, so put
1754 # include/third_party/vulkan on our path so they're always available.
1755 all_dependent_configs = [ ":our_vulkan_headers" ]
1756
Mike Klein333fb452019-04-24 08:48:11 -05001757 defines = []
1758 if (skia_enable_discrete_gpu) {
1759 defines += [ "SK_ENABLE_DISCRETE_GPU" ]
1760 }
1761
Brian Osmanc9a42472018-05-31 13:17:12 -04001762 deps = []
Greg Danielda16cce2018-08-01 09:23:57 -04001763 public_deps = []
Brian Osmanc9a42472018-05-31 13:17:12 -04001764 sources = [
Brian Salomon72c7b982020-10-06 10:07:38 -04001765 "tools/gpu/BackendSurfaceFactory.cpp",
1766 "tools/gpu/BackendSurfaceFactory.h",
Brian Salomon63a0a752020-06-26 13:32:09 -04001767 "tools/gpu/BackendTextureImageFactory.cpp",
1768 "tools/gpu/BackendTextureImageFactory.h",
Robert Phillips00f78de2020-07-01 16:09:43 -04001769 "tools/gpu/FlushFinishTracker.cpp",
1770 "tools/gpu/FlushFinishTracker.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04001771 "tools/gpu/GrContextFactory.cpp",
1772 "tools/gpu/GrTest.cpp",
Brian Salomonf9b00422020-10-08 16:00:14 -04001773 "tools/gpu/ManagedBackendTexture.cpp",
1774 "tools/gpu/ManagedBackendTexture.h",
Brian Salomon00a5eb82018-07-11 15:32:05 -04001775 "tools/gpu/MemoryCache.cpp",
1776 "tools/gpu/MemoryCache.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04001777 "tools/gpu/ProxyUtils.cpp",
1778 "tools/gpu/TestContext.cpp",
Brian Salomone21af502019-11-22 16:56:36 -05001779 "tools/gpu/TestOps.cpp",
1780 "tools/gpu/TestOps.h",
Michael Ludwigd9958f82019-03-21 13:08:36 -04001781 "tools/gpu/YUVUtils.cpp",
1782 "tools/gpu/YUVUtils.h",
Mike Kleina01c6b02020-04-01 13:47:34 -05001783 "tools/gpu/gl/GLTestContext.cpp", # See comment below about
1784 # GrContextFactory workaround.
Brian Osmanc9a42472018-05-31 13:17:12 -04001785 "tools/gpu/mock/MockTestContext.cpp",
1786 ]
Brian Salomon1171d312020-03-19 08:47:44 -04001787
1788 libs = []
Jim Van Verthef820be2020-08-12 10:45:00 -04001789 frameworks = []
Brian Salomon1171d312020-03-19 08:47:44 -04001790
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04001791 if (skia_use_gl) {
Herb Derby64aa5132020-06-03 12:14:55 -04001792 sources +=
1793 [ "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp" ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04001794 if (is_ios) {
1795 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
Jim Van Verthef820be2020-08-12 10:45:00 -04001796 frameworks += [ "OpenGLES.framework" ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04001797 } else if (is_mac) {
1798 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
Brian Osman0c757272018-12-10 10:27:26 -05001799 }
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04001800 if (skia_use_angle) {
1801 deps += [ "//third_party/angle2" ]
1802 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
1803 }
Brian Salomon1171d312020-03-19 08:47:44 -04001804 }
1805
Kevin Lubick49df61f2022-02-03 10:54:07 -05001806 if (skia_use_gl && target_cpu != "wasm") {
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04001807 if (is_android || skia_use_egl) {
1808 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
1809 libs += [ "EGL" ]
1810 } else if (is_linux) {
1811 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
1812 libs += [
1813 "GLU",
1814 "GL",
1815 "X11",
1816 ]
1817 } else if (is_win) {
1818 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
1819 libs += [ "Gdi32.lib" ]
1820 if (target_cpu != "arm64") {
1821 libs += [ "OpenGL32.lib" ]
1822 }
1823 }
Brian Osmanc9a42472018-05-31 13:17:12 -04001824 }
Greg Daniel54200e42018-12-11 17:03:39 -05001825
Brian Osmanc9a42472018-05-31 13:17:12 -04001826 if (skia_use_vulkan) {
Robert Phillipsae413d82020-06-10 11:04:51 -04001827 sources += [ "tools/gpu/vk/VkTestContext.h" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001828 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
Robert Phillips0d6ce7c2020-06-11 08:51:50 -04001829 sources += [ "tools/gpu/vk/VkTestHelper.h" ]
1830 sources += [ "tools/gpu/vk/VkTestHelper.cpp" ]
Robert Phillipsae413d82020-06-10 11:04:51 -04001831 sources += [ "tools/gpu/vk/VkTestUtils.h" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001832 sources += [ "tools/gpu/vk/VkTestUtils.cpp" ]
Robert Phillipsae413d82020-06-10 11:04:51 -04001833 sources += [ "tools/gpu/vk/VkYcbcrSamplerHelper.h" ]
1834 sources += [ "tools/gpu/vk/VkYcbcrSamplerHelper.cpp" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001835 }
1836 if (skia_use_metal) {
1837 sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
mtkleina627b5c2016-09-20 13:36:47 -07001838 }
Jim Van Verthb01e12b2020-02-18 14:34:38 -05001839 if (skia_use_direct3d) {
1840 sources += [ "tools/gpu/d3d/D3DTestContext.cpp" ]
Jim Van Verth03b8ab22020-02-24 11:36:15 -05001841 sources += [ "tools/gpu/d3d/D3DTestUtils.cpp" ]
Jim Van Verthb01e12b2020-02-18 14:34:38 -05001842 }
Stephen White985741a2019-07-18 11:43:45 -04001843 if (skia_use_dawn) {
Zhenyao Mo4f17b602020-04-13 15:26:17 -07001844 public_deps += [ "//third_party/externals/dawn/src/dawn:dawn_headers" ]
Stephen White985741a2019-07-18 11:43:45 -04001845 sources += [ "tools/gpu/dawn/DawnTestContext.cpp" ]
Stephen White3ae5b292020-06-01 15:45:56 -04001846 if (is_clang) {
1847 cflags_cc = [ "-Wno-microsoft-cast" ]
1848 }
Stephen White985741a2019-07-18 11:43:45 -04001849 }
Robert Phillips72354b02021-07-06 13:43:56 -04001850 if (!skia_enable_skgpu_v1) {
1851 sources -= [ "tools/gpu/GrTest.cpp" ]
1852 sources -= [ "tools/gpu/TestOps.cpp" ]
1853 sources -= [ "tools/gpu/TestOps.h" ]
1854 }
Robert Phillipsd034db72021-09-29 14:29:32 -04001855 if (skia_enable_graphite) {
Robert Phillips091694f2021-09-30 11:41:16 -04001856 sources += [ "tools/graphite/ContextFactory.h" ]
1857 sources += [ "tools/graphite/ContextFactory.cpp" ]
Robert Phillipsd034db72021-09-29 14:29:32 -04001858 sources += [ "tools/graphite/GraphiteTestContext.h" ]
1859 sources += [ "tools/graphite/GraphiteTestContext.cpp" ]
1860 if (skia_use_metal) {
1861 sources += [ "tools/graphite/mtl/GraphiteMtlTestContext.h" ]
1862 sources += [ "tools/graphite/mtl/MtlTestContext.mm" ]
1863 }
1864 }
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04001865
1866 if (is_fuchsia && using_fuchsia_sdk) {
1867 libs +=
1868 [ "${fuchsia_sdk_path}/arch/${target_cpu}/sysroot/lib/libzircon.so" ]
1869 }
John Rosasco24cbdab2019-09-25 14:14:35 -07001870 } # test_lib("gpu_tool_utils")
mtklein25c81d42016-07-27 13:55:26 -07001871
mtkleinc095df52016-08-24 12:23:52 -07001872 test_lib("flags") {
Mike Kleina01c6b02020-04-01 13:47:34 -05001873 sources = [ "tools/flags/CommandLineFlags.cpp" ]
mtklein046cb562016-09-16 10:23:12 -07001874 }
Mike Kleinc6142d82019-03-25 10:54:59 -05001875
1876 test_lib("common_flags_config") {
Mike Kleina01c6b02020-04-01 13:47:34 -05001877 sources = [ "tools/flags/CommonFlagsConfig.cpp" ]
1878 deps = [ ":flags" ]
1879 public_deps = [ ":gpu_tool_utils" ]
mtkleinc095df52016-08-24 12:23:52 -07001880 }
Mike Kleinc6142d82019-03-25 10:54:59 -05001881 test_lib("common_flags_gpu") {
Mike Kleina01c6b02020-04-01 13:47:34 -05001882 sources = [ "tools/flags/CommonFlagsGpu.cpp" ]
1883 deps = [ ":flags" ]
1884 public_deps = [ ":gpu_tool_utils" ]
Mike Kleinc6142d82019-03-25 10:54:59 -05001885 }
1886 test_lib("common_flags_images") {
Mike Kleina01c6b02020-04-01 13:47:34 -05001887 sources = [ "tools/flags/CommonFlagsImages.cpp" ]
1888 deps = [ ":flags" ]
Mike Kleinc6142d82019-03-25 10:54:59 -05001889 }
Kevin Lubick237dd2d2021-10-14 08:24:22 -04001890 test_lib("common_flags_fontmgr") {
1891 sources = [ "tools/flags/CommonFlagsFontMgr.cpp" ]
1892 deps = [ ":flags" ]
1893 }
Mike Kleinc6142d82019-03-25 10:54:59 -05001894 test_lib("common_flags_aa") {
Mike Kleina01c6b02020-04-01 13:47:34 -05001895 sources = [ "tools/flags/CommonFlagsAA.cpp" ]
1896 deps = [ ":flags" ]
Mike Kleinc6142d82019-03-25 10:54:59 -05001897 }
mtklein25c81d42016-07-27 13:55:26 -07001898
Mike Klein499f0ac2019-03-25 13:00:12 -05001899 test_lib("trace") {
Mike Kleina01c6b02020-04-01 13:47:34 -05001900 deps = [ ":flags" ]
Mike Klein499f0ac2019-03-25 13:00:12 -05001901 sources = [
1902 "tools/trace/ChromeTracingTracer.cpp",
1903 "tools/trace/ChromeTracingTracer.h",
1904 "tools/trace/EventTracingPriv.cpp",
1905 "tools/trace/EventTracingPriv.h",
1906 "tools/trace/SkDebugfTracer.cpp",
1907 "tools/trace/SkDebugfTracer.h",
1908 ]
1909 }
1910
mtkleinc095df52016-08-24 12:23:52 -07001911 test_lib("tool_utils") {
mtkleinc095df52016-08-24 12:23:52 -07001912 sources = [
mtkleinb37c0342016-09-09 11:07:45 -07001913 "tools/AndroidSkDebugToStdOut.cpp",
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001914 "tools/AutoreleasePool.h",
Robert Phillips96601082018-05-29 16:13:26 -04001915 "tools/DDLPromiseImageHelper.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001916 "tools/DDLPromiseImageHelper.h",
Robert Phillips96601082018-05-29 16:13:26 -04001917 "tools/DDLTileHelper.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001918 "tools/DDLTileHelper.h",
mtklein0590fa52016-09-01 07:06:54 -07001919 "tools/LsanSuppressions.cpp",
Brian Salomon06c9e292021-04-29 14:10:23 -04001920 "tools/MSKPPlayer.cpp",
1921 "tools/MSKPPlayer.h",
mtkleinc095df52016-08-24 12:23:52 -07001922 "tools/ProcStats.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001923 "tools/ProcStats.h",
mtkleinc095df52016-08-24 12:23:52 -07001924 "tools/Resources.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001925 "tools/Resources.h",
John Stilesb5ac66c2021-07-14 14:04:49 -04001926 "tools/RuntimeBlendUtils.cpp",
1927 "tools/RuntimeBlendUtils.h",
Hal Canarye574f1e2019-07-15 14:01:37 -04001928 "tools/SkMetaData.cpp",
1929 "tools/SkMetaData.h",
Nathaniel Nifong0426c382019-06-21 11:09:19 -04001930 "tools/SkSharingProc.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001931 "tools/SkSharingProc.h",
1932 "tools/Stats.h",
Mike Kleinea3f0142019-03-20 11:12:10 -05001933 "tools/ToolUtils.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001934 "tools/ToolUtils.h",
mtkleinc095df52016-08-24 12:23:52 -07001935 "tools/UrlDataManager.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001936 "tools/UrlDataManager.h",
Mike Klein8f4e2242019-03-20 11:59:00 -05001937 "tools/debugger/DebugCanvas.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001938 "tools/debugger/DebugCanvas.h",
Nathaniel Nifong20b177a2019-12-12 11:05:10 -05001939 "tools/debugger/DebugLayerManager.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001940 "tools/debugger/DebugLayerManager.h",
Mike Klein8f4e2242019-03-20 11:59:00 -05001941 "tools/debugger/DrawCommand.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001942 "tools/debugger/DrawCommand.h",
Mike Klein8f4e2242019-03-20 11:59:00 -05001943 "tools/debugger/JsonWriteBuffer.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001944 "tools/debugger/JsonWriteBuffer.h",
Mike Klein0cffcbf92019-03-20 11:08:46 -05001945 "tools/fonts/RandomScalerContext.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001946 "tools/fonts/RandomScalerContext.h",
Mike Klein0cffcbf92019-03-20 11:08:46 -05001947 "tools/fonts/TestEmptyTypeface.h",
1948 "tools/fonts/TestFontMgr.cpp",
1949 "tools/fonts/TestFontMgr.h",
1950 "tools/fonts/TestSVGTypeface.cpp",
1951 "tools/fonts/TestSVGTypeface.h",
1952 "tools/fonts/TestTypeface.cpp",
1953 "tools/fonts/TestTypeface.h",
Mike Kleinea3f0142019-03-20 11:12:10 -05001954 "tools/fonts/ToolUtilsFont.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001955 "tools/random_parse_path.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001956 "tools/random_parse_path.h",
Hal Canary41248072019-07-11 16:32:53 -04001957 "tools/timer/TimeUtils.h",
mtkleinc095df52016-08-24 12:23:52 -07001958 "tools/timer/Timer.cpp",
John Stilesaffae532020-07-13 18:06:53 -04001959 "tools/timer/Timer.h",
mtkleinc095df52016-08-24 12:23:52 -07001960 ]
Chris Dalton2b598902020-03-25 10:50:35 -06001961 if (target_cpu != "wasm") {
1962 sources += [ "tools/CrashHandler.cpp" ]
1963 }
Mike Kleinadacaef2017-02-06 09:26:14 -05001964 libs = []
Jim Van Verthef820be2020-08-12 10:45:00 -04001965 frameworks = []
Mike Kleinadacaef2017-02-06 09:26:14 -05001966 if (is_ios) {
1967 sources += [ "tools/ios_utils.m" ]
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001968 sources += [ "tools/ios_utils.h" ]
1969 if (skia_use_metal) {
1970 sources += [ "tools/AutoreleasePool.mm" ]
1971 }
Jim Van Verthef820be2020-08-12 10:45:00 -04001972 frameworks += [ "Foundation.framework" ]
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001973 } else if (is_mac) {
1974 if (skia_use_metal) {
1975 sources += [ "tools/AutoreleasePool.mm" ]
Jim Van Verthef820be2020-08-12 10:45:00 -04001976 frameworks += [ "Foundation.framework" ]
Jim Van Verth8a9a3712019-05-31 10:49:12 -04001977 }
James Clarkeb8c0dab2021-02-09 06:22:41 -08001978 } else if (is_win && !skia_enable_winuwp) {
Mike Kleinbf15b662019-04-15 11:32:16 -05001979 libs += [ "DbgHelp.lib" ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001980 }
Mike Kleinbf15b662019-04-15 11:32:16 -05001981
Hal Canaryfd9bcab2018-04-24 11:47:23 -04001982 defines = []
1983 if (skia_tools_require_resources) {
1984 defines += [ "SK_TOOLS_REQUIRE_RESOURCES" ]
1985 }
mtkleinc095df52016-08-24 12:23:52 -07001986 deps = [
1987 ":flags",
Florin Malitab3418102020-10-15 18:10:29 -04001988 "modules/svg",
Mike Kleine4ad58a2019-03-26 09:05:52 -05001989 ]
Mike Kleina01c6b02020-04-01 13:47:34 -05001990 public_deps = [ ":gpu_tool_utils" ]
mtkleinc095df52016-08-24 12:23:52 -07001991 }
mtklein25c81d42016-07-27 13:55:26 -07001992
Mike Kleine11e5c12019-04-24 12:46:06 -05001993 test_lib("etc1") {
Mike Kleina01c6b02020-04-01 13:47:34 -05001994 sources = [ "third_party/etc1/etc1.cpp" ]
Mike Kleine11e5c12019-04-24 12:46:06 -05001995 }
1996
Mike Klein6e744122016-10-27 12:21:40 -04001997 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -07001998 test_lib("gm") {
mtkleinc095df52016-08-24 12:23:52 -07001999 sources = gm_sources
John Rosasco24cbdab2019-09-25 14:14:35 -07002000 if (skia_use_gl) {
2001 sources += gl_gm_sources
2002 }
Robert Phillips024668c2021-07-01 12:12:52 -04002003 if (!skia_enable_skgpu_v1) {
2004 sources -= skgpu_v1_gm_sources
Robert Phillips3674f582021-06-16 12:05:54 -04002005 }
mtkleinc095df52016-08-24 12:23:52 -07002006 deps = [
Mike Kleine11e5c12019-04-24 12:46:06 -05002007 ":etc1",
scroggo19b91532016-10-24 09:03:26 -07002008 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07002009 ":skia",
2010 ":tool_utils",
Brian Osman84d884a2021-01-29 16:35:45 -05002011 "modules/particles",
Mike Reed2f0edd52018-05-31 14:22:30 -04002012 "modules/skottie",
Florin Malita26870722018-09-20 14:35:30 -04002013 "modules/skottie:gm",
Mike Reed63559a52020-06-02 11:34:24 -04002014 "modules/skparagraph",
2015 "modules/skparagraph:gm",
Brian Osmanc725e8f2019-04-10 14:08:44 -04002016 "modules/skshaper",
mtkleinc095df52016-08-24 12:23:52 -07002017 ]
Mike Kleinc4abade2019-08-09 10:11:35 -04002018 if (is_skia_dev_build) {
2019 sources += [ "gm/fiddle.cpp" ]
2020 deps += [ ":skia.h" ]
2021 }
Mike Kleina01c6b02020-04-01 13:47:34 -05002022 public_deps = [ ":gpu_tool_utils" ]
Mike Reed7bf160e2019-05-17 16:50:51 -04002023
2024 if (skia_use_ffmpeg) {
Florin Malita123e3b82020-04-24 11:10:27 -04002025 deps += [ "experimental/ffmpeg:video_decoder" ]
Mike Reed7bf160e2019-05-17 16:50:51 -04002026 sources += [ "gm/video_decoder.cpp" ]
2027 }
mtkleinc095df52016-08-24 12:23:52 -07002028 }
mtklein25c81d42016-07-27 13:55:26 -07002029
Ben Wagnerbded42a2021-02-17 22:14:34 -05002030 test_lib("test") {
2031 sources = [
2032 "tests/Test.cpp",
2033 "tests/Test.h",
2034 "tests/TestUtils.cpp",
2035 "tests/TestUtils.h",
2036 ]
2037 deps = [
2038 ":flags",
2039 ":skia",
2040 ":tool_utils",
2041 ]
2042 public_deps = [
2043 ":gpu_tool_utils", # Test.h #includes headers from this target.
2044 ]
2045 }
2046
Mike Klein6e744122016-10-27 12:21:40 -04002047 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07002048 test_lib("tests") {
Mike Klein6e744122016-10-27 12:21:40 -04002049 sources = tests_sources + pathops_tests_sources
Chinmay Garde3ee25e92020-09-01 15:10:14 -07002050 frameworks = []
Robert Phillips0c6daf02019-05-16 12:43:11 -04002051 if (skia_use_metal) {
2052 sources += metal_tests_sources
Jim Van Verth36b86af2020-08-24 17:16:46 +00002053 cflags_objcc = [ "-fobjc-arc" ]
Chinmay Garde3ee25e92020-09-01 15:10:14 -07002054 frameworks += [ "MetalKit.framework" ]
Robert Phillips0c6daf02019-05-16 12:43:11 -04002055 }
John Rosasco24cbdab2019-09-25 14:14:35 -07002056 if (skia_use_gl) {
2057 sources += gl_tests_sources
2058 }
Robert Phillips30627592021-10-11 11:28:21 -04002059 if (skia_enable_graphite) {
2060 sources += graphite_tests_sources
Greg Daniel5e0950e2021-11-30 12:02:30 -05002061 if (skia_use_metal) {
2062 sources += graphite_metal_tests_sources
2063 }
Robert Phillips30627592021-10-11 11:28:21 -04002064 }
Robert Phillips024668c2021-07-01 12:12:52 -04002065 if (!skia_enable_skgpu_v1) {
2066 sources -= skgpu_v1_tests_sources
Robert Phillips1ca0da42021-06-14 15:27:19 -04002067 }
mtkleinc095df52016-08-24 12:23:52 -07002068 deps = [
2069 ":flags",
Ben Wagnere75021e2021-02-17 22:18:34 -05002070 ":fontmgr_android_tests",
2071 ":fontmgr_fontconfig_tests",
Ben Wagnera3e5e552021-02-22 15:37:33 +00002072 ":fontmgr_mac_ct_tests",
mtkleinc095df52016-08-24 12:23:52 -07002073 ":skia",
Ben Wagnerbded42a2021-02-17 22:14:34 -05002074 ":test",
mtkleinc095df52016-08-24 12:23:52 -07002075 ":tool_utils",
Florin Malita26ae40f2020-06-08 12:03:48 -04002076 "experimental/skrive:tests",
Julia Lavrova9f6e4632021-09-17 15:19:02 -04002077 "experimental/sktext:tests",
Florin Malita94d4d3e2018-06-18 13:10:51 -04002078 "modules/skottie:tests",
Julia Lavrovaa3552c52019-05-30 16:12:56 -04002079 "modules/skparagraph:tests",
Brian Osmanccb87522018-06-01 19:20:00 +00002080 "modules/sksg:tests",
Brian Osmanc725e8f2019-04-10 14:08:44 -04002081 "modules/skshaper",
Florin Malitadec78022020-12-17 16:36:54 -05002082 "modules/svg:tests",
mtkleinc095df52016-08-24 12:23:52 -07002083 "//third_party/libpng",
Leon Scroggins III194580d2019-02-22 12:32:16 -05002084 "//third_party/libwebp",
mtkleinc095df52016-08-24 12:23:52 -07002085 "//third_party/zlib",
2086 ]
2087 }
mtklein2f3416d2016-08-02 16:02:05 -07002088
Mike Klein6e744122016-10-27 12:21:40 -04002089 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07002090 test_lib("bench") {
mtkleinc095df52016-08-24 12:23:52 -07002091 sources = bench_sources
Chris Dalton2fceb212021-10-19 13:04:41 -06002092 if (skia_enable_graphite) {
2093 sources += graphite_bench_sources
2094 }
Robert Phillips04f22ea2021-07-22 15:11:03 -04002095 if (!skia_enable_skgpu_v1) {
2096 sources -= skgpu_v1_bench_sources
2097 }
mtkleinc095df52016-08-24 12:23:52 -07002098 deps = [
2099 ":flags",
2100 ":gm",
2101 ":gpu_tool_utils",
2102 ":skia",
2103 ":tool_utils",
Julia Lavrovaa3552c52019-05-30 16:12:56 -04002104 "modules/skparagraph:bench",
Mike Reedd62d4062019-06-12 10:20:44 -04002105 "modules/skshaper",
mtkleinc095df52016-08-24 12:23:52 -07002106 ]
2107 }
mtklein2b6870c2016-07-28 14:17:33 -07002108
Florin Malitabfe876a2018-09-02 12:33:59 -04002109 if (is_linux || is_mac) {
Florin Malita8b868112021-06-09 13:26:27 -04002110 if (skia_enable_skottie) {
2111 test_app("skottie_tool") {
2112 deps = [ "modules/skottie:tool" ]
2113 }
Florin Malita79725d32018-06-05 16:16:57 -04002114 }
Florin Malitab3418102020-10-15 18:10:29 -04002115 test_app("svg_tool") {
2116 deps = [ "modules/svg:tool" ]
2117 }
Florin Malita79725d32018-06-05 16:16:57 -04002118 }
2119
Chris Dalton2b598902020-03-25 10:50:35 -06002120 import("gn/samples.gni")
2121 test_lib("samples") {
2122 sources = samples_sources
Robert Phillips024668c2021-07-01 12:12:52 -04002123 if (!skia_enable_skgpu_v1) {
2124 sources -= skgpu_v1_samples_sources
Robert Phillips3674f582021-06-16 12:05:54 -04002125 }
Mike Kleina01c6b02020-04-01 13:47:34 -05002126 public_deps = [ ":tool_utils" ]
Chris Dalton2b598902020-03-25 10:50:35 -06002127 deps = [
Chris Dalton2b598902020-03-25 10:50:35 -06002128 ":flags",
2129 ":gpu_tool_utils",
2130 ":xml",
Julia Lavrova9f6e4632021-09-17 15:19:02 -04002131 "experimental/sktext:samples",
Jorge Betancourtb8621312020-09-10 15:16:35 -04002132 "modules/audioplayer",
Chris Dalton2b598902020-03-25 10:50:35 -06002133 "modules/skparagraph:samples",
2134 "modules/skshaper",
Florin Malitab3418102020-10-15 18:10:29 -04002135 "modules/svg",
Tyler Denniston189ecd42020-10-22 15:40:49 -04002136 "//third_party/imgui",
Chris Dalton2b598902020-03-25 10:50:35 -06002137 ]
Chris Dalton2b598902020-03-25 10:50:35 -06002138 }
Kevin Lubick00398742020-10-08 10:05:07 -04002139 test_lib("hash_and_encode") {
2140 sources = [
2141 "tools/HashAndEncode.cpp",
2142 "tools/HashAndEncode.h",
2143 ]
2144 deps = [
2145 ":flags",
2146 ":skia",
2147 "//third_party/libpng",
2148 ]
2149 }
Chris Dalton2b598902020-03-25 10:50:35 -06002150 if (target_cpu != "wasm") {
Nigel Tao3ab9b1f2020-05-28 13:29:13 +10002151 test_app("convert-to-nia") {
2152 sources = [ "tools/convert-to-nia.cpp" ]
2153 deps = [ ":skia" ]
2154 }
Mike Klein7af351a2018-07-27 09:54:43 -04002155 test_app("imgcvt") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002156 sources = [ "tools/imgcvt.cpp" ]
Mike Klein7af351a2018-07-27 09:54:43 -04002157 deps = [
2158 ":skcms",
2159 ":skia",
2160 ]
2161 }
Mike Klein735c7ba2019-03-25 12:57:58 -05002162 test_app("fm") {
2163 sources = [
Mike Kleinfee00792019-11-21 16:18:47 -06002164 "dm/DMGpuTestProcs.cpp", # blech
Mike Klein735c7ba2019-03-25 12:57:58 -05002165 "tools/fm/fm.cpp",
2166 ]
2167 deps = [
2168 ":common_flags_aa",
Kevin Lubick237dd2d2021-10-14 08:24:22 -04002169 ":common_flags_fontmgr",
Mike Klein735c7ba2019-03-25 12:57:58 -05002170 ":common_flags_gpu",
2171 ":flags",
2172 ":gm",
2173 ":gpu_tool_utils",
2174 ":hash_and_encode",
2175 ":skia",
Mike Kleinfee00792019-11-21 16:18:47 -06002176 ":tests",
Mike Klein735c7ba2019-03-25 12:57:58 -05002177 ":tool_utils",
2178 ":trace",
Mike Klein22924262019-04-02 14:14:56 -04002179 "modules/skottie",
2180 "modules/skottie:utils",
Florin Malitab3418102020-10-15 18:10:29 -04002181 "modules/svg",
Mike Klein735c7ba2019-03-25 12:57:58 -05002182 ]
2183 }
Kevin Lubickebf648e2017-09-21 13:45:16 -04002184 test_app("dm") {
2185 sources = [
2186 "dm/DM.cpp",
Hal Canaryb6c5e5b2017-10-09 16:13:02 -04002187 "dm/DMGpuTestProcs.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04002188 "dm/DMJsonWriter.cpp",
John Stiles65ec1982021-07-20 12:53:54 -04002189 "dm/DMJsonWriter.h",
Kevin Lubickebf648e2017-09-21 13:45:16 -04002190 "dm/DMSrcSink.cpp",
John Stiles65ec1982021-07-20 12:53:54 -04002191 "dm/DMSrcSink.h",
Kevin Lubickebf648e2017-09-21 13:45:16 -04002192 ]
Kevin Lubickebf648e2017-09-21 13:45:16 -04002193 deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05002194 ":common_flags_aa",
2195 ":common_flags_config",
Kevin Lubick237dd2d2021-10-14 08:24:22 -04002196 ":common_flags_fontmgr",
Mike Kleinc6142d82019-03-25 10:54:59 -05002197 ":common_flags_gpu",
2198 ":common_flags_images",
Kevin Lubickebf648e2017-09-21 13:45:16 -04002199 ":flags",
2200 ":gm",
2201 ":gpu_tool_utils",
Mike Klein735c7ba2019-03-25 12:57:58 -05002202 ":hash_and_encode",
Kevin Lubickebf648e2017-09-21 13:45:16 -04002203 ":skia",
2204 ":tests",
2205 ":tool_utils",
Mike Klein499f0ac2019-03-25 13:00:12 -05002206 ":trace",
Florin Malita02616ea2020-06-25 13:33:17 -04002207 "experimental/skrive",
Florin Malita3d856bd2018-05-26 09:49:28 -04002208 "modules/skottie",
Florin Malitaa8316552018-11-09 16:19:44 -05002209 "modules/skottie:utils",
Florin Malitab3418102020-10-15 18:10:29 -04002210 "modules/svg",
Mike Klein38af9432016-11-11 11:39:44 -05002211 ]
2212 }
Robert Phillips4d45e092021-07-01 13:27:16 -04002213 test_app("sorttoy") {
Robert Phillips4b732282021-05-20 09:45:10 -04002214 sources = [
Robert Phillips4d45e092021-07-01 13:27:16 -04002215 "experimental/sorttoy/Cmds.cpp",
2216 "experimental/sorttoy/Cmds.h",
2217 "experimental/sorttoy/Fake.cpp",
2218 "experimental/sorttoy/Fake.h",
2219 "experimental/sorttoy/SortKey.h",
2220 "experimental/sorttoy/sorttoy.cpp",
2221 "experimental/sorttoy/sorttypes.h",
Robert Phillips4b732282021-05-20 09:45:10 -04002222 ]
Robert Phillipscd1e3972021-02-22 17:24:22 -05002223 deps = [
2224 ":flags",
2225 ":skia",
2226 ":tool_utils",
2227 ]
2228 }
Michael Ludwig30217952020-12-04 12:58:35 -05002229
2230 # optional separate library to dlopen when running CanvasStateTests.
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04002231 skia_shared_library("canvas_state_lib") {
Michael Ludwig30217952020-12-04 12:58:35 -05002232 sources = [
2233 "tests/CanvasStateHelpers.cpp",
2234 "tests/CanvasStateHelpers.h",
2235 ]
2236 deps = [ ":skia" ]
2237 }
Brian Osman16adfa32016-10-18 14:42:44 -04002238 }
2239
Mike Kleina8a51ce2018-01-09 12:34:11 -05002240 if (!is_win) {
2241 test_app("remote_demo") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002242 sources = [ "tools/remote_demo.cpp" ]
2243 deps = [ ":skia" ]
Mike Kleina8a51ce2018-01-09 12:34:11 -05002244 }
2245 }
2246
Hal Canarye107faa2019-10-23 12:52:33 -04002247 if (!is_win) {
2248 test_app("blob_cache_sim") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002249 sources = [ "tools/blob_cache_sim.cpp" ]
2250 deps = [ ":skia" ]
Hal Canarye107faa2019-10-23 12:52:33 -04002251 }
2252 }
2253
Mike Kleine6682eb2017-01-05 10:54:57 -05002254 test_app("nanobench") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002255 sources = [ "bench/nanobench.cpp" ]
mtklein2b6870c2016-07-28 14:17:33 -07002256 deps = [
2257 ":bench",
Mike Kleinc6142d82019-03-25 10:54:59 -05002258 ":common_flags_aa",
2259 ":common_flags_config",
2260 ":common_flags_gpu",
2261 ":common_flags_images",
mtklein2b6870c2016-07-28 14:17:33 -07002262 ":flags",
2263 ":gm",
2264 ":gpu_tool_utils",
2265 ":skia",
2266 ":tool_utils",
Mike Klein499f0ac2019-03-25 13:00:12 -05002267 ":trace",
Mike Reed63559a52020-06-02 11:34:24 -04002268 "modules/skparagraph",
Julia Lavrovaa3552c52019-05-30 16:12:56 -04002269 "modules/skshaper",
Florin Malitab3418102020-10-15 18:10:29 -04002270 "modules/svg",
mtklein2b6870c2016-07-28 14:17:33 -07002271 ]
mtklein2b6870c2016-07-28 14:17:33 -07002272 }
halcanary19a97202016-08-03 15:08:04 -07002273
Ravi Mistry10d36c52017-01-31 09:49:18 -05002274 test_app("skpinfo") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002275 sources = [ "tools/skpinfo.cpp" ]
Greg Daniel0eb35a92021-06-18 10:47:54 -04002276 configs = [ ":our_vulkan_headers" ]
Ravi Mistry10d36c52017-01-31 09:49:18 -05002277 deps = [
2278 ":flags",
2279 ":skia",
2280 ]
2281 }
2282
Mike Reedc0ee21f2019-05-28 16:11:03 -04002283 if (skia_use_ffmpeg) {
2284 test_app("skottie2movie") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002285 sources = [ "tools/skottie2movie.cpp" ]
Mike Reedc0ee21f2019-05-28 16:11:03 -04002286 deps = [
2287 ":flags",
Mike Reed5f12eaa2019-09-24 12:01:58 -04002288 ":gpu_tool_utils",
Mike Reedc0ee21f2019-05-28 16:11:03 -04002289 ":skia",
Florin Malitaec403602020-04-24 12:14:03 -04002290 "experimental/ffmpeg:video_encoder",
Mike Reedc0ee21f2019-05-28 16:11:03 -04002291 "modules/skottie",
Mike Reed5093e232019-05-30 10:10:50 -04002292 "modules/skottie:utils",
Mike Reedc0ee21f2019-05-28 16:11:03 -04002293 ]
2294 }
2295 }
2296
Brian Osmanc9a42472018-05-31 13:17:12 -04002297 test_app("skpbench") {
Kevin Lubickf541ddf2021-10-13 16:02:56 -04002298 sources = [
2299 "bench/BigPath.cpp",
2300 "tools/skpbench/skpbench.cpp",
2301 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002302 deps = [
Mike Kleinc6142d82019-03-25 10:54:59 -05002303 ":common_flags_config",
2304 ":common_flags_gpu",
Brian Osmanc9a42472018-05-31 13:17:12 -04002305 ":flags",
2306 ":gpu_tool_utils",
2307 ":skia",
2308 ":tool_utils",
2309 ]
csmartdalton4b5179b2016-09-19 11:03:58 -07002310 }
2311
Mike Kleine6682eb2017-01-05 10:54:57 -05002312 test_app("sktexttopdf") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002313 sources = [ "tools/using_skia_and_harfbuzz.cpp" ]
halcanary3eee9d92016-09-10 07:01:53 -07002314 deps = [
2315 ":skia",
Herb Derby264182c2018-05-29 15:53:40 -04002316 "modules/skshaper",
halcanary3eee9d92016-09-10 07:01:53 -07002317 ]
halcanary3eee9d92016-09-10 07:01:53 -07002318 }
mtklein046cb562016-09-16 10:23:12 -07002319
Ben Wagner219f3622017-07-17 15:32:25 -04002320 test_app("create_test_font") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002321 sources = [ "tools/fonts/create_test_font.cpp" ]
2322 deps = [ ":skia" ]
Ben Wagner219f3622017-07-17 15:32:25 -04002323 assert_no_deps = [
2324 # tool_utils requires the output of this app.
2325 ":tool_utils",
2326 ]
2327 }
2328
Florin Malita5d3ff432018-07-31 16:38:43 -04002329 if (skia_use_expat) {
2330 test_app("create_test_font_color") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002331 sources = [ "tools/fonts/create_test_font_color.cpp" ]
Florin Malita5d3ff432018-07-31 16:38:43 -04002332 deps = [
2333 ":flags",
2334 ":skia",
2335 ":tool_utils",
2336 ]
2337 }
Ben Wagner97182cc2018-02-15 10:20:04 -05002338 }
2339
Mike Kleine6682eb2017-01-05 10:54:57 -05002340 test_app("get_images_from_skps") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002341 sources = [ "tools/get_images_from_skps.cpp" ]
mtklein046cb562016-09-16 10:23:12 -07002342 deps = [
2343 ":flags",
2344 ":skia",
mtklein046cb562016-09-16 10:23:12 -07002345 ]
mtklein046cb562016-09-16 10:23:12 -07002346 }
mtkleinecbc5262016-09-22 11:51:24 -07002347
Brian Osman6788a542018-12-10 11:56:01 -05002348 if (!is_ios && target_cpu != "wasm" && !(is_win && target_cpu == "arm64")) {
Mike Kleine6682eb2017-01-05 10:54:57 -05002349 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04002350 sources = [
2351 "tools/skiaserve/Request.cpp",
2352 "tools/skiaserve/Response.cpp",
2353 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04002354 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
2355 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
2356 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
2357 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
2358 "tools/skiaserve/urlhandlers/DataHandler.cpp",
2359 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
2360 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
2361 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
2362 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05002363 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
2364 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04002365 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
2366 "tools/skiaserve/urlhandlers/PostHandler.cpp",
2367 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
2368 "tools/skiaserve/urlhandlers/RootHandler.cpp",
2369 ]
2370 deps = [
2371 ":flags",
2372 ":gpu_tool_utils",
2373 ":skia",
2374 ":tool_utils",
Mike Klein7d302882016-11-03 14:06:31 -04002375 "//third_party/libmicrohttpd",
Mike Klein7d302882016-11-03 14:06:31 -04002376 ]
Mike Klein7d302882016-11-03 14:06:31 -04002377 }
mtkleinecbc5262016-09-22 11:51:24 -07002378 }
kjlubick14f984b2016-10-03 11:49:45 -07002379
Mike Kleine6682eb2017-01-05 10:54:57 -05002380 test_app("fuzz") {
kjlubick14f984b2016-10-03 11:49:45 -07002381 sources = [
Kevin Lubickbc9a1a82018-09-17 14:46:57 -04002382 "fuzz/Fuzz.cpp",
John Stiles6d3996c2020-07-31 12:33:31 -04002383 "fuzz/Fuzz.h",
Hal Canary24ac42b2017-02-14 13:35:14 -05002384 "fuzz/FuzzCanvas.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05002385 "fuzz/FuzzCommon.cpp",
John Stiles6d3996c2020-07-31 12:33:31 -04002386 "fuzz/FuzzCommon.h",
Zepeng Hu94007012020-07-22 14:37:46 +00002387 "fuzz/FuzzCreateDDL.cpp",
Adlai Hollerea8d1972021-02-23 13:05:32 -05002388 "fuzz/FuzzDDLThreading.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05002389 "fuzz/FuzzDrawFunctions.cpp",
Kevin Lubicke4be55d2018-03-30 15:05:13 -04002390 "fuzz/FuzzEncoders.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07002391 "fuzz/FuzzGradients.cpp",
Kevin Lubickbc9a1a82018-09-17 14:46:57 -04002392 "fuzz/FuzzMain.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07002393 "fuzz/FuzzParsePath.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05002394 "fuzz/FuzzPathMeasure.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07002395 "fuzz/FuzzPathop.cpp",
Jim Van Verth061cc212018-07-11 14:09:09 -04002396 "fuzz/FuzzPolyUtils.cpp",
Hal Canary13872dd2018-04-06 10:25:12 -04002397 "fuzz/FuzzRegionOp.cpp",
Weston Tracey6d4577b2020-12-30 13:29:00 -05002398 "fuzz/FuzzSkParagraph.cpp",
Robert Phillips98b066c2021-04-22 10:51:58 -04002399 "fuzz/FuzzTriangulation.cpp",
Leon Scroggins III0b8fcbc2018-10-16 15:52:17 -04002400 "fuzz/oss_fuzz/FuzzAndroidCodec.cpp",
Kevin Lubick2416f962018-02-12 08:26:39 -05002401 "fuzz/oss_fuzz/FuzzAnimatedImage.cpp",
2402 "fuzz/oss_fuzz/FuzzImage.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05002403 "fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp",
Leon Scroggins III0b8fcbc2018-10-16 15:52:17 -04002404 "fuzz/oss_fuzz/FuzzIncrementalImage.cpp",
Florin Malita80452be2018-06-19 11:27:20 -04002405 "fuzz/oss_fuzz/FuzzJSON.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05002406 "fuzz/oss_fuzz/FuzzPathDeserialize.cpp",
Kevin Lubick2541edf2018-01-11 10:27:14 -05002407 "fuzz/oss_fuzz/FuzzRegionDeserialize.cpp",
2408 "fuzz/oss_fuzz/FuzzRegionSetPath.cpp",
Zepeng Hufcb7ba02020-07-31 17:21:29 +00002409 "fuzz/oss_fuzz/FuzzSKP.cpp",
Kevin Lubicke9c1ce82019-03-11 11:09:40 -04002410 "fuzz/oss_fuzz/FuzzSKSL2GLSL.cpp",
2411 "fuzz/oss_fuzz/FuzzSKSL2Metal.cpp",
Kevin Lubick0f0a7102019-03-18 16:20:55 -04002412 "fuzz/oss_fuzz/FuzzSKSL2Pipeline.cpp",
Kevin Lubicke9c1ce82019-03-11 11:09:40 -04002413 "fuzz/oss_fuzz/FuzzSKSL2SPIRV.cpp",
Zepeng Huedaf3022020-06-12 12:20:59 +00002414 "fuzz/oss_fuzz/FuzzSVG.cpp",
Kevin Lubick2be14d32019-10-21 13:44:48 -04002415 "fuzz/oss_fuzz/FuzzSkDescriptorDeserialize.cpp",
Weston Tracey1a771fe2021-02-04 11:09:59 -05002416 "fuzz/oss_fuzz/FuzzSkParagraph.cpp",
Zepeng Hua5783f32020-07-10 13:36:20 +00002417 "fuzz/oss_fuzz/FuzzSkRuntimeEffect.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05002418 "fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp",
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05002419 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002420 "tools/debugger/DebugCanvas.cpp",
Nathaniel Nifong20b177a2019-12-12 11:05:10 -05002421 "tools/debugger/DebugLayerManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002422 "tools/debugger/DrawCommand.cpp",
2423 "tools/debugger/JsonWriteBuffer.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07002424 ]
2425 deps = [
2426 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04002427 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07002428 ":skia",
Florin Malita3d856bd2018-05-26 09:49:28 -04002429 "modules/skottie:fuzz",
Weston Tracey6d4577b2020-12-30 13:29:00 -05002430 "modules/skparagraph",
kjlubick14f984b2016-10-03 11:49:45 -07002431 ]
kjlubick14f984b2016-10-03 11:49:45 -07002432 }
Mike Klein38312422016-10-05 15:41:01 -04002433
Mike Kleine6682eb2017-01-05 10:54:57 -05002434 test_app("dump_record") {
Mike Klein4a56f4c2020-08-18 16:02:52 -05002435 sources = [ "tools/dump_record.cpp" ]
Mike Klein38312422016-10-05 15:41:01 -04002436 deps = [
2437 ":flags",
2438 ":skia",
2439 ]
Mike Klein38312422016-10-05 15:41:01 -04002440 }
bungemanfe917272016-10-13 17:36:40 -04002441
Mike Kleine6682eb2017-01-05 10:54:57 -05002442 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04002443 sources = [
2444 "tools/skdiff/skdiff.cpp",
2445 "tools/skdiff/skdiff_html.cpp",
2446 "tools/skdiff/skdiff_main.cpp",
2447 "tools/skdiff/skdiff_utils.cpp",
2448 ]
2449 deps = [
2450 ":skia",
2451 ":tool_utils",
2452 ]
bungemanfe917272016-10-13 17:36:40 -04002453 }
halcanarya73d76a2016-10-17 13:19:02 -07002454
Mike Kleine6682eb2017-01-05 10:54:57 -05002455 test_app("skp_parser") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002456 sources = [ "tools/skp_parser.cpp" ]
halcanarya73d76a2016-10-17 13:19:02 -07002457 deps = [
2458 ":skia",
2459 ":tool_utils",
halcanarya73d76a2016-10-17 13:19:02 -07002460 ]
halcanarya73d76a2016-10-17 13:19:02 -07002461 }
Brian Osman16adfa32016-10-18 14:42:44 -04002462
Brian Osmanc9a42472018-05-31 13:17:12 -04002463 if (!is_win) {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04002464 source_set("skqp_lib") { # Not a skia_source_set
Colin Cross654eb2a2019-11-08 13:08:36 -08002465 check_includes = false
2466 testonly = true
Colin Cross654eb2a2019-11-08 13:08:36 -08002467 public_configs = [ ":skia_private" ]
Hal Canary75427132017-10-11 16:00:31 -04002468 sources = [
2469 "dm/DMGpuTestProcs.cpp",
Hal Canaryac7f23c2018-11-26 14:07:41 -05002470 "tools/skqp/src/skqp.cpp",
Hal Canary75427132017-10-11 16:00:31 -04002471 ]
2472 deps = [
2473 ":gm",
Hal Canary75427132017-10-11 16:00:31 -04002474 ":skia",
2475 ":tests",
Hal Canaryd7b38452017-12-11 17:46:26 -05002476 ":tool_utils",
2477 ]
2478 }
2479 test_app("skqp") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002480 sources = [ "tools/skqp/src/skqp_main.cpp" ]
John Rosasco24cbdab2019-09-25 14:14:35 -07002481 include_dirs = [ "//" ]
2482 lib_dirs = []
Mike Kleina01c6b02020-04-01 13:47:34 -05002483 deps = [ ":skqp_lib" ]
Hal Canaryac7f23c2018-11-26 14:07:41 -05002484 }
Hal Canary75427132017-10-11 16:00:31 -04002485 }
John Rosasco24cbdab2019-09-25 14:14:35 -07002486 if (is_fuchsia) {
2487 # Build a package repository for skqp on Fuchsia.
2488 group("skqp_repo") {
2489 testonly = true
Mike Kleina01c6b02020-04-01 13:47:34 -05002490 deps = [ "//build/fuchsia/skqp:skqp_repo" ]
John Rosasco24cbdab2019-09-25 14:14:35 -07002491 }
2492 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002493 if (is_android) {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04002494 shared_library("libskqp_app") { # Not a skia_shared_library
Colin Cross654eb2a2019-11-08 13:08:36 -08002495 configs += [ ":skia_private" ]
Colin Cross654eb2a2019-11-08 13:08:36 -08002496 testonly = true
Mike Kleina01c6b02020-04-01 13:47:34 -05002497 sources = [ "tools/skqp/src/jni_skqp.cpp" ]
Hal Canary28f89382017-12-12 09:42:14 -05002498 deps = [
2499 ":skia",
2500 ":skqp_lib",
Hal Canaryb4d01a92018-01-29 13:10:08 -05002501 ":tool_utils",
Hal Canary28f89382017-12-12 09:42:14 -05002502 ]
2503 libs = [ "android" ]
2504 }
2505 }
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002506 if (is_android && skia_use_gl) {
Stan Iliev93151722018-08-02 11:10:52 -04002507 test_app("skottie_android") {
2508 is_shared_library = true
2509
Jorge Betancourt1fcdcaa2020-06-22 14:14:32 +00002510 sources = [ "platform_tools/android/apps/skottie/skottielib/src/main/cpp/native-lib.cpp" ]
Stan Iliev93151722018-08-02 11:10:52 -04002511 libs = []
2512
Stan Iliev93151722018-08-02 11:10:52 -04002513 deps = [
2514 ":skia",
2515 "modules/skottie",
2516 ]
2517 }
Jorge Betancourt265e3e12021-04-08 15:27:13 -04002518
2519 test_app("androidkit") {
2520 is_shared_library = true
2521
Florin Malita2a650cc2021-04-12 13:38:44 -04002522 sources = [
Florin Malita8bad8f72021-04-13 10:05:27 -04002523 "modules/androidkit/src/AndroidKit.cpp",
Florin Malita2a650cc2021-04-12 13:38:44 -04002524 "modules/androidkit/src/Canvas.cpp",
Florin Malita1df87562021-06-28 16:34:14 -04002525 "modules/androidkit/src/ColorFilters.cpp",
Jorge Betancourt151a6f32021-09-07 16:50:21 -04002526 "modules/androidkit/src/Font.cpp",
Jorge Betancourtaa9656d2021-10-14 14:02:08 -04002527 "modules/androidkit/src/FontChainAdapter.cpp",
Florin Malitaca8191b2021-06-17 14:05:57 -04002528 "modules/androidkit/src/Gradients.cpp",
Florin Malita934c0212021-05-20 12:23:42 -04002529 "modules/androidkit/src/Image.cpp",
Jorge Betancourtf961bc22021-06-04 16:34:02 -04002530 "modules/androidkit/src/ImageFilter.cpp",
Jorge Betancourt5cddd7f2021-04-29 13:33:50 -04002531 "modules/androidkit/src/Matrix.cpp",
Florin Malitade89bf02021-04-13 11:06:43 -04002532 "modules/androidkit/src/Paint.cpp",
Jorge Betancourtcfa47742021-06-16 14:45:52 -04002533 "modules/androidkit/src/Path.cpp",
2534 "modules/androidkit/src/PathBuilder.cpp",
Florin Malita05bb5a82021-04-22 09:37:50 -04002535 "modules/androidkit/src/RuntimeShaderBuilder.cpp",
2536 "modules/androidkit/src/Shader.cpp",
Florin Malita5e8d88e2021-05-18 09:54:10 -04002537 "modules/androidkit/src/SkottieAnimation.cpp",
Florin Malita2a650cc2021-04-12 13:38:44 -04002538 "modules/androidkit/src/Surface.cpp",
Jorge Betancourte3f80302021-05-13 11:24:37 -04002539 "modules/androidkit/src/Surface.h",
Jorge Betancourtf102b882021-04-26 13:48:56 -04002540 "modules/androidkit/src/SurfaceThread.cpp",
2541 "modules/androidkit/src/SurfaceThread.h",
Jorge Betancourte1fb47d2021-08-20 14:37:13 -04002542 "modules/androidkit/src/Text.cpp",
Florin Malita50cc5d42021-05-21 08:23:32 -04002543 "modules/androidkit/src/Utils.cpp",
Florin Malita2a650cc2021-04-12 13:38:44 -04002544 ]
Jorge Betancourtf102b882021-04-26 13:48:56 -04002545 libs = [
2546 "android",
2547 "jnigraphics",
2548 ]
Jorge Betancourt265e3e12021-04-08 15:27:13 -04002549
Florin Malita2cc65382021-04-26 21:59:35 -04002550 deps = [
2551 ":sk_app",
2552 ":skia",
Julia Lavrova9f6e4632021-09-17 15:19:02 -04002553 "experimental/sktext:sktext",
Florin Malita5e8d88e2021-05-18 09:54:10 -04002554 "modules/skottie:skottie",
Florin Malita2cc65382021-04-26 21:59:35 -04002555 ]
Jorge Betancourt265e3e12021-04-08 15:27:13 -04002556 }
Stan Iliev93151722018-08-02 11:10:52 -04002557 }
Hal Canary75427132017-10-11 16:00:31 -04002558
Hal Canarya9de7602018-01-19 13:08:23 -05002559 test_app("list_gms") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002560 sources = [ "tools/list_gms.cpp" ]
Hal Canarya9de7602018-01-19 13:08:23 -05002561 deps = [
2562 ":gm",
2563 ":skia",
2564 ]
2565 }
2566 test_app("list_gpu_unit_tests") {
2567 sources = [
2568 "dm/DMGpuTestProcs.cpp",
2569 "tools/list_gpu_unit_tests.cpp",
2570 ]
2571 deps = [
2572 ":skia",
2573 ":tests",
2574 ]
2575 }
2576
Brian Osmanc9a42472018-05-31 13:17:12 -04002577 test_lib("sk_app") {
Hal Canary378be8d2019-04-26 08:20:14 -04002578 public_deps = [
Hal Canary378be8d2019-04-26 08:20:14 -04002579 ":gpu_tool_utils",
Hal Canary05694472019-05-03 17:14:21 -04002580 ":skia",
Hal Canary378be8d2019-04-26 08:20:14 -04002581 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002582 sources = [
John Stilesab9578e2020-06-30 17:36:55 -04002583 "tools/sk_app/Application.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002584 "tools/sk_app/CommandSet.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002585 "tools/sk_app/CommandSet.h",
2586 "tools/sk_app/DisplayParams.h",
2587 "tools/sk_app/RasterWindowContext.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002588 "tools/sk_app/Window.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002589 "tools/sk_app/Window.h",
Robert Phillipsed653392020-07-10 13:55:21 -04002590 "tools/sk_app/WindowContext.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002591 "tools/sk_app/WindowContext.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002592 ]
2593 libs = []
Jim Van Verthef820be2020-08-12 10:45:00 -04002594 frameworks = []
Brian Osmanc9a42472018-05-31 13:17:12 -04002595
2596 if (is_android) {
2597 sources += [
Brian Osmanc9a42472018-05-31 13:17:12 -04002598 "tools/sk_app/android/RasterWindowContext_android.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002599 "tools/sk_app/android/WindowContextFactory_android.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002600 "tools/sk_app/android/Window_android.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002601 "tools/sk_app/android/Window_android.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002602 "tools/sk_app/android/main_android.cpp",
2603 "tools/sk_app/android/surface_glue_android.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002604 "tools/sk_app/android/surface_glue_android.h",
Brian Osman16adfa32016-10-18 14:42:44 -04002605 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002606 libs += [ "android" ]
2607 } else if (is_linux) {
2608 sources += [
Brian Osmanc9a42472018-05-31 13:17:12 -04002609 "tools/sk_app/unix/RasterWindowContext_unix.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002610 "tools/sk_app/unix/WindowContextFactory_unix.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002611 "tools/sk_app/unix/Window_unix.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002612 "tools/sk_app/unix/Window_unix.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002613 "tools/sk_app/unix/keysym2ucs.c",
John Stilesab9578e2020-06-30 17:36:55 -04002614 "tools/sk_app/unix/keysym2ucs.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002615 "tools/sk_app/unix/main_unix.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04002616 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002617 libs += [
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002618 "GL", # Used by raster window context, so cannot be behind skia_use_gl.
Brian Osmanc9a42472018-05-31 13:17:12 -04002619 "X11",
2620 ]
2621 } else if (is_win) {
2622 sources += [
Brian Osmanc9a42472018-05-31 13:17:12 -04002623 "tools/sk_app/win/RasterWindowContext_win.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002624 "tools/sk_app/win/WindowContextFactory_win.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002625 "tools/sk_app/win/Window_win.cpp",
John Stilesab9578e2020-06-30 17:36:55 -04002626 "tools/sk_app/win/Window_win.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002627 "tools/sk_app/win/main_win.cpp",
2628 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002629 } else if (is_mac) {
2630 sources += [
John Stilesab9578e2020-06-30 17:36:55 -04002631 "tools/sk_app/mac/WindowContextFactory_mac.h",
2632 "tools/sk_app/mac/Window_mac.h",
Jim Van Verth1f086ca2019-01-28 14:46:04 -05002633 "tools/sk_app/mac/Window_mac.mm",
2634 "tools/sk_app/mac/main_mac.mm",
Brian Osmanc9a42472018-05-31 13:17:12 -04002635 ]
Jim Van Verthef820be2020-08-12 10:45:00 -04002636 frameworks += [
Brian Osmanc9a42472018-05-31 13:17:12 -04002637 "QuartzCore.framework",
2638 "Cocoa.framework",
2639 "Foundation.framework",
2640 ]
2641 } else if (is_ios) {
2642 sources += [
John Stilesab9578e2020-06-30 17:36:55 -04002643 "tools/sk_app/ios/WindowContextFactory_ios.h",
2644 "tools/sk_app/ios/Window_ios.h",
Jim Van Verth68cb8b02019-08-29 14:59:17 -04002645 "tools/sk_app/ios/Window_ios.mm",
2646 "tools/sk_app/ios/main_ios.mm",
Brian Osmanc9a42472018-05-31 13:17:12 -04002647 ]
Jim Van Verthef820be2020-08-12 10:45:00 -04002648 frameworks += [ "QuartzCore.framework" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002649 }
2650
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002651 if (skia_use_gl) {
2652 sources += [ "tools/sk_app/GLWindowContext.cpp" ]
John Stilesab9578e2020-06-30 17:36:55 -04002653 sources += [ "tools/sk_app/GLWindowContext.h" ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002654 if (is_android) {
2655 sources += [ "tools/sk_app/android/GLWindowContext_android.cpp" ]
2656 } else if (is_linux) {
2657 sources += [ "tools/sk_app/unix/GLWindowContext_unix.cpp" ]
2658 } else if (is_win) {
2659 sources += [ "tools/sk_app/win/GLWindowContext_win.cpp" ]
2660 if (skia_use_angle) {
2661 sources += [ "tools/sk_app/win/ANGLEWindowContext_win.cpp" ]
2662 }
2663 } else if (is_mac) {
Ben Wagnerf6cc8582021-04-19 14:12:12 +00002664 sources += [
2665 "tools/sk_app/mac/GLWindowContext_mac.mm",
2666 "tools/sk_app/mac/RasterWindowContext_mac.mm",
2667 ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002668 } else if (is_ios) {
Ben Wagnerf6cc8582021-04-19 14:12:12 +00002669 sources += [
2670 "tools/sk_app/ios/GLWindowContext_ios.mm",
2671 "tools/sk_app/ios/RasterWindowContext_ios.mm",
2672 ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002673 }
2674 }
2675
Brian Osmanc9a42472018-05-31 13:17:12 -04002676 if (skia_use_vulkan) {
2677 sources += [ "tools/sk_app/VulkanWindowContext.cpp" ]
John Stilesab9578e2020-06-30 17:36:55 -04002678 sources += [ "tools/sk_app/VulkanWindowContext.h" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002679 if (is_android) {
2680 sources += [ "tools/sk_app/android/VulkanWindowContext_android.cpp" ]
2681 } else if (is_linux) {
2682 sources += [ "tools/sk_app/unix/VulkanWindowContext_unix.cpp" ]
2683 libs += [ "X11-xcb" ]
2684 } else if (is_win) {
2685 sources += [ "tools/sk_app/win/VulkanWindowContext_win.cpp" ]
2686 }
2687 }
2688
Jim Van Verthbe39f712019-02-08 15:36:14 -05002689 if (skia_use_metal) {
2690 sources += [ "tools/sk_app/MetalWindowContext.mm" ]
John Stilesab9578e2020-06-30 17:36:55 -04002691 sources += [ "tools/sk_app/MetalWindowContext.h" ]
Jim Van Verth7bb0ff02021-09-30 16:27:30 -04002692 if (skia_enable_graphite) {
2693 sources += [ "tools/sk_app/GraphiteMetalWindowContext.mm" ]
2694 sources += [ "tools/sk_app/GraphiteMetalWindowContext.h" ]
2695 }
Jim Van Verthbe39f712019-02-08 15:36:14 -05002696 if (is_mac) {
2697 sources += [ "tools/sk_app/mac/MetalWindowContext_mac.mm" ]
Jim Van Verth7bb0ff02021-09-30 16:27:30 -04002698 if (skia_enable_graphite) {
2699 sources += [ "tools/sk_app/mac/GraphiteMetalWindowContext_mac.mm" ]
2700 }
Jim Van Verth68cb8b02019-08-29 14:59:17 -04002701 } else if (is_ios) {
Jim Van Verthe58d5322019-09-03 09:42:57 -04002702 sources += [ "tools/sk_app/ios/MetalWindowContext_ios.mm" ]
Jim Van Verthbe39f712019-02-08 15:36:14 -05002703 }
Jim Van Verthbe39f712019-02-08 15:36:14 -05002704 }
2705
Jim Van Verth682a2f42020-05-13 16:54:09 -04002706 if (skia_use_direct3d) {
2707 sources += [ "tools/sk_app/win/D3D12WindowContext_win.cpp" ]
2708 }
2709
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002710 if (skia_use_dawn) {
2711 sources += [ "tools/sk_app/DawnWindowContext.cpp" ]
John Stilesab9578e2020-06-30 17:36:55 -04002712 sources += [ "tools/sk_app/DawnWindowContext.h" ]
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002713 if (is_linux) {
2714 if (dawn_enable_vulkan) {
2715 sources += [ "tools/sk_app/unix/DawnVulkanWindowContext_unix.cpp" ]
2716 defines = [ "VK_USE_PLATFORM_XCB_KHR" ]
2717 libs += [ "X11-xcb" ]
2718 }
2719 } else if (is_win) {
2720 if (dawn_enable_d3d12) {
2721 sources += [ "tools/sk_app/win/DawnD3D12WindowContext_win.cpp" ]
2722 }
2723 } else if (is_mac) {
2724 if (dawn_enable_metal) {
2725 sources += [ "tools/sk_app/mac/DawnMTLWindowContext_mac.mm" ]
2726 }
2727 }
2728 }
2729
Mike Kleina01c6b02020-04-01 13:47:34 -05002730 deps = [ ":tool_utils" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002731 if (is_android) {
2732 deps += [ "//third_party/native_app_glue" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002733 }
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002734 if (skia_use_gl && skia_use_angle) {
Brian Osmanc9a42472018-05-31 13:17:12 -04002735 deps += [ "//third_party/angle2" ]
Mike Kleina92c3832016-12-08 09:49:39 -05002736 }
Brian Osman16adfa32016-10-18 14:42:44 -04002737 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05002738
Hal Canary87515122019-03-15 14:22:51 -04002739 if (!skia_use_vulkan && (is_mac || is_linux || is_win)) {
2740 test_app("fiddle_examples") {
2741 sources = [
Brian Osmanc725e8f2019-04-10 14:08:44 -04002742 "tools/fiddle/all_examples.cpp",
Hal Canary87515122019-03-15 14:22:51 -04002743 "tools/fiddle/examples.cpp",
Brian Osman72ef2d52019-03-17 11:09:17 -04002744 "tools/fiddle/examples.h",
Hal Canary87515122019-03-15 14:22:51 -04002745 ]
Brian Osman72ef2d52019-03-17 11:09:17 -04002746 if (is_win) {
Hal Canary6c8422c2020-01-10 15:22:09 -05002747 cflags = [
2748 "/wd4756", # Overflow in constant arithmetic
2749 "/wd4305", # truncation from 'double' to 'float'
2750 ]
Brian Osman72ef2d52019-03-17 11:09:17 -04002751 }
Hal Canary87515122019-03-15 14:22:51 -04002752 deps = [
2753 ":skia",
2754 ":skia.h",
Joe Gregorio7ae1b4c2020-12-28 14:37:39 -05002755 "modules/particles",
Hal Canary87515122019-03-15 14:22:51 -04002756 "modules/skottie",
Joe Gregorio7ae1b4c2020-12-28 14:37:39 -05002757 "modules/skparagraph",
Florin Malitaa1dcaae2019-03-25 17:38:43 -04002758 "modules/skshaper",
Joe Gregorio7ae1b4c2020-12-28 14:37:39 -05002759 "modules/svg",
Hal Canary87515122019-03-15 14:22:51 -04002760 ]
2761 }
2762 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002763
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002764 # sk_app can work without GL but viewer always runs raster through a GL window context.
2765 if (skia_use_gl) {
2766 test_app("viewer") {
2767 is_shared_library = is_android
2768 sources = [
2769 "tools/viewer/AnimTimer.h",
2770 "tools/viewer/BisectSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002771 "tools/viewer/BisectSlide.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002772 "tools/viewer/GMSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002773 "tools/viewer/GMSlide.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002774 "tools/viewer/ImGuiLayer.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002775 "tools/viewer/ImGuiLayer.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002776 "tools/viewer/ImageSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002777 "tools/viewer/ImageSlide.h",
Brian Salomon06c9e292021-04-29 14:10:23 -04002778 "tools/viewer/MSKPSlide.cpp",
2779 "tools/viewer/MSKPSlide.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002780 "tools/viewer/ParticlesSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002781 "tools/viewer/ParticlesSlide.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002782 "tools/viewer/SKPSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002783 "tools/viewer/SKPSlide.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002784 "tools/viewer/SampleSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002785 "tools/viewer/SampleSlide.h",
Florin Malita45cd2002020-06-09 14:00:54 -04002786 "tools/viewer/SkRiveSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002787 "tools/viewer/SkRiveSlide.h",
John Stiles00b3fcc2021-12-10 19:53:57 -05002788 "tools/viewer/SkSLDebuggerSlide.cpp",
2789 "tools/viewer/SkSLDebuggerSlide.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002790 "tools/viewer/SkSLSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002791 "tools/viewer/SkSLSlide.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002792 "tools/viewer/SkottieSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002793 "tools/viewer/SkottieSlide.h",
2794 "tools/viewer/Slide.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002795 "tools/viewer/SlideDir.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002796 "tools/viewer/SlideDir.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002797 "tools/viewer/StatsLayer.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002798 "tools/viewer/StatsLayer.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002799 "tools/viewer/SvgSlide.cpp",
Ben Wagnerfa8b5e42021-01-28 14:30:59 -05002800 "tools/viewer/SvgSlide.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002801 "tools/viewer/TouchGesture.cpp",
2802 "tools/viewer/TouchGesture.h",
2803 "tools/viewer/Viewer.cpp",
John Stiles6d3996c2020-07-31 12:33:31 -04002804 "tools/viewer/Viewer.h",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002805 ]
2806 libs = []
2807
2808 deps = [
Kevin Lubick237dd2d2021-10-14 08:24:22 -04002809 ":common_flags_fontmgr",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002810 ":common_flags_gpu",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002811 ":flags",
2812 ":gm",
2813 ":gpu_tool_utils",
2814 ":samples",
2815 ":sk_app",
2816 ":skia",
2817 ":tool_utils",
2818 ":trace",
Florin Malita45cd2002020-06-09 14:00:54 -04002819 "experimental/skrive",
Julia Lavrova9f6e4632021-09-17 15:19:02 -04002820 "experimental/sktext",
Florin Malitac9c4e2e2020-08-13 12:03:37 -04002821 "modules/audioplayer",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002822 "modules/particles",
2823 "modules/skottie",
2824 "modules/skottie:utils",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002825 "modules/sksg:samples",
Florin Malitab3418102020-10-15 18:10:29 -04002826 "modules/svg",
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002827 "//third_party/imgui",
2828 ]
Brian Osmanc85f1fa2020-06-16 15:11:34 -04002829 if (skia_use_vulkan) {
Brian Salomon3207fbe2020-06-30 11:09:25 -04002830 deps += [
Corentin Wallez89d6e792021-03-08 15:25:34 +01002831 "//third_party/externals/spirv-tools:spvtools",
Brian Salomon3207fbe2020-06-30 11:09:25 -04002832
Corentin Wallez89d6e792021-03-08 15:25:34 +01002833 #spvtools depends on this but doesn't deps it in.
2834 "//third_party/externals/spirv-tools:spvtools_val",
Brian Salomon3207fbe2020-06-30 11:09:25 -04002835 ]
Brian Osmanc85f1fa2020-06-16 15:11:34 -04002836 }
Mike Reedd62d4062019-06-12 10:20:44 -04002837 }
Brian Osmaneff04b52017-11-21 13:18:02 -05002838 }
2839
Brian Salomonf4ba4ec2020-03-19 15:54:28 -04002840 if (skia_use_gl && !skia_use_angle && (is_linux || is_win || is_mac)) {
Brian Osmaneff04b52017-11-21 13:18:02 -05002841 test_app("HelloWorld") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002842 sources = [ "example/HelloWorld.cpp" ]
Brian Osmaneff04b52017-11-21 13:18:02 -05002843 libs = []
2844
Brian Osmaneff04b52017-11-21 13:18:02 -05002845 deps = [
2846 ":flags",
2847 ":gpu_tool_utils",
2848 ":sk_app",
2849 ":skia",
2850 ":tool_utils",
Brian Osmaneff04b52017-11-21 13:18:02 -05002851 ]
2852 }
2853 }
2854
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002855 if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
2856 action_foreach("generate_mocs") {
2857 script = "gn/call.py"
Mike Kleina01c6b02020-04-01 13:47:34 -05002858 sources = [ "tools/mdbviz/MainWindow.h" ]
2859 outputs = [ "$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp" ]
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002860 args = [
2861 "$skia_qt_path" + "/bin/moc",
2862 "{{source}}",
2863 "-o",
2864 "gen/mdbviz/{{source_name_part}}_moc.cpp",
2865 ]
2866 }
2867 action_foreach("generate_resources") {
2868 script = "gn/call.py"
Mike Kleina01c6b02020-04-01 13:47:34 -05002869 sources = [ "tools/mdbviz/resources.qrc" ]
2870 outputs = [ "$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp" ]
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002871 args = [
2872 "$skia_qt_path" + "/bin/rcc",
2873 "{{source}}",
2874 "-o",
2875 "gen/mdbviz/{{source_name_part}}_res.cpp",
2876 ]
2877 }
2878 test_app("mdbviz") {
2879 if (is_win) {
2880 # on Windows we need to disable some exception handling warnings due to the Qt headers
2881 cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
2882 }
2883 sources = [
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002884 "tools/UrlDataManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002885 "tools/debugger/DebugCanvas.cpp",
Nathaniel Nifong20b177a2019-12-12 11:05:10 -05002886 "tools/debugger/DebugLayerManager.cpp",
Mike Klein8f4e2242019-03-20 11:59:00 -05002887 "tools/debugger/DrawCommand.cpp",
2888 "tools/debugger/JsonWriteBuffer.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002889 "tools/mdbviz/MainWindow.cpp",
Robert Phillipsdeaf5682017-09-06 13:07:21 -04002890 "tools/mdbviz/Model.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002891 "tools/mdbviz/main.cpp",
2892
2893 # generated files
2894 "$target_gen_dir/mdbviz/MainWindow_moc.cpp",
2895 "$target_gen_dir/mdbviz/resources_res.cpp",
2896 ]
2897 lib_dirs = [ "$skia_qt_path/lib" ]
2898 libs = [
2899 "Qt5Core.lib",
2900 "Qt5Gui.lib",
2901 "Qt5Widgets.lib",
2902 ]
2903 include_dirs = [
2904 "$skia_qt_path/include",
Robert Phillips276066b2017-09-06 17:17:44 -04002905 "$skia_qt_path/include/QtCore",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002906 "$skia_qt_path/include/QtWidgets",
2907 ]
2908 deps = [
2909 ":generate_mocs",
2910 ":generate_resources",
2911 ":skia",
2912 ]
2913 }
2914 }
2915
Mike Kleine459afd2017-03-03 09:21:30 -05002916 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05002917 copy("gdbserver") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002918 sources = [ "$ndk/$ndk_gdbserver" ]
2919 outputs = [ "$root_out_dir/gdbserver" ]
Derek Sollenberger70120c72017-01-05 11:39:04 -05002920 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05002921 }
Mike Kleinf9ae6702018-06-20 14:05:05 -04002922
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04002923 skia_executable("cpu_modules") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002924 sources = [ "tools/cpu_modules.cpp" ]
Brian Osmanf564f152019-07-23 15:14:30 -04002925 deps = [
2926 ":skia",
2927 "modules/particles",
2928 ]
2929 }
2930
Ben Wagnerf6cc8582021-04-19 14:12:12 +00002931 if (skia_use_icu && skia_use_harfbuzz) {
Hal Canary1f94d392019-07-30 09:27:56 -04002932 test_app("editor") {
2933 is_shared_library = is_android
Mike Kleina01c6b02020-04-01 13:47:34 -05002934 deps = [ "modules/skplaintexteditor:editor_app" ]
Hal Canary1f94d392019-07-30 09:27:56 -04002935 }
Julia Lavrova9f6e4632021-09-17 15:19:02 -04002936 test_app("text_editor") {
2937 is_shared_library = is_android
2938 deps = [ "experimental/sktext:text_editor" ]
2939 }
Hal Canaryb8f81af2019-04-24 13:56:16 -04002940 }
Hal Canarye5b65d22019-09-19 11:33:31 -04002941
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04002942 skia_executable("image_diff_metric") {
Mike Kleina01c6b02020-04-01 13:47:34 -05002943 sources = [ "tools/image_diff_metric.cpp" ]
2944 deps = [ ":skia" ]
Hal Canarye5b65d22019-09-19 11:33:31 -04002945 }
Chris Dalton2b598902020-03-25 10:50:35 -06002946
2947 group("modules_testonly") {
2948 testonly = true
2949 deps = []
Kevin Lubicka59af6e2022-02-11 13:34:45 +00002950 if (target_cpu == "wasm") {
Chris Dalton2b598902020-03-25 10:50:35 -06002951 deps += [ "modules/canvaskit:viewer_wasm" ]
2952 }
2953 }
Kevin Lubick272e8bc2020-09-15 10:05:41 -04002954
2955 if (skia_build_fuzzers) {
2956 template("libfuzzer_app") {
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04002957 skia_executable(target_name) {
2958 output_dir = root_build_dir
Kevin Lubick272e8bc2020-09-15 10:05:41 -04002959 check_includes = false
2960 forward_variables_from(invoker, "*", [ "is_shared_library" ])
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04002961 if (!defined(configs)) {
2962 configs = []
2963 }
Kevin Lubick272e8bc2020-09-15 10:05:41 -04002964 configs += [ ":skia_private" ]
2965 sources += [
2966 "fuzz/Fuzz.cpp",
2967 "fuzz/FuzzCommon.cpp",
2968 ]
2969 deps += [
2970 ":flags",
2971 ":gpu_tool_utils",
2972 ":skia",
2973 ]
2974 defines = [ "SK_BUILD_FOR_LIBFUZZER" ]
2975 if (skia_use_libfuzzer_defaults) {
2976 cflags = [ "-fsanitize=fuzzer" ]
2977 ldflags = [ "-fsanitize=fuzzer" ]
2978 }
2979 testonly = true
2980 }
2981 }
2982
2983 libfuzzer_app("region_deserialize") {
2984 sources = [ "fuzz/oss_fuzz/FuzzRegionDeserialize.cpp" ]
2985 deps = []
2986 }
2987
2988 libfuzzer_app("image_filter_deserialize") {
2989 include_dirs = [
2990 "tools",
2991 "tools/fonts",
2992 ]
2993 sources = [
2994 "fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp",
2995 "tools/Resources.cpp",
2996 "tools/fonts/TestFontMgr.cpp",
2997 "tools/fonts/TestSVGTypeface.cpp",
2998 "tools/fonts/TestTypeface.cpp",
2999 ]
Florin Malitab3418102020-10-15 18:10:29 -04003000 deps = [ "modules/svg" ]
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003001 }
3002
3003 libfuzzer_app("region_set_path") {
3004 sources = [ "fuzz/oss_fuzz/FuzzRegionSetPath.cpp" ]
3005 deps = []
3006 }
3007
3008 libfuzzer_app("textblob_deserialize") {
3009 include_dirs = [
3010 "tools",
3011 "tools/fonts",
3012 ]
3013 sources = [
3014 "fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp",
3015 "tools/Resources.cpp",
3016 "tools/fonts/TestFontMgr.cpp",
3017 "tools/fonts/TestSVGTypeface.cpp",
3018 "tools/fonts/TestTypeface.cpp",
3019 ]
Florin Malitab3418102020-10-15 18:10:29 -04003020 deps = [ "modules/svg" ]
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003021 }
3022
3023 libfuzzer_app("path_deserialize") {
3024 sources = [ "fuzz/oss_fuzz/FuzzPathDeserialize.cpp" ]
3025 deps = []
3026 }
3027
3028 libfuzzer_app("image_decode") {
3029 sources = [ "fuzz/oss_fuzz/FuzzImage.cpp" ]
3030 deps = []
3031 }
3032
3033 libfuzzer_app("animated_image_decode") {
3034 sources = [ "fuzz/oss_fuzz/FuzzAnimatedImage.cpp" ]
3035 deps = []
3036 }
3037
3038 libfuzzer_app("api_create_ddl") {
3039 include_dirs = [
3040 "include",
3041 "include/gpu",
3042 ]
3043 sources = [
3044 "fuzz/FuzzCreateDDL.cpp",
3045 "fuzz/oss_fuzz/FuzzAPICreateDDL.cpp",
3046 "tools/Resources.cpp",
3047 "tools/UrlDataManager.cpp",
3048 "tools/debugger/DebugCanvas.cpp",
3049 "tools/debugger/DebugLayerManager.cpp",
3050 "tools/debugger/DrawCommand.cpp",
3051 "tools/debugger/JsonWriteBuffer.cpp",
3052 "tools/fonts/TestFontMgr.cpp",
3053 "tools/fonts/TestSVGTypeface.cpp",
3054 "tools/fonts/TestTypeface.cpp",
3055 ]
3056 deps = [
Florin Malitab3418102020-10-15 18:10:29 -04003057 "modules/svg",
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003058 "//third_party/libpng",
3059 ]
3060 }
3061
3062 libfuzzer_app("api_draw_functions") {
3063 sources = [
3064 "fuzz/FuzzDrawFunctions.cpp",
3065 "fuzz/oss_fuzz/FuzzDrawFunctions.cpp",
3066 ]
3067 deps = []
3068 }
3069
Adlai Hollerccb68662021-02-25 10:28:44 -05003070 libfuzzer_app("api_ddl_threading") {
3071 sources = [
3072 "fuzz/FuzzDDLThreading.cpp",
3073 "fuzz/oss_fuzz/FuzzDDLThreading.cpp",
3074 ]
3075 deps = []
3076 }
3077
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003078 libfuzzer_app("api_gradients") {
3079 sources = [
3080 "fuzz/FuzzGradients.cpp",
3081 "fuzz/oss_fuzz/FuzzGradients.cpp",
3082 ]
3083 deps = []
3084 }
3085
3086 libfuzzer_app("api_image_filter") {
3087 include_dirs = [
3088 "tools",
3089 "tools/debugger",
3090 ]
3091 sources = [
3092 "fuzz/FuzzCanvas.cpp",
3093 "fuzz/oss_fuzz/FuzzAPIImageFilter.cpp",
3094 "tools/UrlDataManager.cpp",
3095 "tools/debugger/DebugCanvas.cpp",
3096 "tools/debugger/DebugLayerManager.cpp",
3097 "tools/debugger/DrawCommand.cpp",
3098 "tools/debugger/JsonWriteBuffer.cpp",
3099 ]
3100 deps = [ "//third_party/libpng" ]
3101 }
3102
3103 libfuzzer_app("api_path_measure") {
3104 sources = [
3105 "fuzz/FuzzPathMeasure.cpp",
3106 "fuzz/oss_fuzz/FuzzPathMeasure.cpp",
3107 ]
3108 deps = []
3109 }
3110
3111 libfuzzer_app("api_pathop") {
3112 sources = [
3113 "fuzz/FuzzPathop.cpp",
3114 "fuzz/oss_fuzz/FuzzPathop.cpp",
3115 ]
3116 deps = []
3117 }
3118
Robert Phillips98b066c2021-04-22 10:51:58 -04003119 libfuzzer_app("api_triangulation") {
3120 sources = [
3121 "fuzz/FuzzTriangulation.cpp",
3122 "fuzz/oss_fuzz/FuzzTriangulation.cpp",
3123 ]
3124 deps = []
3125 }
3126
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003127 libfuzzer_app("api_raster_n32_canvas") {
3128 include_dirs = [
3129 "tools",
3130 "tools/debugger",
3131 "tools/fonts",
3132 ]
3133 sources = [
3134 "fuzz/FuzzCanvas.cpp",
3135 "fuzz/oss_fuzz/FuzzRasterN32Canvas.cpp",
3136 "tools/Resources.cpp",
3137 "tools/UrlDataManager.cpp",
3138 "tools/debugger/DebugCanvas.cpp",
3139 "tools/debugger/DebugLayerManager.cpp",
3140 "tools/debugger/DrawCommand.cpp",
3141 "tools/debugger/JsonWriteBuffer.cpp",
3142 "tools/fonts/TestFontMgr.cpp",
3143 "tools/fonts/TestSVGTypeface.cpp",
3144 "tools/fonts/TestTypeface.cpp",
3145 ]
3146 deps = [
Florin Malitab3418102020-10-15 18:10:29 -04003147 "modules/svg",
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003148 "//third_party/libpng",
3149 ]
3150 }
3151
Kevin Lubick7845b972021-03-29 08:07:32 -04003152 libfuzzer_app("api_regionop") {
3153 sources = [
3154 "fuzz/FuzzRegionOp.cpp",
3155 "fuzz/oss_fuzz/FuzzRegionOp.cpp",
3156 ]
3157 deps = []
3158 }
3159
Kevin Lubick94303e82022-02-01 09:03:41 -05003160 if (skia_enable_gpu) {
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003161 libfuzzer_app("api_mock_gpu_canvas") {
3162 include_dirs = [
3163 "tools",
3164 "tools/debugger",
3165 "tools/fonts",
3166 ]
3167 sources = [
3168 "fuzz/FuzzCanvas.cpp",
3169 "fuzz/oss_fuzz/FuzzMockGPUCanvas.cpp",
3170 "tools/LsanSuppressions.cpp",
3171 "tools/Resources.cpp",
3172 "tools/UrlDataManager.cpp",
3173 "tools/debugger/DebugCanvas.cpp",
3174 "tools/debugger/DebugLayerManager.cpp",
3175 "tools/debugger/DrawCommand.cpp",
3176 "tools/debugger/JsonWriteBuffer.cpp",
3177 "tools/fonts/TestFontMgr.cpp",
3178 "tools/fonts/TestSVGTypeface.cpp",
3179 "tools/fonts/TestTypeface.cpp",
3180 ]
3181 deps = [
Florin Malitab3418102020-10-15 18:10:29 -04003182 "modules/svg",
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003183 "//third_party/libpng",
3184 ]
3185 }
3186 }
3187
3188 libfuzzer_app("api_null_canvas") {
3189 include_dirs = [
3190 "tools",
3191 "tools/debugger",
3192 "tools/fonts",
3193 ]
3194 sources = [
3195 "fuzz/FuzzCanvas.cpp",
3196 "fuzz/oss_fuzz/FuzzNullCanvas.cpp",
3197 "tools/Resources.cpp",
3198 "tools/UrlDataManager.cpp",
3199 "tools/debugger/DebugCanvas.cpp",
3200 "tools/debugger/DebugLayerManager.cpp",
3201 "tools/debugger/DrawCommand.cpp",
3202 "tools/debugger/JsonWriteBuffer.cpp",
3203 "tools/fonts/TestFontMgr.cpp",
3204 "tools/fonts/TestSVGTypeface.cpp",
3205 "tools/fonts/TestTypeface.cpp",
3206 ]
3207 deps = [
Florin Malitab3418102020-10-15 18:10:29 -04003208 "modules/svg",
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003209 "//third_party/libpng",
3210 ]
3211 }
3212
Weston Tracey1a771fe2021-02-04 11:09:59 -05003213 libfuzzer_app("api_skparagraph") {
3214 sources = [
3215 "fuzz/FuzzSkParagraph.cpp",
3216 "fuzz/oss_fuzz/FuzzSkParagraph.cpp",
3217 "tools/Resources.cpp",
3218 ]
3219 deps = [ "modules/skparagraph" ]
3220 }
3221
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003222 libfuzzer_app("api_svg_canvas") {
3223 include_dirs = [
3224 "include",
3225 "include/svg",
3226 ]
3227 sources = [
3228 "fuzz/FuzzCanvas.cpp",
3229 "fuzz/oss_fuzz/FuzzAPISVGCanvas.cpp",
3230 "tools/Resources.cpp",
3231 "tools/UrlDataManager.cpp",
3232 "tools/debugger/DebugCanvas.cpp",
3233 "tools/debugger/DebugLayerManager.cpp",
3234 "tools/debugger/DrawCommand.cpp",
3235 "tools/debugger/JsonWriteBuffer.cpp",
3236 "tools/fonts/TestFontMgr.cpp",
3237 "tools/fonts/TestSVGTypeface.cpp",
3238 "tools/fonts/TestTypeface.cpp",
3239 ]
3240 deps = [
Florin Malitab3418102020-10-15 18:10:29 -04003241 "modules/svg",
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003242 "//third_party/libpng",
3243 ]
3244 }
3245
3246 libfuzzer_app("png_encoder") {
3247 sources = [
3248 "fuzz/FuzzEncoders.cpp",
3249 "fuzz/oss_fuzz/FuzzPNGEncoder.cpp",
3250 ]
3251 deps = []
3252 }
3253
3254 libfuzzer_app("jpeg_encoder") {
3255 sources = [
3256 "fuzz/FuzzEncoders.cpp",
3257 "fuzz/oss_fuzz/FuzzJPEGEncoder.cpp",
3258 ]
3259 deps = []
3260 }
3261
3262 libfuzzer_app("webp_encoder") {
3263 sources = [
3264 "fuzz/FuzzEncoders.cpp",
3265 "fuzz/oss_fuzz/FuzzWEBPEncoder.cpp",
3266 ]
3267 deps = []
3268 }
3269
3270 libfuzzer_app("skottie_json") {
3271 sources = [
3272 "modules/skottie/fuzz/FuzzSkottieJSON.cpp",
3273 "tools/Resources.cpp",
3274 "tools/fonts/TestFontMgr.cpp",
3275 "tools/fonts/TestSVGTypeface.cpp",
3276 "tools/fonts/TestTypeface.cpp",
3277 ]
3278 deps = [
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003279 "modules/skottie:skottie",
Florin Malitab3418102020-10-15 18:10:29 -04003280 "modules/svg",
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003281 ]
3282 }
3283
3284 libfuzzer_app("skjson") {
3285 sources = [ "fuzz/oss_fuzz/FuzzJSON.cpp" ]
3286 deps = []
3287 }
3288
3289 libfuzzer_app("api_polyutils") {
3290 sources = [
3291 "fuzz/FuzzPolyUtils.cpp",
3292 "fuzz/oss_fuzz/FuzzPolyUtils.cpp",
3293 ]
3294 deps = [ ":skia" ]
3295 }
3296
3297 libfuzzer_app("android_codec") {
3298 sources = [ "fuzz/oss_fuzz/FuzzAndroidCodec.cpp" ]
3299 deps = []
3300 }
3301
3302 libfuzzer_app("image_decode_incremental") {
3303 sources = [ "fuzz/oss_fuzz/FuzzIncrementalImage.cpp" ]
3304 deps = []
3305 }
3306
3307 libfuzzer_app("sksl2glsl") {
3308 sources = [ "fuzz/oss_fuzz/FuzzSKSL2GLSL.cpp" ]
3309 deps = []
3310 }
3311
3312 libfuzzer_app("sksl2spirv") {
3313 sources = [ "fuzz/oss_fuzz/FuzzSKSL2SPIRV.cpp" ]
3314 deps = []
3315 }
3316
3317 libfuzzer_app("sksl2metal") {
3318 sources = [ "fuzz/oss_fuzz/FuzzSKSL2Metal.cpp" ]
3319 deps = []
3320 }
3321
3322 libfuzzer_app("sksl2pipeline") {
3323 sources = [ "fuzz/oss_fuzz/FuzzSKSL2Pipeline.cpp" ]
3324 deps = []
3325 }
3326
3327 libfuzzer_app("skdescriptor_deserialize") {
3328 sources = [ "fuzz/oss_fuzz/FuzzSkDescriptorDeserialize.cpp" ]
3329 deps = []
3330 }
3331
3332 libfuzzer_app("svg_dom") {
3333 sources = [ "fuzz/oss_fuzz/FuzzSVG.cpp" ]
Florin Malitab3418102020-10-15 18:10:29 -04003334 deps = [ "modules/svg" ]
Kevin Lubick272e8bc2020-09-15 10:05:41 -04003335 }
3336
3337 libfuzzer_app("skruntimeeffect") {
3338 sources = [ "fuzz/oss_fuzz/FuzzSkRuntimeEffect.cpp" ]
3339 deps = []
3340 }
3341
3342 libfuzzer_app("skp") {
3343 sources = [ "fuzz/oss_fuzz/FuzzSKP.cpp" ]
3344 deps = []
3345 }
3346 }
mtklein25c81d42016-07-27 13:55:26 -07003347}
Hal Canary932a2c02019-09-17 10:43:18 -04003348
Greg Daniel391f9412021-10-28 12:44:43 -04003349if (is_ios && skia_use_metal && skia_enable_gpu &&
3350 !skia_enable_flutter_defines) {
Hal Canary932a2c02019-09-17 10:43:18 -04003351 group("minimal_ios_mtl_skia_app") {
Mike Kleina01c6b02020-04-01 13:47:34 -05003352 deps = [ "experimental/minimal_ios_mtl_skia_app" ]
Hal Canary932a2c02019-09-17 10:43:18 -04003353 }
Hal Canary27483062019-12-06 15:01:08 -05003354}
3355
Hal Canary60ff6512020-01-21 12:39:20 -05003356if (is_ios && skia_enable_skottie && !skia_enable_flutter_defines) {
Hal Canary932a2c02019-09-17 10:43:18 -04003357 group("skottie_ios") {
Mike Kleina01c6b02020-04-01 13:47:34 -05003358 deps = [ "tools/skottie_ios_app" ]
Hal Canary932a2c02019-09-17 10:43:18 -04003359 }
3360}
Martin Kustermannb65d2992020-12-15 16:15:13 +01003361
Ben Wagner3d9ab7e2021-03-16 14:29:20 -04003362skia_executable("skia_c_api_example") {
Martin Kustermannb65d2992020-12-15 16:15:13 +01003363 sources = [ "experimental/c-api-example/skia-c-example.c" ]
3364 include_dirs = [ "." ]
3365 deps = [ ":skia" ]
3366}