blob: 02bb2e091a792ab092d00d5ba6b68ae32b208484 [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")
brettwb9447282016-09-01 14:24:39 -07009
Forrest Reiling30229ac2017-04-17 13:36:39 -070010if (is_fuchsia) {
11 import("//build/vulkan/config.gni")
12}
13
Mike Klein3669a822017-03-03 10:55:02 -050014if (!defined(is_skia_standalone)) {
15 is_skia_standalone = false
16}
17is_skia_dev_build = is_skia_standalone && !is_official_build
18
mtkleinc04ff472016-06-23 10:29:30 -070019declare_args() {
Mike Klein26a60492018-10-15 10:38:25 -040020 skia_enable_flutter_defines = false
21}
22
23declare_args() {
Mike Kleinc168a3a2016-11-14 14:53:13 +000024 skia_use_angle = false
Kevin Lubick4a24e102017-03-29 11:19:01 -040025 skia_use_egl = false
mtklein63213812016-08-24 09:55:56 -070026 skia_use_expat = true
mtklein3cc22182016-08-29 13:26:14 -070027 skia_use_fontconfig = is_linux
mtkleincdedd0e2016-09-12 15:15:44 -070028 skia_use_freetype = is_android || is_fuchsia || is_linux
Mike Klein7d302882016-11-03 14:06:31 -040029 skia_use_icu = !is_fuchsia && !is_ios && !is_win # TODO: Windows
mtklein63213812016-08-24 09:55:56 -070030 skia_use_libjpeg_turbo = true
31 skia_use_libpng = true
mtkleineb3c4252016-08-23 07:38:09 -070032 skia_use_libwebp = !is_fuchsia
Mike Kleinfae86b72018-01-08 15:49:09 -050033 skia_use_lua = is_skia_dev_build && !is_ios
Mike Kleinf9ae6702018-06-20 14:05:05 -040034 skia_use_opencl = false
Mike Klein10d665d2016-11-01 11:46:10 -040035 skia_use_piex = !is_win
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -040036 skia_use_wuffs = false
mtklein63213812016-08-24 09:55:56 -070037 skia_use_zlib = true
Greg Daniele5ddff52017-07-05 16:49:36 -040038 skia_use_metal = false
Mike Klein36f182f2017-10-20 12:33:53 -040039 skia_use_libheif = is_skia_dev_build
Chinmay Garded92d0352018-09-17 10:23:28 -070040 skia_use_x11 = is_linux
mtklein1bd72ba2016-09-16 07:45:52 -070041
Mike Klein7d921032017-01-05 12:20:41 -050042 skia_android_serial = ""
Kevin Lubick93faa672018-10-10 15:54:53 -040043 skia_enable_ccpr = true
Kevin Lubickca7c2972018-10-17 13:52:24 +000044 skia_enable_nvpr = !skia_enable_flutter_defines
Brian Osman3f375d02016-12-28 11:19:22 -050045 skia_enable_discrete_gpu = true
Brian Osman74511012018-04-02 20:13:46 +000046 skia_enable_gpu = true
Kevin Lubick134be1d2018-10-30 15:05:04 -040047 skia_enable_nima = false
Hal Canary43fb7a02016-12-30 13:09:03 -050048 skia_enable_pdf = true
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -040049 skia_enable_spirv_validation = is_skia_dev_build && is_debug
Kevin Lubick32dfdbe2018-10-18 09:47:01 -040050 skia_enable_skpicture = true
Mike Klein3669a822017-03-03 10:55:02 -050051 skia_enable_tools = is_skia_dev_build
52 skia_enable_vulkan_debug_layers = is_skia_dev_build && is_debug
Greg Danielda16cce2018-08-01 09:23:57 -040053 skia_vulkan_header = "" # temporary as we remove the use from clients
Robert Phillipsa6d2d702017-09-01 12:17:03 -040054 skia_qt_path = getenv("QT_PATH")
Ethan Nicholas762466e2017-06-29 10:03:38 -040055 skia_compile_processors = false
Adrienne Walker1df7cd82018-04-18 13:46:25 -070056 skia_generate_workarounds = false
Ethan Nicholas5b5f0962017-09-11 13:50:14 -070057 skia_lex = false
Mike Kleinc55a6cb2017-06-28 13:21:47 -040058
Hal Canary4689b542018-01-31 11:54:14 -050059 skia_skqp_enable_driver_correctness_workarounds = false
Hal Canary2331c822018-02-01 14:06:13 -050060 skia_skqp_global_error_tolerance = 0
Ethan Nicholas26a9aad2018-03-27 14:10:52 -040061
62 skia_llvm_path = ""
63 skia_llvm_lib = "LLVM"
Hal Canaryfd9bcab2018-04-24 11:47:23 -040064
65 skia_tools_require_resources = false
mtkleinc04ff472016-06-23 10:29:30 -070066}
Brian Salomon23d73ea2016-10-27 13:31:37 -040067declare_args() {
Matt Sarett189491c2017-03-20 18:09:30 -040068 skia_use_dng_sdk = !is_fuchsia && skia_use_libjpeg_turbo && skia_use_zlib
Mike Klein10d665d2016-11-01 11:46:10 -040069 skia_use_sfntly = skia_use_icu
Brian Salomoncbcb0a12017-11-19 13:20:13 -050070 skia_enable_atlas_text = is_skia_dev_build && skia_enable_gpu
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -050071 skia_enable_fontmgr_empty = false
72 skia_enable_fontmgr_custom = (is_linux || target_cpu == "wasm") &&
73 skia_use_freetype && !skia_use_fontconfig
74 skia_enable_fontmgr_custom_empty = is_fuchsia && skia_use_freetype
75 skia_enable_fontmgr_android = skia_use_expat && skia_use_freetype
Mike Klein10d665d2016-11-01 11:46:10 -040076
Mike Klein4d598a32016-10-31 13:44:49 -040077 if (is_android) {
78 skia_use_vulkan = defined(ndk_api) && ndk_api >= 24
Forrest Reiling30229ac2017-04-17 13:36:39 -070079 } else if (is_fuchsia) {
80 skia_use_vulkan = fuchsia_use_vulkan
Mike Klein4d598a32016-10-31 13:44:49 -040081 } else {
Greg Daniel91dfa3b2018-05-22 13:25:15 -040082 skia_use_vulkan = (defined(skia_vulkan_sdk) && skia_vulkan_sdk != "") ||
83 (defined(skia_moltenvk_path) && skia_moltenvk_path != "")
Mike Klein4d598a32016-10-31 13:44:49 -040084 }
Jim Van Verth4e502972017-12-07 15:16:10 -050085
86 if (is_ios) {
87 skia_ios_identity = ".*Google.*"
88 skia_ios_profile = "Google Development"
89 }
Brian Salomon23d73ea2016-10-27 13:31:37 -040090}
Brian Salomon789e25e2016-09-30 13:41:03 -040091
Adam Barth54ef74a2017-10-13 10:59:38 -070092if (defined(skia_settings)) {
93 import(skia_settings)
94}
95
Brian Osmanc9a42472018-05-31 13:17:12 -040096# Our tools require static linking (they use non-exported symbols), and the GPU backend.
97skia_enable_tools = skia_enable_tools && !is_component_build && skia_enable_gpu
mtklein06c35c02016-09-20 12:28:12 -070098
mtklein1211e0c2016-07-26 13:55:45 -070099skia_public_includes = [
mtklein25c81d42016-07-27 13:55:26 -0700100 "include/android",
mtkleinfa84d942016-07-28 09:45:14 -0700101 "include/c",
mtklein1211e0c2016-07-26 13:55:45 -0700102 "include/codec",
103 "include/config",
104 "include/core",
Hal Canary23564b92018-09-07 14:33:14 -0400105 "include/docs",
mtklein1211e0c2016-07-26 13:55:45 -0700106 "include/effects",
Matt Sarett94fd06f2017-05-08 17:31:00 -0400107 "include/encode",
mtklein1211e0c2016-07-26 13:55:45 -0700108 "include/gpu",
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500109 "include/atlastext",
mtklein1211e0c2016-07-26 13:55:45 -0700110 "include/pathops",
111 "include/ports",
mtklein25c81d42016-07-27 13:55:26 -0700112 "include/svg",
mtklein1211e0c2016-07-26 13:55:45 -0700113 "include/utils",
114 "include/utils/mac",
mtklein1211e0c2016-07-26 13:55:45 -0700115]
116
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500117if (skia_enable_atlas_text) {
118 skia_public_includes += [ "include/atlastext" ]
119}
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000120
mtkleinc04ff472016-06-23 10:29:30 -0700121# Skia public API, generally provided by :skia.
122config("skia_public") {
mtklein1211e0c2016-07-26 13:55:45 -0700123 include_dirs = skia_public_includes
Mike Kleinae7e6712016-10-11 17:49:33 -0400124 defines = []
125 if (is_component_build) {
126 defines += [ "SKIA_DLL" ]
127 }
Mike Kleinc4cbd742016-09-26 21:37:09 -0400128 if (is_fuchsia || is_linux) {
jcgregorio5561e3d2016-08-25 09:25:11 -0700129 defines += [ "SK_SAMPLES_FOR_X" ]
130 }
Brian Osmanf2c90142017-07-13 15:50:03 -0400131 if (skia_enable_flutter_defines) {
132 defines += flutter_defines
133 }
mtklein06c35c02016-09-20 12:28:12 -0700134 if (!skia_enable_gpu) {
135 defines += [ "SK_SUPPORT_GPU=0" ]
136 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500137 if (skia_enable_atlas_text) {
138 defines += [ "SK_SUPPORT_ATLAS_TEXT=1" ]
139 }
Mike Reed025f7832018-11-12 09:27:05 -0500140 if (is_fuchsia) {
141 defines += fuchsia_defines
142 }
mtkleinc04ff472016-06-23 10:29:30 -0700143}
144
145# Skia internal APIs, used by Skia itself and a few test tools.
146config("skia_private") {
147 visibility = [ ":*" ]
148
149 include_dirs = [
150 "include/private",
151 "src/c",
mtklein1211e0c2016-07-26 13:55:45 -0700152 "src/codec",
mtkleinc04ff472016-06-23 10:29:30 -0700153 "src/core",
154 "src/effects",
mtklein25c81d42016-07-27 13:55:26 -0700155 "src/fonts",
mtkleinc04ff472016-06-23 10:29:30 -0700156 "src/image",
157 "src/images",
158 "src/lazy",
159 "src/opts",
160 "src/pathops",
mtklein2b6870c2016-07-28 14:17:33 -0700161 "src/pdf",
mtkleinc04ff472016-06-23 10:29:30 -0700162 "src/ports",
163 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400164 "src/shaders",
165 "src/shaders/gradients",
mtklein9e0d9dd2016-08-30 10:37:19 -0700166 "src/sksl",
mtkleinc04ff472016-06-23 10:29:30 -0700167 "src/utils",
mtklein7a1f45f2016-08-04 06:19:33 -0700168 "src/utils/win",
Herb Derby5a8fe972017-02-14 14:42:30 -0500169 "src/xml",
scroggo19b91532016-10-24 09:03:26 -0700170 "third_party/gif",
mtkleinc04ff472016-06-23 10:29:30 -0700171 ]
mtklein150d1132016-08-01 06:56:40 -0700172
Mike Reeda9e241d2017-05-03 10:52:00 -0400173 defines = [ "SK_GAMMA_APPLY_TO_A8" ]
mtkleinb37c0342016-09-09 11:07:45 -0700174 if (is_android) {
175 defines += [
176 "SK_GAMMA_EXPONENT=1.4",
177 "SK_GAMMA_CONTRAST=0.0",
178 ]
179 }
mtklein88a7ac02016-09-14 11:16:49 -0700180 if (is_official_build || is_android) {
181 # TODO(bsalomon): it'd be nice to make Android normal.
182 defines += [ "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0" ]
183 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400184 libs = []
185 lib_dirs = []
Brian Salomon03e05842017-02-23 12:23:47 -0500186 if (skia_enable_gpu) {
187 include_dirs += [ "src/gpu" ]
Greg Danielafb7ec72017-12-07 12:48:30 -0500188 if (is_skia_dev_build && skia_use_vulkan) {
189 include_dirs += [ "tools/gpu/vk" ]
190 }
Brian Salomon03e05842017-02-23 12:23:47 -0500191 }
Brian Osman34755e22016-12-05 09:46:02 -0500192 if (skia_use_angle) {
193 defines += [ "SK_ANGLE" ]
194 }
Brian Osman3f375d02016-12-28 11:19:22 -0500195 if (skia_enable_discrete_gpu) {
196 defines += [ "SK_ENABLE_DISCRETE_GPU" ]
197 }
Brian Salomon0c26a9d2017-07-06 10:09:38 -0400198 if (!is_official_build) {
199 defines += [ "GR_TEST_UTILS=1" ]
200 }
Ethan Nicholas26a9aad2018-03-27 14:10:52 -0400201 if (skia_llvm_path != "") {
202 defines += [ "SK_LLVM_AVAILABLE" ]
203 include_dirs += [ "$skia_llvm_path/include" ]
204 libs += [ skia_llvm_lib ]
205 lib_dirs += [ "$skia_llvm_path/lib/" ]
206 }
mtkleinc04ff472016-06-23 10:29:30 -0700207}
208
209# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
210config("skia_library") {
211 visibility = [ ":*" ]
mtkleinc04ff472016-06-23 10:29:30 -0700212 defines = [ "SKIA_IMPLEMENTATION=1" ]
213}
214
215skia_library_configs = [
216 ":skia_public",
217 ":skia_private",
218 ":skia_library",
219]
220
mtklein9b8583d2016-08-24 17:32:30 -0700221# Use for CPU-specific Skia code that needs particular compiler flags.
222template("opts") {
Mike Klein6d1df6d2018-11-07 15:03:58 -0500223 visibility = [ ":*" ]
mtklein9b8583d2016-08-24 17:32:30 -0700224 if (invoker.enabled) {
225 source_set(target_name) {
226 forward_variables_from(invoker, "*")
227 configs += skia_library_configs
228 }
229 } else {
230 # If not enabled, a phony empty target that swallows all otherwise unused variables.
231 source_set(target_name) {
232 forward_variables_from(invoker,
233 "*",
234 [
235 "sources",
236 "cflags",
237 ])
238 }
239 }
anmittala7eaf2e2016-08-17 13:57:26 -0700240}
241
mtklein422310d2016-08-16 18:28:43 -0700242is_x86 = current_cpu == "x64" || current_cpu == "x86"
mtkleinc04ff472016-06-23 10:29:30 -0700243
mtklein7d6fb2c2016-08-25 14:50:44 -0700244opts("none") {
245 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
brettwb9447282016-09-01 14:24:39 -0700246 sources = skia_opts.none_sources
anmittalb8b3f712016-08-25 04:55:19 -0700247 cflags = []
248}
249
mtklein7d6fb2c2016-08-25 14:50:44 -0700250opts("armv7") {
anmittalb8b3f712016-08-25 04:55:19 -0700251 enabled = current_cpu == "arm"
brettwb9447282016-09-01 14:24:39 -0700252 sources = skia_opts.armv7_sources + skia_opts.neon_sources
mtklein7d6fb2c2016-08-25 14:50:44 -0700253 cflags = []
anmittalb8b3f712016-08-25 04:55:19 -0700254}
255
256opts("arm64") {
257 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700258 sources = skia_opts.arm64_sources
anmittalb8b3f712016-08-25 04:55:19 -0700259 cflags = []
260}
261
262opts("crc32") {
263 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700264 sources = skia_opts.crc32_sources
anmittalb8b3f712016-08-25 04:55:19 -0700265 cflags = [ "-march=armv8-a+crc" ]
266}
267
mtklein9b8583d2016-08-24 17:32:30 -0700268opts("sse2") {
269 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700270 sources = skia_opts.sse2_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400271 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400272 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
273 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400274 cflags = [ "-msse2" ]
275 }
mtklein9b8583d2016-08-24 17:32:30 -0700276}
mtkleinc04ff472016-06-23 10:29:30 -0700277
mtklein9b8583d2016-08-24 17:32:30 -0700278opts("ssse3") {
279 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700280 sources = skia_opts.ssse3_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400281 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400282 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
283 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400284 cflags = [ "-mssse3" ]
285 }
mtklein9b8583d2016-08-24 17:32:30 -0700286}
mtkleinc04ff472016-06-23 10:29:30 -0700287
mtklein9b8583d2016-08-24 17:32:30 -0700288opts("sse41") {
289 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700290 sources = skia_opts.sse41_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400291 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400292 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
293 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400294 cflags = [ "-msse4.1" ]
295 }
mtklein9b8583d2016-08-24 17:32:30 -0700296}
mtklein4e976072016-08-08 09:06:27 -0700297
mtklein9b8583d2016-08-24 17:32:30 -0700298opts("sse42") {
299 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700300 sources = skia_opts.sse42_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400301 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400302 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
303 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400304 cflags = [ "-msse4.2" ]
305 }
mtklein9b8583d2016-08-24 17:32:30 -0700306}
307
308opts("avx") {
309 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700310 sources = skia_opts.avx_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400311 if (is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000312 cflags = [ "/arch:AVX" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400313 } else {
314 cflags = [ "-mavx" ]
315 }
mtkleinc04ff472016-06-23 10:29:30 -0700316}
317
Mike Klein1b9b7d52018-02-27 10:37:40 -0500318opts("hsw") {
319 enabled = is_x86
320 sources = skia_opts.hsw_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400321 if (is_win) {
Mike Klein1b9b7d52018-02-27 10:37:40 -0500322 cflags = [ "/arch:AVX2" ]
323 } else {
Mike Kleine87c4862018-03-23 00:13:58 +0000324 cflags = [ "-march=haswell" ]
Mike Klein1b9b7d52018-02-27 10:37:40 -0500325 }
326
327 # Oddly, clang-cl doesn't recognize this as a valid flag.
328 # If it ever does, it'd nice to move this up with -mavx2 and co.
329 if (is_clang && !is_win) {
330 # This flag lets Clang generate FMAs when it sees a mul-then-add. It's optional,
331 # but nice to have, generating slightly better code for paths without explicit FMAs.
332 cflags += [ "-ffp-contract=fast" ]
333 }
334}
335
mtkleinc095df52016-08-24 12:23:52 -0700336# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700337template("optional") {
Mike Klein6d1df6d2018-11-07 15:03:58 -0500338 visibility = [ ":*" ]
mtklein457b42a2016-08-23 13:56:37 -0700339 if (invoker.enabled) {
340 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700341 if (defined(invoker.public_defines)) {
342 defines = invoker.public_defines
343 }
Chris Dalton3a67b8e2018-05-03 09:30:29 -0600344 if (defined(invoker.public_configs)) {
345 configs = invoker.public_configs
346 }
mtklein457b42a2016-08-23 13:56:37 -0700347 }
348 source_set(target_name) {
mtkleincd01b032016-08-31 04:58:19 -0700349 forward_variables_from(invoker,
350 "*",
351 [
352 "public_defines",
353 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700354 "configs_to_remove",
mtkleincd01b032016-08-31 04:58:19 -0700355 ])
mtklein457b42a2016-08-23 13:56:37 -0700356 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein9b8583d2016-08-24 17:32:30 -0700357 configs += skia_library_configs
scroggof84ad642016-10-31 09:02:57 -0700358 if (defined(invoker.configs_to_remove)) {
359 configs -= invoker.configs_to_remove
360 }
mtklein457b42a2016-08-23 13:56:37 -0700361 }
362 } else {
mtklein457b42a2016-08-23 13:56:37 -0700363 source_set(target_name) {
364 forward_variables_from(invoker,
365 "*",
366 [
367 "public_defines",
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400368 "public_deps",
mtklein457b42a2016-08-23 13:56:37 -0700369 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700370 "libs",
mtklein457b42a2016-08-23 13:56:37 -0700371 "sources",
mtkleincd01b032016-08-31 04:58:19 -0700372 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700373 "configs_to_remove",
mtklein457b42a2016-08-23 13:56:37 -0700374 ])
mtkleincd01b032016-08-31 04:58:19 -0700375 if (defined(invoker.sources_when_disabled)) {
376 sources = invoker.sources_when_disabled
377 }
378 configs += skia_library_configs
mtklein457b42a2016-08-23 13:56:37 -0700379 }
mtkleineb3c4252016-08-23 07:38:09 -0700380 }
mtklein457b42a2016-08-23 13:56:37 -0700381}
mtklein457b42a2016-08-23 13:56:37 -0700382
mtkleina45be612016-08-29 15:22:10 -0700383optional("fontmgr_android") {
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500384 enabled = skia_enable_fontmgr_android
mtkleina45be612016-08-29 15:22:10 -0700385
386 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500387 ":typeface_freetype",
mtkleina45be612016-08-29 15:22:10 -0700388 "//third_party/expat",
mtkleina45be612016-08-29 15:22:10 -0700389 ]
390 sources = [
391 "src/ports/SkFontMgr_android.cpp",
392 "src/ports/SkFontMgr_android_factory.cpp",
393 "src/ports/SkFontMgr_android_parser.cpp",
394 ]
395}
396
mtkleind2e39db2016-09-07 07:52:55 -0700397optional("fontmgr_custom") {
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500398 enabled = skia_enable_fontmgr_custom
mtkleind2e39db2016-09-07 07:52:55 -0700399
400 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500401 ":typeface_freetype",
mtkleind2e39db2016-09-07 07:52:55 -0700402 ]
403 sources = [
404 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500405 "src/ports/SkFontMgr_custom.h",
406 "src/ports/SkFontMgr_custom_directory.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700407 "src/ports/SkFontMgr_custom_directory_factory.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500408 "src/ports/SkFontMgr_custom_embedded.cpp",
409 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700410 ]
411}
412
Hal Canaryff2742e2018-01-30 11:35:47 -0500413optional("fontmgr_empty") {
414 enabled = skia_enable_fontmgr_empty
415 sources = [
416 "src/ports/SkFontMgr_empty_factory.cpp",
417 ]
418}
419
mtklein3cc22182016-08-29 13:26:14 -0700420optional("fontmgr_fontconfig") {
421 enabled = skia_use_freetype && skia_use_fontconfig
mtklein3cc22182016-08-29 13:26:14 -0700422
423 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500424 ":typeface_freetype",
mtklein3cc22182016-08-29 13:26:14 -0700425 "//third_party:fontconfig",
mtklein3cc22182016-08-29 13:26:14 -0700426 ]
427 sources = [
bungeman1ae0e012016-09-19 12:13:16 -0700428 "src/ports/SkFontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700429 "src/ports/SkFontConfigInterface_direct.cpp",
430 "src/ports/SkFontConfigInterface_direct_factory.cpp",
431 "src/ports/SkFontMgr_FontConfigInterface.cpp",
432 "src/ports/SkFontMgr_fontconfig.cpp",
433 "src/ports/SkFontMgr_fontconfig_factory.cpp",
434 ]
435}
436
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500437optional("fontmgr_custom_empty") {
438 enabled = skia_enable_fontmgr_custom_empty
mtkleincdedd0e2016-09-12 15:15:44 -0700439
440 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500441 ":typeface_freetype",
mtkleincdedd0e2016-09-12 15:15:44 -0700442 ]
443 sources = [
444 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500445 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleincdedd0e2016-09-12 15:15:44 -0700446 "src/ports/SkFontMgr_custom_empty_factory.cpp",
447 ]
448}
449
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700450if (skia_lex) {
Ethan Nicholasca82a922017-09-07 09:39:50 -0400451 executable("sksllex") {
452 sources = [
453 "src/sksl/lex/Main.cpp",
454 "src/sksl/lex/NFA.cpp",
455 "src/sksl/lex/RegexNode.cpp",
456 "src/sksl/lex/RegexParser.cpp",
457 ]
458 include_dirs = [ "src/sksl/lex" ]
459 }
460
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700461 action("run_sksllex") {
462 script = "gn/run_sksllex.py"
Ethan Nicholase148bf72017-10-06 14:22:22 -0400463 deps = [
464 ":sksllex(//gn/toolchain:$host_toolchain)",
465 ]
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700466 sources = [
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700467 "src/sksl/lex/sksl.lex",
468 ]
469
470 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
471 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
472 outputs = [
473 "$target_out_dir/" +
474 rebase_path("src/sksl/lex/SkSLLexer.h", target_out_dir),
475 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
476 # confused due to the same file being named by two different paths
477 ]
478 sksllex_path = "$root_out_dir/"
479 sksllex_path += "sksllex"
480 if (host_os == "win") {
481 sksllex_path += ".exe"
482 }
483 args = [
484 rebase_path(sksllex_path),
485 rebase_path("bin/clang-format"),
486 rebase_path("src"),
487 ]
488 }
489} else {
490 group("run_sksllex") {
491 }
492}
493
494if (skia_compile_processors) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400495 executable("skslc") {
496 defines = [ "SKSL_STANDALONE" ]
497 sources = [
498 "src/sksl/SkSLMain.cpp",
499 ]
500 sources += skia_sksl_sources
501 include_dirs = [
502 "src/gpu",
503 "src/sksl",
504 ]
505 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500506 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400507 "//third_party/spirv-tools",
508 ]
509 }
510
511 skia_gpu_processor_outputs = []
512 foreach(src, skia_gpu_processor_sources) {
513 dir = get_path_info(src, "dir")
514 name = get_path_info(src, "name")
515
516 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
517 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
518 skia_gpu_processor_outputs += [
519 "$target_out_dir/" + rebase_path("$dir/$name.h", target_out_dir),
520 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
521 # confused due to the same file being named by two different paths
522 ]
523 }
524
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500525 action("create_sksl_enums") {
526 script = "gn/create_sksl_enums.py"
527 sources = [
528 "include/private/GrSharedEnums.h",
529 ]
530 outputs = [
531 "$target_out_dir/" +
Ben Wagnera56c4d22018-01-24 17:32:17 -0500532 rebase_path("src/sksl/sksl_enums.inc", target_out_dir),
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500533 ]
534 args = [
535 rebase_path(sources[0]),
536 rebase_path(outputs[0]),
537 ]
538 }
539
Ethan Nicholas762466e2017-06-29 10:03:38 -0400540 action("compile_processors") {
541 script = "gn/compile_processors.py"
542 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500543 ":create_sksl_enums",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400544 ":skslc(//gn/toolchain:$host_toolchain)",
545 ]
546 sources = skia_gpu_processor_sources
547 outputs = skia_gpu_processor_outputs
548 skslc_path = "$root_out_dir/"
549 if (host_toolchain != default_toolchain_name) {
550 skslc_path += "$host_toolchain/"
551 }
552 skslc_path += "skslc"
553 if (host_os == "win") {
554 skslc_path += ".exe"
555 }
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400556 args = [
557 rebase_path(skslc_path),
Eric Borenb121be72017-07-28 10:00:51 -0400558 rebase_path("bin/clang-format"),
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400559 ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400560 args += rebase_path(skia_gpu_processor_sources)
561 }
562} else {
563 skia_gpu_processor_outputs = []
564 group("compile_processors") {
565 }
566}
567
Mike Klein33ad63a2018-11-11 07:17:00 -0500568optional("gpu_for_real") {
mtklein06c35c02016-09-20 12:28:12 -0700569 enabled = skia_enable_gpu
Ethan Nicholas762466e2017-06-29 10:03:38 -0400570 deps = [
571 ":compile_processors",
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700572 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400573 ]
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700574 if (skia_generate_workarounds) {
575 deps += [ ":workaround_list" ]
576 }
mtkleine9fb3d52016-09-20 15:11:46 -0700577 public_defines = []
Chris Dalton3a67b8e2018-05-03 09:30:29 -0600578 public_configs = []
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400579 public_deps = []
mtkleine9fb3d52016-09-20 15:11:46 -0700580
Brian Salomon3d6801e2017-12-11 10:06:31 -0500581 sources = skia_gpu_sources + skia_sksl_sources + skia_gpu_processor_outputs
Kevin Lubick93faa672018-10-10 15:54:53 -0400582 if (!skia_enable_ccpr) {
583 sources -= skia_ccpr_sources
584 sources += [ "src/gpu/ccpr/GrCoverageCountingPathRenderer_none.cpp" ]
585 }
Kevin Lubick4bf2c262018-10-15 09:35:54 -0400586 if (!skia_enable_nvpr) {
587 sources -= skia_nvpr_sources
588 sources += [ "src/gpu/GrPathRendering_none.cpp" ]
589 }
mtklein06c35c02016-09-20 12:28:12 -0700590
591 # These paths need to be absolute to match the ones produced by shared_sources.gni.
Brian Salomon3d6801e2017-12-11 10:06:31 -0500592 sources -= get_path_info([ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ],
mtklein06c35c02016-09-20 12:28:12 -0700593 "abspath")
Mike Klein703cf5a2016-10-13 17:18:04 -0400594 libs = []
mtklein06c35c02016-09-20 12:28:12 -0700595 if (is_android) {
Hal Canary25375e82018-03-14 15:16:56 -0400596 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Derek Sollenberger7a869872017-06-27 15:37:25 -0400597
598 # this lib is required to link against AHardwareBuffer
599 if (defined(ndk_api) && ndk_api >= 26) {
600 libs += [ "android" ]
601 }
Kevin Lubick4a24e102017-03-29 11:19:01 -0400602 } else if (skia_use_egl) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500603 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Kevin Lubick4a24e102017-03-29 11:19:01 -0400604 libs += [ "EGL" ]
Chinmay Garded92d0352018-09-17 10:23:28 -0700605 } else if (is_linux && skia_use_x11) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500606 sources += [ "src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp" ]
Mike Kleina27f2692018-06-20 11:06:39 -0400607 libs += [ "GL" ]
mtklein06c35c02016-09-20 12:28:12 -0700608 } else if (is_mac) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500609 sources += [ "src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
Chinmay Garde130a1182016-11-23 11:43:56 -0800610 } else if (is_ios) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500611 sources += [ "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400612 } else if (is_win) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500613 sources += [ "src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400614 libs += [ "OpenGL32.lib" ]
mtklein06c35c02016-09-20 12:28:12 -0700615 } else {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500616 sources += [ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ]
mtklein06c35c02016-09-20 12:28:12 -0700617 }
mtkleine9fb3d52016-09-20 15:11:46 -0700618
619 if (skia_use_vulkan) {
Greg Danielda16cce2018-08-01 09:23:57 -0400620 public_defines += [ "SK_VULKAN" ]
Greg Daniel18dbfd02018-05-29 10:46:51 -0400621 deps += [ "third_party/vulkanmemoryallocator" ]
mtkleine9fb3d52016-09-20 15:11:46 -0700622 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700623 if (skia_enable_vulkan_debug_layers) {
624 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
625 }
mtkleine9fb3d52016-09-20 15:11:46 -0700626 }
Greg Daniel91dfa3b2018-05-22 13:25:15 -0400627
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400628 if (skia_enable_spirv_validation) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400629 deps += [ "//third_party/spirv-tools" ]
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400630 public_defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
631 }
Greg Daniele5ddff52017-07-05 16:49:36 -0400632
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400633 cflags_objcc = []
Greg Daniele5ddff52017-07-05 16:49:36 -0400634 if (skia_use_metal) {
635 public_defines += [ "SK_METAL" ]
636 sources += skia_metal_sources
637 libs += [ "Metal.framework" ]
Greg Daniel53956d92018-08-08 14:41:19 -0400638 libs += [ "Foundation.framework" ]
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400639 cflags_objcc += [ "-fobjc-arc" ]
Greg Daniele5ddff52017-07-05 16:49:36 -0400640 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500641
642 if (skia_enable_atlas_text) {
643 sources += skia_atlas_text_sources
644 }
Kevin Lubickf4def342018-10-04 12:52:50 -0400645
646 if (is_debug) {
647 public_defines += [ "SK_ENABLE_DUMP_GPU" ]
648 }
mtklein06c35c02016-09-20 12:28:12 -0700649}
650
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400651optional("heif") {
652 enabled = skia_use_libheif
653 public_defines = [ "SK_HAS_HEIF_LIBRARY" ]
654
655 deps = []
656
657 sources = [
658 "src/codec/SkHeifCodec.cpp",
659 ]
660}
661
mtklein63213812016-08-24 09:55:56 -0700662optional("jpeg") {
663 enabled = skia_use_libjpeg_turbo
664 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
665
mtklein63213812016-08-24 09:55:56 -0700666 deps = [
667 "//third_party/libjpeg-turbo:libjpeg",
668 ]
Mike Kleinf105dc72018-06-05 15:22:54 -0400669 public = [
670 "include/encode/SkJpegEncoder.h",
671 ]
mtklein63213812016-08-24 09:55:56 -0700672 sources = [
673 "src/codec/SkJpegCodec.cpp",
674 "src/codec/SkJpegDecoderMgr.cpp",
675 "src/codec/SkJpegUtility.cpp",
mtklein63213812016-08-24 09:55:56 -0700676 "src/images/SkJPEGWriteUtility.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400677 "src/images/SkJpegEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700678 ]
679}
680
681optional("pdf") {
Hal Canary43fb7a02016-12-30 13:09:03 -0500682 enabled = skia_use_zlib && skia_enable_pdf
683 public_defines = [ "SK_SUPPORT_PDF" ]
mtklein63213812016-08-24 09:55:56 -0700684
mtklein63213812016-08-24 09:55:56 -0700685 deps = [
686 "//third_party/zlib",
687 ]
Hal Canary83e0f1b2018-04-05 16:58:41 -0400688 if (skia_use_libjpeg_turbo) {
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700689 deps += [ ":jpeg" ]
Hal Canary83e0f1b2018-04-05 16:58:41 -0400690 }
brettwb9447282016-09-01 14:24:39 -0700691 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -0700692 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
mtklein63213812016-08-24 09:55:56 -0700693
694 if (skia_use_sfntly) {
695 deps += [ "//third_party/sfntly" ]
Hal Canary43fb7a02016-12-30 13:09:03 -0500696 public_defines += [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -0700697 }
698}
699
700optional("png") {
701 enabled = skia_use_libpng
702 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
703
mtklein63213812016-08-24 09:55:56 -0700704 deps = [
705 "//third_party/libpng",
706 ]
707 sources = [
708 "src/codec/SkIcoCodec.cpp",
709 "src/codec/SkPngCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400710 "src/images/SkPngEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700711 ]
712}
713
scroggof84ad642016-10-31 09:02:57 -0700714optional("raw") {
Mike Klein10d665d2016-11-01 11:46:10 -0400715 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -0700716 public_defines = [ "SK_CODEC_DECODES_RAW" ]
717
718 deps = [
719 "//third_party/dng_sdk",
720 "//third_party/libjpeg-turbo:libjpeg",
721 "//third_party/piex",
722 ]
723
724 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
725 # Skia.
726 configs_to_remove = [ "//gn:no_exceptions" ]
727
728 sources = [
scroggof84ad642016-10-31 09:02:57 -0700729 "src/codec/SkRawCodec.cpp",
730 ]
731}
732
Mike Klein852a8cb2018-05-15 10:46:58 -0400733import("third_party/skcms/skcms.gni")
Brian Osman8dc68c62018-05-30 12:57:45 -0400734source_set("skcms") {
Mike Klein852a8cb2018-05-15 10:46:58 -0400735 cflags = []
736 if (!is_win || is_clang) {
737 cflags += [
738 "-w",
739 "-std=c11",
740 ]
741 }
742
743 public = [
744 "third_party/skcms/skcms.h",
745 ]
746 sources = rebase_path(skcms_sources, ".", "third_party/skcms")
747}
748
mtklein3cc22182016-08-29 13:26:14 -0700749optional("typeface_freetype") {
750 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -0700751
752 deps = [
753 "//third_party/freetype2",
754 ]
755 sources = [
756 "src/ports/SkFontHost_FreeType.cpp",
757 "src/ports/SkFontHost_FreeType_common.cpp",
758 ]
759}
760
mtklein457b42a2016-08-23 13:56:37 -0700761optional("webp") {
762 enabled = skia_use_libwebp
763 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
764
mtklein457b42a2016-08-23 13:56:37 -0700765 deps = [
766 "//third_party/libwebp",
767 ]
768 sources = [
mtklein457b42a2016-08-23 13:56:37 -0700769 "src/codec/SkWebpCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400770 "src/images/SkWebpEncoder.cpp",
mtklein457b42a2016-08-23 13:56:37 -0700771 ]
mtkleineb3c4252016-08-23 07:38:09 -0700772}
773
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400774optional("wuffs") {
775 enabled = skia_use_wuffs
776 public_defines = [ "SK_HAS_WUFFS_LIBRARY" ]
777
778 deps = [
779 "//third_party/wuffs",
780 ]
781 sources = [
782 "src/codec/SkWuffsCodec.cpp",
783 ]
784}
785
mtklein63213812016-08-24 09:55:56 -0700786optional("xml") {
787 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +0000788 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -0700789
mtklein63213812016-08-24 09:55:56 -0700790 deps = [
791 "//third_party/expat",
792 ]
793 sources = [
Mike Kleinbd41bcc2017-02-09 16:38:15 -0500794 "src/svg/SkSVGCanvas.cpp",
795 "src/svg/SkSVGDevice.cpp",
mtklein63213812016-08-24 09:55:56 -0700796 "src/xml/SkDOM.cpp",
797 "src/xml/SkXMLParser.cpp",
798 "src/xml/SkXMLWriter.cpp",
799 ]
800}
801
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700802if (skia_enable_gpu && skia_generate_workarounds) {
803 action("workaround_list") {
804 script = "tools/build_workaround_header.py"
805
806 inputs = [
807 "src/gpu/gpu_workaround_list.txt",
808 ]
809
810 # see comments in skia_compile_processors about out dir path shenanigans.
811 output_file =
Adrienne Walkerab7181d2018-05-14 14:02:03 -0700812 rebase_path("include/gpu/GrDriverBugWorkaroundsAutogen.h", root_out_dir)
Adrienne Walker1df7cd82018-04-18 13:46:25 -0700813
814 outputs = [
815 "$root_out_dir/$output_file",
816 ]
817 args = [
818 "--output-file",
819 "$output_file",
820 ]
821
822 foreach(file, inputs) {
823 args += [ rebase_path(file, root_build_dir) ]
824 }
825 }
826}
827
Mike Klein33ad63a2018-11-11 07:17:00 -0500828# Temporary fake targets so Flutter-in-Fuchsia can "depend" on them.
829# TODO: rename :gpu_for_real back to :gpu when cleaning up.
830source_set("effects") {
831}
832source_set("gpu") {
833}
834
mtkleinc04ff472016-06-23 10:29:30 -0700835component("skia") {
836 public_configs = [ ":skia_public" ]
837 configs += skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -0700838
Mike Klein607b0a72018-11-07 16:17:34 -0500839 public_deps = [
Mike Klein33ad63a2018-11-11 07:17:00 -0500840 ":gpu_for_real",
Mike Klein607b0a72018-11-07 16:17:34 -0500841 ":pdf",
842 ":skcms",
843 ]
844
mtkleinc04ff472016-06-23 10:29:30 -0700845 deps = [
anmittalb8b3f712016-08-25 04:55:19 -0700846 ":arm64",
847 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -0700848 ":avx",
Mike Klein54378232018-11-08 12:08:05 +0000849 ":compile_processors",
anmittalb8b3f712016-08-25 04:55:19 -0700850 ":crc32",
mtkleina45be612016-08-29 15:22:10 -0700851 ":fontmgr_android",
mtkleind2e39db2016-09-07 07:52:55 -0700852 ":fontmgr_custom",
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -0500853 ":fontmgr_custom_empty",
Hal Canaryff2742e2018-01-30 11:35:47 -0500854 ":fontmgr_empty",
mtklein3cc22182016-08-29 13:26:14 -0700855 ":fontmgr_fontconfig",
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400856 ":heif",
Mike Klein1b9b7d52018-02-27 10:37:40 -0500857 ":hsw",
mtklein63213812016-08-24 09:55:56 -0700858 ":jpeg",
mtklein9b8583d2016-08-24 17:32:30 -0700859 ":none",
mtklein63213812016-08-24 09:55:56 -0700860 ":png",
scroggof84ad642016-10-31 09:02:57 -0700861 ":raw",
mtklein9b8583d2016-08-24 17:32:30 -0700862 ":sse2",
863 ":sse41",
864 ":sse42",
865 ":ssse3",
mtkleineb3c4252016-08-23 07:38:09 -0700866 ":webp",
Leon Scroggins IIIe93ec682018-10-26 09:25:51 -0400867 ":wuffs",
mtklein63213812016-08-24 09:55:56 -0700868 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -0700869 ]
870
Kevin Lubick134be1d2018-10-30 15:05:04 -0400871 if (skia_enable_nima) {
872 deps += [ "//third_party/Nima-Cpp" ]
873 }
874
Chinmay Garde43f115c2016-11-16 15:04:12 -0800875 # This file (and all GN files in Skia) are designed to work with an
876 # empty sources assignment filter; we handle all that explicitly.
877 # We clear the filter here for clients who may have set up a global filter.
878 set_sources_assignment_filter([])
879
mtkleinc04ff472016-06-23 10:29:30 -0700880 sources = []
brettwb9447282016-09-01 14:24:39 -0700881 sources += skia_core_sources
brettwb9447282016-09-01 14:24:39 -0700882 sources += skia_utils_sources
Hal Canary6ad3d2f2016-12-20 16:15:56 -0500883 sources += skia_xps_sources
Mike Klein54378232018-11-08 12:08:05 +0000884 sources += skia_effects_sources
885 sources += skia_effects_imagefilter_sources
mtkleinc04ff472016-06-23 10:29:30 -0700886 sources += [
Stan Iliev73d8fd92017-08-02 15:36:24 -0400887 "src/android/SkAndroidFrameworkUtils.cpp",
Leon Scroggins III42ee2842018-01-14 14:46:51 -0500888 "src/android/SkAnimatedImage.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700889 "src/android/SkBitmapRegionCodec.cpp",
890 "src/android/SkBitmapRegionDecoder.cpp",
891 "src/codec/SkAndroidCodec.cpp",
Nigel Tao612a65d2018-11-09 10:10:31 +1100892 "src/codec/SkAndroidCodecAdapter.cpp",
Leon Scroggins IIId81fed92017-06-01 13:42:28 -0400893 "src/codec/SkBmpBaseCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700894 "src/codec/SkBmpCodec.cpp",
895 "src/codec/SkBmpMaskCodec.cpp",
896 "src/codec/SkBmpRLECodec.cpp",
897 "src/codec/SkBmpStandardCodec.cpp",
898 "src/codec/SkCodec.cpp",
899 "src/codec/SkCodecImageGenerator.cpp",
Leon Scroggins III22f673d2018-05-30 15:33:46 -0400900 "src/codec/SkColorTable.cpp",
Leon Scroggins III36f7e322018-08-27 11:55:46 -0400901 "src/codec/SkEncodedInfo.cpp",
scroggo19b91532016-10-24 09:03:26 -0700902 "src/codec/SkGifCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700903 "src/codec/SkMaskSwizzler.cpp",
904 "src/codec/SkMasks.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700905 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700906 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -0700907 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700908 "src/codec/SkSwizzler.cpp",
909 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700910 "src/images/SkImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700911 "src/ports/SkDiscardableMemory_none.cpp",
Mike Klein54378232018-11-08 12:08:05 +0000912 "src/ports/SkGlobalInitialization_default.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700913 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700914 "src/ports/SkMemory_malloc.cpp",
915 "src/ports/SkOSFile_stdio.cpp",
916 "src/sfnt/SkOTTable_name.cpp",
917 "src/sfnt/SkOTUtils.cpp",
918 "src/utils/mac/SkStream_mac.cpp",
scroggo3d3a65c2016-10-24 12:28:30 -0700919 "third_party/gif/SkGifImageReader.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700920 ]
brettwb9447282016-09-01 14:24:39 -0700921
Kevin Lubick32dfdbe2018-10-18 09:47:01 -0400922 defines = []
923 if (!skia_enable_skpicture) {
924 defines = [ "SK_DISABLE_SKPICTURE" ]
925 sources -= skia_skpicture_sources
Mike Klein54378232018-11-08 12:08:05 +0000926 sources -= [ "//src/effects/imagefilters/SkPictureImageFilter.cpp" ]
Kevin Lubick32dfdbe2018-10-18 09:47:01 -0400927 sources += [ "src/core/SkPicture_none.cpp" ]
928 }
929
mtklein7d6fb2c2016-08-25 14:50:44 -0700930 libs = []
931
mtkleinc04ff472016-06-23 10:29:30 -0700932 if (is_win) {
933 sources += [
Mike Kleinae7e6712016-10-11 17:49:33 -0400934 "src/fonts/SkFontMgr_indirect.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700935 "src/ports/SkDebug_win.cpp",
936 "src/ports/SkFontHost_win.cpp",
937 "src/ports/SkFontMgr_win_dw.cpp",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500938 "src/ports/SkFontMgr_win_dw_factory.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700939 "src/ports/SkImageEncoder_WIC.cpp",
940 "src/ports/SkImageGeneratorWIC.cpp",
941 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -0700942 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700943 "src/ports/SkScalerContext_win_dw.cpp",
944 "src/ports/SkTLS_win.cpp",
945 "src/ports/SkTypeface_win_dw.cpp",
946 ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400947 libs += [
948 "FontSub.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500949 "Gdi32.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400950 "Ole32.lib",
951 "OleAut32.lib",
952 "User32.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500953 "Usp10.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400954 ]
mtkleinc04ff472016-06-23 10:29:30 -0700955 } else {
956 sources += [
mtkleinc04ff472016-06-23 10:29:30 -0700957 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -0700958 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700959 "src/ports/SkTLS_pthread.cpp",
960 ]
Ben Wagnerbe6ae5b2017-08-31 16:45:23 -0400961 libs += [ "dl" ]
mtkleinc04ff472016-06-23 10:29:30 -0700962 }
963
mtklein7d6fb2c2016-08-25 14:50:44 -0700964 if (is_android) {
Mike Klein1c471872017-01-13 15:27:45 -0500965 deps += [ "//third_party/expat" ]
Mike Kleine459afd2017-03-03 09:21:30 -0500966 if (defined(ndk) && ndk != "") {
Mike Klein1c471872017-01-13 15:27:45 -0500967 deps += [ "//third_party/cpu-features" ]
968 }
mtklein06c35c02016-09-20 12:28:12 -0700969 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -0700970 libs += [
971 "EGL",
972 "GLESv2",
973 "log",
974 ]
975 }
976
Kevin Lubick217056c2018-09-20 17:39:31 -0400977 if (is_linux || target_cpu == "wasm") {
mtklein06c35c02016-09-20 12:28:12 -0700978 sources += [ "src/ports/SkDebug_stdio.cpp" ]
Hal Canary25375e82018-03-14 15:16:56 -0400979 if (skia_use_egl) {
980 libs += [ "GLESv2" ]
981 }
mtkleinc04ff472016-06-23 10:29:30 -0700982 }
983
984 if (is_mac) {
985 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -0700986 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700987 "src/ports/SkFontHost_mac.cpp",
988 "src/ports/SkImageEncoder_CG.cpp",
989 "src/ports/SkImageGeneratorCG.cpp",
990 ]
mtklein09e61f72016-08-23 13:35:28 -0700991 libs += [
bungeman3e306f62017-03-29 11:32:02 -0400992 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
993 "AppKit.framework",
mtklein09e61f72016-08-23 13:35:28 -0700994 "ApplicationServices.framework",
995 "OpenGL.framework",
996 ]
mtkleinc04ff472016-06-23 10:29:30 -0700997 }
abarth6fc8ff02016-07-15 15:15:15 -0700998
Mike Klein7d302882016-11-03 14:06:31 -0400999 if (is_ios) {
1000 sources += [
1001 "src/ports/SkDebug_stdio.cpp",
1002 "src/ports/SkFontHost_mac.cpp",
1003 "src/ports/SkImageEncoder_CG.cpp",
1004 "src/ports/SkImageGeneratorCG.cpp",
1005 ]
1006 libs += [
1007 "CoreFoundation.framework",
1008 "CoreGraphics.framework",
1009 "CoreText.framework",
1010 "ImageIO.framework",
1011 "MobileCoreServices.framework",
bungeman3e306f62017-03-29 11:32:02 -04001012
1013 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
1014 "UIKit.framework",
Mike Klein7d302882016-11-03 14:06:31 -04001015 ]
1016 }
1017
abarth6fc8ff02016-07-15 15:15:15 -07001018 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -07001019 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -07001020 }
mtkleinc04ff472016-06-23 10:29:30 -07001021}
1022
Kevin Lubickcbcff382018-10-02 09:02:18 -04001023static_library("pathkit") {
1024 public_configs = [ ":skia_public" ]
1025 configs += skia_library_configs
1026
1027 deps = [
1028 ":arm64",
1029 ":armv7",
1030 ":avx",
1031 ":crc32",
1032 ":hsw",
1033 ":none",
1034 ":sse2",
1035 ":sse41",
1036 ":sse42",
1037 ":ssse3",
1038 ]
1039
1040 # This file (and all GN files in Skia) are designed to work with an
1041 # empty sources assignment filter; we handle all that explicitly.
1042 # We clear the filter here for clients who may have set up a global filter.
1043 set_sources_assignment_filter([])
1044
1045 sources = []
1046 sources += skia_pathops_sources
1047 sources += [
1048 "src/core/SkAnalyticEdge.cpp",
1049 "src/core/SkArenaAlloc.cpp",
1050 "src/core/SkCubicMap.cpp",
1051 "src/core/SkEdge.cpp",
1052 "src/core/SkEdgeBuilder.cpp",
1053 "src/core/SkEdgeClipper.cpp",
1054 "src/core/SkGeometry.cpp",
1055 "src/core/SkLineClipper.cpp",
1056 "src/core/SkMallocPixelRef.cpp",
1057 "src/core/SkMath.cpp",
1058 "src/core/SkMatrix.cpp",
1059 "src/core/SkOpts.cpp",
1060 "src/core/SkPaint.cpp",
1061 "src/core/SkPath.cpp",
1062 "src/core/SkPathEffect.cpp",
1063 "src/core/SkPathMeasure.cpp",
1064 "src/core/SkPathRef.cpp",
1065 "src/core/SkPoint.cpp",
1066 "src/core/SkRRect.cpp",
1067 "src/core/SkRect.cpp",
1068 "src/core/SkSemaphore.cpp",
1069 "src/core/SkStream.cpp",
1070 "src/core/SkString.cpp",
1071 "src/core/SkStringUtils.cpp",
1072 "src/core/SkStroke.cpp",
1073 "src/core/SkStrokeRec.cpp",
1074 "src/core/SkStrokerPriv.cpp",
1075 "src/core/SkThreadID.cpp",
1076 "src/core/SkUtils.cpp",
1077 "src/effects/SkDashPathEffect.cpp",
1078 "src/effects/SkTrimPathEffect.cpp",
1079 "src/ports/SkDebug_stdio.cpp",
1080 "src/ports/SkMemory_malloc.cpp",
1081 "src/utils/SkDashPath.cpp",
1082 "src/utils/SkParse.cpp",
1083 "src/utils/SkParsePath.cpp",
1084 "src/utils/SkUTF.cpp",
1085 ]
1086}
1087
mtkleinc095df52016-08-24 12:23:52 -07001088# Targets guarded by skia_enable_tools may use //third_party freely.
1089if (skia_enable_tools) {
Mike Klein308b5ac2016-12-06 16:03:52 -05001090 # Used by gn_to_bp.py to list our public include dirs.
1091 source_set("public") {
1092 configs += [ ":skia_public" ]
1093 }
1094
Mike Kleinc36dedf2016-11-18 09:35:28 -05001095 config("skia.h_config") {
1096 include_dirs = [ "$target_gen_dir" ]
1097 }
1098 action("skia.h") {
1099 public_configs = [ ":skia.h_config" ]
1100 skia_h = "$target_gen_dir/skia.h"
1101 script = "gn/find_headers.py"
Florin Malita6e4d95f2018-05-30 09:27:32 -04001102
1103 # TODO: would be cool to not hard-code these here, but how?
1104 module_public_includes = [
1105 "modules/sksg/include",
1106 "modules/skottie/include",
1107 ]
1108 args =
1109 [ rebase_path("//bin/gn") ] + [ rebase_path("//") ] +
1110 [ rebase_path(skia_h, root_build_dir) ] +
1111 rebase_path(skia_public_includes) + rebase_path(module_public_includes)
Mike Kleinc36dedf2016-11-18 09:35:28 -05001112 depfile = "$skia_h.deps"
1113 outputs = [
1114 skia_h,
1115 ]
1116 }
1117
Brian Osmanc9a42472018-05-31 13:17:12 -04001118 if (target_cpu == "x64") {
Mike Kleinc36dedf2016-11-18 09:35:28 -05001119 executable("fiddle") {
1120 libs = []
Mike Kleinc36dedf2016-11-18 09:35:28 -05001121 sources = [
Mike Kleinc36dedf2016-11-18 09:35:28 -05001122 "tools/fiddle/draw.cpp",
1123 "tools/fiddle/fiddle_main.cpp",
1124 ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -04001125
1126 if (skia_use_egl) {
1127 sources += [ "tools/fiddle/egl_context.cpp" ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -04001128 } else {
1129 sources += [ "tools/fiddle/null_context.cpp" ]
1130 }
Joe Gregorio1e735c02017-04-19 14:05:14 -04001131 testonly = true
Mike Kleinc36dedf2016-11-18 09:35:28 -05001132 deps = [
Joe Gregorio1e735c02017-04-19 14:05:14 -04001133 ":flags",
Robert Phillips57e08282017-11-16 14:59:48 -05001134 ":gpu_tool_utils",
Mike Kleinc36dedf2016-11-18 09:35:28 -05001135 ":skia",
1136 ":skia.h",
Florin Malita6e4d95f2018-05-30 09:27:32 -04001137 "modules/skottie",
Mike Kleinc36dedf2016-11-18 09:35:28 -05001138 ]
1139 }
1140 }
1141
Brian Osmanc9a42472018-05-31 13:17:12 -04001142 source_set("public_headers_warnings_check") {
1143 sources = [
1144 "tools/public_headers_warnings_check.cpp",
1145 ]
1146 configs -= [ "//gn:warnings_except_public_headers" ]
1147 deps = [
1148 ":skia",
1149 ":skia.h",
1150 "modules/skottie",
1151 ]
Mike Kleinc36dedf2016-11-18 09:35:28 -05001152 }
1153
mtkleinc095df52016-08-24 12:23:52 -07001154 template("test_lib") {
1155 config(target_name + "_config") {
1156 include_dirs = invoker.public_include_dirs
mtkleina627b5c2016-09-20 13:36:47 -07001157 if (defined(invoker.public_defines)) {
1158 defines = invoker.public_defines
1159 }
mtklein25c81d42016-07-27 13:55:26 -07001160 }
mtkleinc095df52016-08-24 12:23:52 -07001161 source_set(target_name) {
1162 forward_variables_from(invoker, "*", [ "public_include_dirs" ])
1163 public_configs = [
1164 ":" + target_name + "_config",
1165 ":skia_private",
1166 ]
1167
1168 if (!defined(deps)) {
1169 deps = []
1170 }
1171 deps += [ ":skia" ]
1172 testonly = true
1173 }
mtklein25c81d42016-07-27 13:55:26 -07001174 }
mtklein25c81d42016-07-27 13:55:26 -07001175
Mike Kleine6682eb2017-01-05 10:54:57 -05001176 template("test_app") {
Jim Van Verth443a9132017-11-28 09:45:26 -05001177 if (is_ios) {
1178 app_name = target_name
1179 gen_path = target_gen_dir
1180
1181 action("${app_name}_generate_info_plist") {
1182 script = "//gn/gen_plist_ios.py"
1183 outputs = [
1184 "$gen_path/${app_name}_Info.plist",
1185 ]
1186 args = [ rebase_path("$gen_path/$app_name", root_build_dir) ]
1187 }
1188
1189 bundle_data("${app_name}_bundle_info_plist") {
1190 public_deps = [
1191 ":${app_name}_generate_info_plist",
1192 ]
1193 sources = [
1194 "$gen_path/${app_name}_Info.plist",
1195 ]
1196 outputs = [
1197 "{{bundle_root_dir}}/Info.plist",
1198 ]
1199 }
1200
Jim Van Verth329c5a62017-11-29 11:42:33 -05001201 bundle_ios_data =
1202 defined(invoker.bundle_ios_data) && invoker.bundle_ios_data
1203
1204 if (bundle_ios_data) {
1205 has_skps =
1206 "True" == exec_script("//gn/checkdir.py",
1207 [ rebase_path("skps", root_build_dir) ],
1208 "trim string")
1209 bundle_data("${app_name}_bundle_resources") {
1210 sources = [
1211 "resources",
1212 ]
1213 outputs = [
1214 # iOS reserves the folders 'Resources' and 'resources' so store one level deeper
1215 "{{bundle_resources_dir}}/data/resources",
1216 ]
1217 }
1218
1219 if (has_skps) {
1220 bundle_data("${app_name}_bundle_skps") {
1221 sources = [
1222 "skps",
1223 ]
1224 outputs = [
1225 # Store in same folder as resources
1226 "{{bundle_resources_dir}}/data/skps",
1227 ]
1228 }
1229 }
1230 }
1231
Jim Van Verth443a9132017-11-28 09:45:26 -05001232 executable("${app_name}_generate_executable") {
1233 forward_variables_from(invoker,
1234 "*",
1235 [
1236 "output_name",
1237 "visibility",
1238 "is_shared_library",
1239 ])
Mike Klein154e6da2017-07-26 15:13:47 -04001240 configs += [ ":skia_private" ]
Mike Kleine6682eb2017-01-05 10:54:57 -05001241 testonly = true
Jim Van Verth443a9132017-11-28 09:45:26 -05001242 output_name = rebase_path("$gen_path/$app_name", root_build_dir)
1243 }
1244
1245 bundle_data("${app_name}_bundle_executable") {
1246 public_deps = [
1247 ":${app_name}_generate_executable",
1248 ]
1249 sources = [
1250 "$gen_path/$app_name",
1251 ]
1252 outputs = [
1253 "{{bundle_executable_dir}}/$app_name",
1254 ]
1255 testonly = true
1256 }
1257
1258 create_bundle("$app_name") {
1259 product_type = "com.apple.product-type.application"
1260 testonly = true
1261
1262 bundle_root_dir = "${root_build_dir}/${target_name}.app"
1263 bundle_resources_dir = bundle_root_dir
1264 bundle_executable_dir = bundle_root_dir
1265 bundle_plugins_dir = bundle_root_dir + "/Plugins"
1266
1267 deps = [
1268 ":${app_name}_bundle_executable",
1269 ":${app_name}_bundle_info_plist",
1270 ]
Jim Van Verth329c5a62017-11-29 11:42:33 -05001271 if (bundle_ios_data) {
1272 deps += [ ":${app_name}_bundle_resources" ]
1273 if (has_skps) {
1274 deps += [ ":${app_name}_bundle_skps" ]
1275 }
1276 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001277
1278 # should only code sign when running on a device, not the simulator
1279 if (target_cpu != "x64") {
1280 code_signing_script = "//gn/codesign_ios.py"
1281 code_signing_sources = [ "$target_gen_dir/$app_name" ]
1282 code_signing_outputs = [
1283 "$bundle_root_dir/_CodeSignature/CodeResources",
1284 "$bundle_root_dir/embedded.mobileprovision",
1285 ]
Jim Van Verth4e502972017-12-07 15:16:10 -05001286 code_signing_args = [
1287 rebase_path("$bundle_root_dir", root_build_dir),
1288 skia_ios_identity,
1289 skia_ios_profile,
1290 ]
Jim Van Verth443a9132017-11-28 09:45:26 -05001291 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001292 }
1293 } else {
Jim Van Verth443a9132017-11-28 09:45:26 -05001294 # !is_ios
1295
1296 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
1297 shared_library("lib" + target_name) {
1298 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1299 configs += [ ":skia_private" ]
1300 testonly = true
1301 }
1302 } else {
1303 _executable = target_name
1304 executable(_executable) {
1305 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1306 configs += [ ":skia_private" ]
1307 testonly = true
1308 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001309 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001310 if (is_android && skia_android_serial != "" && defined(_executable)) {
1311 action("push_" + target_name) {
1312 script = "gn/push_to_android.py"
1313 deps = [
1314 ":" + _executable,
1315 ]
1316 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
1317 outputs = [
1318 _stamp,
1319 ]
1320 args = [
1321 rebase_path("$root_build_dir/$_executable"),
1322 skia_android_serial,
1323 rebase_path(_stamp),
1324 ]
1325 testonly = true
1326 }
Mike Klein7d921032017-01-05 12:20:41 -05001327 }
1328 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001329 }
1330
Greg Danielda16cce2018-08-01 09:23:57 -04001331 config("moltenvk_config") {
1332 if (defined(skia_moltenvk_path) && skia_moltenvk_path != "") {
1333 if (is_ios) {
1334 moltenvk_framework_path = "$skia_moltenvk_path/MoltenVK/iOS"
1335 } else {
1336 moltenvk_framework_path = "$skia_moltenvk_path/MoltenVK/macOS"
1337 }
1338 cflags = [ "-F$moltenvk_framework_path" ]
1339 ldflags = [ "-F$moltenvk_framework_path" ]
1340 libs = [
1341 "MoltenVK.framework",
1342 "Metal.framework",
1343 "IOSurface.framework",
1344 "QuartzCore.framework",
1345 "Foundation.framework",
1346 ]
1347 if (is_ios) {
1348 libs += [ "UIKit.framework" ]
1349 } else {
1350 libs += [ "IOKit.framework" ]
1351 }
1352 defines = [ "SK_MOLTENVK" ]
1353 }
1354 }
1355
1356 source_set("moltenvk") {
1357 public_configs = [ ":moltenvk_config" ]
1358 }
1359
mtkleinc095df52016-08-24 12:23:52 -07001360 test_lib("gpu_tool_utils") {
mtklein38925aa2016-09-21 10:11:25 -07001361 public_include_dirs = []
Brian Osmanc9a42472018-05-31 13:17:12 -04001362 public_defines = []
1363 public_include_dirs += [ "tools/gpu" ]
mtkleind68f9b02016-09-23 13:18:41 -07001364
Brian Osmanc9a42472018-05-31 13:17:12 -04001365 deps = []
Greg Danielda16cce2018-08-01 09:23:57 -04001366 public_deps = []
Brian Osmanc9a42472018-05-31 13:17:12 -04001367 sources = [
1368 "tools/gpu/GrContextFactory.cpp",
1369 "tools/gpu/GrTest.cpp",
Brian Salomon00a5eb82018-07-11 15:32:05 -04001370 "tools/gpu/MemoryCache.cpp",
1371 "tools/gpu/MemoryCache.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04001372 "tools/gpu/ProxyUtils.cpp",
1373 "tools/gpu/TestContext.cpp",
1374 "tools/gpu/atlastext/GLTestAtlasTextRenderer.cpp",
1375 "tools/gpu/gl/GLTestContext.cpp",
1376 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
Brian Osmanc9a42472018-05-31 13:17:12 -04001377 "tools/gpu/gl/null/NullGLTestContext.cpp",
1378 "tools/gpu/mock/MockTestContext.cpp",
1379 ]
1380 libs = []
1381
1382 if (is_android || skia_use_egl) {
1383 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
1384 } else if (is_ios) {
1385 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
1386 libs += [ "OpenGLES.framework" ]
1387 } else if (is_linux) {
1388 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
Mike Kleina27f2692018-06-20 11:06:39 -04001389 libs += [
1390 "GLU",
1391 "X11",
1392 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001393 } else if (is_mac) {
1394 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
1395 } else if (is_win) {
1396 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
1397 libs += [
1398 "Gdi32.lib",
1399 "OpenGL32.lib",
mtklein38925aa2016-09-21 10:11:25 -07001400 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001401 }
mtklein25c81d42016-07-27 13:55:26 -07001402
Brian Osmanc9a42472018-05-31 13:17:12 -04001403 cflags_objcc = [ "-fobjc-arc" ]
mtklein6ef69992016-09-14 06:12:09 -07001404
Brian Osmanc9a42472018-05-31 13:17:12 -04001405 if (skia_use_angle) {
1406 deps += [ "//third_party/angle2" ]
1407 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
1408 }
Greg Danielb4d89562018-10-03 18:44:49 +00001409 public_include_dirs += [ "third_party/vulkan" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04001410 if (skia_use_vulkan) {
1411 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
1412 sources += [ "tools/gpu/vk/VkTestUtils.cpp" ]
Greg Danielda16cce2018-08-01 09:23:57 -04001413 if (defined(skia_moltenvk_path) && skia_moltenvk_path != "") {
1414 public_deps += [ ":moltenvk" ]
1415 }
Brian Osmanc9a42472018-05-31 13:17:12 -04001416 }
1417 if (skia_use_metal) {
1418 sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
mtkleina627b5c2016-09-20 13:36:47 -07001419 }
mtklein25c81d42016-07-27 13:55:26 -07001420 }
mtklein25c81d42016-07-27 13:55:26 -07001421
mtkleinc095df52016-08-24 12:23:52 -07001422 test_lib("flags") {
1423 public_include_dirs = [ "tools/flags" ]
1424 sources = [
1425 "tools/flags/SkCommandLineFlags.cpp",
mtklein046cb562016-09-16 10:23:12 -07001426 ]
1427 }
1428 test_lib("common_flags") {
1429 public_include_dirs = [ "tools/flags" ]
1430 sources = [
mtkleinc095df52016-08-24 12:23:52 -07001431 "tools/flags/SkCommonFlags.cpp",
1432 "tools/flags/SkCommonFlagsConfig.cpp",
1433 ]
1434 deps = [
mtklein046cb562016-09-16 10:23:12 -07001435 ":flags",
Greg Danielda16cce2018-08-01 09:23:57 -04001436 ]
1437 public_deps = [
mtkleinc095df52016-08-24 12:23:52 -07001438 ":gpu_tool_utils",
1439 ]
1440 }
mtklein25c81d42016-07-27 13:55:26 -07001441
mtkleinc095df52016-08-24 12:23:52 -07001442 test_lib("tool_utils") {
1443 public_include_dirs = [
1444 "tools",
1445 "tools/debugger",
Ben Wagner483c7722018-02-20 17:06:07 -05001446 "tools/fonts",
mtkleinc095df52016-08-24 12:23:52 -07001447 "tools/timer",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001448 "tools/trace",
mtkleinc095df52016-08-24 12:23:52 -07001449 ]
1450 sources = [
mtkleinb37c0342016-09-09 11:07:45 -07001451 "tools/AndroidSkDebugToStdOut.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001452 "tools/CrashHandler.cpp",
Robert Phillips96601082018-05-29 16:13:26 -04001453 "tools/DDLPromiseImageHelper.cpp",
1454 "tools/DDLTileHelper.cpp",
mtklein0590fa52016-09-01 07:06:54 -07001455 "tools/LsanSuppressions.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001456 "tools/ProcStats.cpp",
1457 "tools/Resources.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001458 "tools/UrlDataManager.cpp",
1459 "tools/debugger/SkDebugCanvas.cpp",
1460 "tools/debugger/SkDrawCommand.cpp",
1461 "tools/debugger/SkJsonWriteBuffer.cpp",
Brian Salomon5f33a8c2018-02-26 14:32:39 -05001462 "tools/fonts/SkRandomScalerContext.cpp",
Herb Derby33ac15e2018-08-29 12:36:22 -04001463 "tools/fonts/SkTestEmptyTypeface.h",
Brian Salomon5f33a8c2018-02-26 14:32:39 -05001464 "tools/fonts/SkTestFontMgr.cpp",
Ben Wagner97182cc2018-02-15 10:20:04 -05001465 "tools/fonts/SkTestFontMgr.h",
1466 "tools/fonts/SkTestSVGTypeface.cpp",
1467 "tools/fonts/SkTestSVGTypeface.h",
1468 "tools/fonts/SkTestTypeface.cpp",
1469 "tools/fonts/SkTestTypeface.h",
Brian Salomon5f33a8c2018-02-26 14:32:39 -05001470 "tools/fonts/sk_tool_utils_font.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001471 "tools/random_parse_path.cpp",
1472 "tools/sk_tool_utils.cpp",
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04001473 "tools/timer/SkAnimTimer.h",
mtkleinc095df52016-08-24 12:23:52 -07001474 "tools/timer/Timer.cpp",
Brian Osman53136aa2017-07-20 15:43:35 -04001475 "tools/trace/SkChromeTracingTracer.cpp",
1476 "tools/trace/SkChromeTracingTracer.h",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001477 "tools/trace/SkDebugfTracer.cpp",
1478 "tools/trace/SkDebugfTracer.h",
Brian Osman53136aa2017-07-20 15:43:35 -04001479 "tools/trace/SkEventTracingPriv.cpp",
1480 "tools/trace/SkEventTracingPriv.h",
mtkleinc095df52016-08-24 12:23:52 -07001481 ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001482 libs = []
1483 if (is_ios) {
1484 sources += [ "tools/ios_utils.m" ]
1485 libs += [ "Foundation.framework" ]
1486 }
Hal Canaryfd9bcab2018-04-24 11:47:23 -04001487 defines = []
1488 if (skia_tools_require_resources) {
1489 defines += [ "SK_TOOLS_REQUIRE_RESOURCES" ]
1490 }
mtkleinc095df52016-08-24 12:23:52 -07001491 deps = [
Ben Wagner97182cc2018-02-15 10:20:04 -05001492 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001493 ":flags",
1494 "//third_party/libpng",
1495 ]
1496 public_deps = [
Greg Danielda16cce2018-08-01 09:23:57 -04001497 ":common_flags",
mtkleinc095df52016-08-24 12:23:52 -07001498 "//third_party/jsoncpp",
1499 ]
1500 }
mtklein25c81d42016-07-27 13:55:26 -07001501
Mike Klein6e744122016-10-27 12:21:40 -04001502 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -07001503 test_lib("gm") {
1504 public_include_dirs = [ "gm" ]
1505 sources = gm_sources
1506 deps = [
scroggo19b91532016-10-24 09:03:26 -07001507 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001508 ":skia",
1509 ":tool_utils",
Mike Reed2f0edd52018-05-31 14:22:30 -04001510 "modules/skottie",
Florin Malita26870722018-09-20 14:35:30 -04001511 "modules/skottie:gm",
Florin Malita3b526b02018-05-25 12:43:51 -04001512 "modules/sksg",
mtkleinc095df52016-08-24 12:23:52 -07001513 ]
Greg Danielda16cce2018-08-01 09:23:57 -04001514 public_deps = [
1515 ":gpu_tool_utils",
1516 ]
mtkleinc095df52016-08-24 12:23:52 -07001517 }
mtklein25c81d42016-07-27 13:55:26 -07001518
Mike Klein6e744122016-10-27 12:21:40 -04001519 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07001520 test_lib("tests") {
1521 public_include_dirs = [ "tests" ]
Mike Klein6e744122016-10-27 12:21:40 -04001522 sources = tests_sources + pathops_tests_sources
Leon Scroggins IIIbe85c192018-11-13 13:50:12 -05001523 if (!skia_enable_fontmgr_android) {
Mike Klein6e744122016-10-27 12:21:40 -04001524 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -07001525 }
Ben Wagner37a06c02018-06-22 21:11:00 +00001526 if (!(skia_use_freetype && skia_use_fontconfig)) {
1527 sources -= [ "//tests/FontMgrFontConfigTest.cpp" ]
1528 }
mtkleinc095df52016-08-24 12:23:52 -07001529 deps = [
Hal Canary0f666812018-03-22 15:21:12 -04001530 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001531 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001532 ":skia",
1533 ":tool_utils",
Florin Malita94d4d3e2018-06-18 13:10:51 -04001534 "modules/skottie:tests",
Brian Osmanccb87522018-06-01 19:20:00 +00001535 "modules/sksg:tests",
mtkleinc095df52016-08-24 12:23:52 -07001536 "//third_party/libpng",
1537 "//third_party/zlib",
1538 ]
Mike Kleind63442d2017-03-27 14:16:04 -04001539 public_deps = [
1540 ":gpu_tool_utils", # Test.h #includes headers from this target.
1541 ]
mtkleinc095df52016-08-24 12:23:52 -07001542 }
mtklein2f3416d2016-08-02 16:02:05 -07001543
Mike Klein6e744122016-10-27 12:21:40 -04001544 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07001545 test_lib("bench") {
1546 public_include_dirs = [ "bench" ]
1547 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -07001548 deps = [
1549 ":flags",
1550 ":gm",
1551 ":gpu_tool_utils",
1552 ":skia",
1553 ":tool_utils",
1554 ]
1555 }
mtklein2b6870c2016-07-28 14:17:33 -07001556
mtkleinc095df52016-08-24 12:23:52 -07001557 test_lib("experimental_svg_model") {
Hal Canary0f666812018-03-22 15:21:12 -04001558 public_include_dirs = []
1559 if (skia_use_expat) {
1560 public_include_dirs += [ "experimental/svg/model" ]
1561 sources = [
1562 "experimental/svg/model/SkSVGAttribute.cpp",
1563 "experimental/svg/model/SkSVGAttributeParser.cpp",
1564 "experimental/svg/model/SkSVGCircle.cpp",
1565 "experimental/svg/model/SkSVGClipPath.cpp",
1566 "experimental/svg/model/SkSVGContainer.cpp",
1567 "experimental/svg/model/SkSVGDOM.cpp",
1568 "experimental/svg/model/SkSVGEllipse.cpp",
1569 "experimental/svg/model/SkSVGGradient.cpp",
1570 "experimental/svg/model/SkSVGLine.cpp",
1571 "experimental/svg/model/SkSVGLinearGradient.cpp",
1572 "experimental/svg/model/SkSVGNode.cpp",
1573 "experimental/svg/model/SkSVGPath.cpp",
1574 "experimental/svg/model/SkSVGPattern.cpp",
1575 "experimental/svg/model/SkSVGPoly.cpp",
1576 "experimental/svg/model/SkSVGRadialGradient.cpp",
1577 "experimental/svg/model/SkSVGRect.cpp",
1578 "experimental/svg/model/SkSVGRenderContext.cpp",
1579 "experimental/svg/model/SkSVGSVG.cpp",
1580 "experimental/svg/model/SkSVGShape.cpp",
1581 "experimental/svg/model/SkSVGStop.cpp",
1582 "experimental/svg/model/SkSVGTransformableNode.cpp",
1583 "experimental/svg/model/SkSVGUse.cpp",
1584 "experimental/svg/model/SkSVGValue.cpp",
1585 ]
1586 deps = [
1587 ":skia",
1588 ":xml",
1589 ]
1590 }
mtkleinc095df52016-08-24 12:23:52 -07001591 }
fmalitaa2b9fdf2016-08-03 19:53:36 -07001592
Mike Klein38af9432016-11-11 11:39:44 -05001593 if (skia_use_lua) {
1594 test_lib("lua") {
1595 public_include_dirs = []
1596 sources = [
1597 "src/utils/SkLua.cpp",
1598 "src/utils/SkLuaCanvas.cpp",
1599 ]
1600 deps = [
Herb Derby264182c2018-05-29 15:53:40 -04001601 "modules/skshaper",
Mike Klein38af9432016-11-11 11:39:44 -05001602 "//third_party/lua",
1603 ]
1604 }
1605
Mike Kleine6682eb2017-01-05 10:54:57 -05001606 test_app("lua_app") {
Mike Klein38af9432016-11-11 11:39:44 -05001607 sources = [
1608 "tools/lua/lua_app.cpp",
1609 ]
1610 deps = [
1611 ":lua",
1612 ":skia",
1613 "//third_party/lua",
1614 ]
Mike Klein38af9432016-11-11 11:39:44 -05001615 }
1616
Mike Kleine6682eb2017-01-05 10:54:57 -05001617 test_app("lua_pictures") {
Mike Klein38af9432016-11-11 11:39:44 -05001618 sources = [
1619 "tools/lua/lua_pictures.cpp",
1620 ]
1621 deps = [
1622 ":flags",
1623 ":lua",
1624 ":skia",
1625 ":tool_utils",
1626 "//third_party/lua",
1627 ]
Mike Klein38af9432016-11-11 11:39:44 -05001628 }
1629 }
1630
Cary Clark8032b982017-07-28 11:04:54 -04001631 test_app("bookmaker") {
1632 sources = [
Cary Clark2da9fb82018-11-01 09:29:36 -04001633 "tools/bookmaker/bmhParser.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001634 "tools/bookmaker/bookmaker.cpp",
Cary Clarkbef063a2017-10-31 15:44:45 -04001635 "tools/bookmaker/cataloger.cpp",
Cary Clarka560c472017-11-27 10:44:06 -05001636 "tools/bookmaker/definition.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001637 "tools/bookmaker/fiddleParser.cpp",
Cary Clark2da9fb82018-11-01 09:29:36 -04001638 "tools/bookmaker/hackParser.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001639 "tools/bookmaker/includeParser.cpp",
1640 "tools/bookmaker/includeWriter.cpp",
1641 "tools/bookmaker/mdOut.cpp",
1642 "tools/bookmaker/parserCommon.cpp",
Cary Clarkac47b882018-01-11 10:35:44 -05001643 "tools/bookmaker/selfCheck.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001644 "tools/bookmaker/spellCheck.cpp",
Cary Clark2da9fb82018-11-01 09:29:36 -04001645 "tools/bookmaker/textParser.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001646 ]
1647 deps = [
1648 ":flags",
1649 ":skia",
1650 ":tool_utils",
Cary Clark2f466242017-12-11 16:03:17 -05001651 "//third_party/jsoncpp",
Cary Clark8032b982017-07-28 11:04:54 -04001652 ]
1653 }
1654
Florin Malitabfe876a2018-09-02 12:33:59 -04001655 if (is_linux || is_mac) {
Florin Malita79725d32018-06-05 16:16:57 -04001656 test_app("skottie_tool") {
1657 deps = [
1658 "modules/skottie:tool",
1659 ]
1660 }
1661 }
1662
Kevin Lubickebf648e2017-09-21 13:45:16 -04001663 if (target_cpu != "wasm") {
1664 import("gn/samples.gni")
1665 test_lib("samples") {
1666 public_include_dirs = [ "samplecode" ]
1667 include_dirs = [ "experimental" ]
Yuqian Li56a4a092018-02-12 14:47:34 +08001668 sources = samples_sources
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04001669 public_deps = [
1670 ":tool_utils",
1671 ]
Kevin Lubickebf648e2017-09-21 13:45:16 -04001672 deps = [
1673 ":experimental_svg_model",
1674 ":flags",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001675 ":xml",
Herb Derby264182c2018-05-29 15:53:40 -04001676 "modules/skshaper",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001677 ]
Mike Klein38af9432016-11-11 11:39:44 -05001678
Ruiqi Maof5101492018-06-29 14:32:21 -04001679 # NIMA does not build on Windows clang
1680 if (!is_win || !is_clang) {
Kevin Lubickd9699322018-10-30 15:08:53 -04001681 sources += [ "experimental/nima/NimaActor.cpp" ]
Ruiqi Maof5101492018-06-29 14:32:21 -04001682 deps += [ "//third_party/Nima-Cpp" ]
1683 }
1684
Kevin Lubickebf648e2017-09-21 13:45:16 -04001685 if (skia_use_lua) {
1686 sources += [ "samplecode/SampleLua.cpp" ]
1687 deps += [
1688 ":lua",
1689 "//third_party/lua",
1690 ]
1691 }
1692 }
Mike Klein7af351a2018-07-27 09:54:43 -04001693 test_app("imgcvt") {
1694 sources = [
1695 "tools/imgcvt.cpp",
1696 ]
1697 deps = [
1698 ":skcms",
1699 ":skia",
1700 ]
1701 }
Kevin Lubickebf648e2017-09-21 13:45:16 -04001702 test_app("dm") {
1703 sources = [
1704 "dm/DM.cpp",
Hal Canaryb6c5e5b2017-10-09 16:13:02 -04001705 "dm/DMGpuTestProcs.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001706 "dm/DMJsonWriter.cpp",
1707 "dm/DMSrcSink.cpp",
1708 ]
1709 include_dirs = [ "tests" ]
1710 deps = [
1711 ":common_flags",
1712 ":experimental_svg_model",
1713 ":flags",
1714 ":gm",
1715 ":gpu_tool_utils",
1716 ":skia",
1717 ":tests",
1718 ":tool_utils",
Florin Malita3d856bd2018-05-26 09:49:28 -04001719 "modules/skottie",
Florin Malitaa8316552018-11-09 16:19:44 -05001720 "modules/skottie:utils",
Florin Malita3b526b02018-05-25 12:43:51 -04001721 "modules/sksg",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001722 "//third_party/jsoncpp",
1723 "//third_party/libpng",
Mike Klein38af9432016-11-11 11:39:44 -05001724 ]
Ruiqi Maof5101492018-06-29 14:32:21 -04001725
1726 # NIMA does not build on Windows clang
1727 if (!is_win || !is_clang) {
1728 deps += [ "//third_party/Nima-Cpp" ]
1729 }
Mike Klein38af9432016-11-11 11:39:44 -05001730 }
Brian Osman16adfa32016-10-18 14:42:44 -04001731 }
1732
Mike Kleina8a51ce2018-01-09 12:34:11 -05001733 if (!is_win) {
1734 test_app("remote_demo") {
1735 sources = [
1736 "tools/remote_demo.cpp",
1737 ]
1738 deps = [
1739 ":skia",
1740 ]
1741 }
1742 }
1743
Mike Kleine6682eb2017-01-05 10:54:57 -05001744 test_app("nanobench") {
mtklein2b6870c2016-07-28 14:17:33 -07001745 sources = [
1746 "bench/nanobench.cpp",
1747 ]
1748 deps = [
1749 ":bench",
mtklein046cb562016-09-16 10:23:12 -07001750 ":common_flags",
fmalita6519c212016-09-14 08:05:17 -07001751 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001752 ":flags",
1753 ":gm",
1754 ":gpu_tool_utils",
1755 ":skia",
1756 ":tool_utils",
Florin Malita3b526b02018-05-25 12:43:51 -04001757 "modules/sksg",
mtklein2b6870c2016-07-28 14:17:33 -07001758 "//third_party/jsoncpp",
1759 ]
mtklein2b6870c2016-07-28 14:17:33 -07001760 }
halcanary19a97202016-08-03 15:08:04 -07001761
Ravi Mistry10d36c52017-01-31 09:49:18 -05001762 test_app("skpinfo") {
1763 sources = [
1764 "tools/skpinfo.cpp",
1765 ]
1766 deps = [
1767 ":flags",
1768 ":skia",
1769 ]
1770 }
1771
Brian Osmanc9a42472018-05-31 13:17:12 -04001772 test_app("skpbench") {
1773 sources = [
1774 "tools/skpbench/skpbench.cpp",
1775 ]
1776 deps = [
1777 ":flags",
1778 ":gpu_tool_utils",
1779 ":skia",
1780 ":tool_utils",
1781 ]
csmartdalton4b5179b2016-09-19 11:03:58 -07001782 }
1783
Mike Kleine6682eb2017-01-05 10:54:57 -05001784 test_app("sktexttopdf") {
halcanary3eee9d92016-09-10 07:01:53 -07001785 sources = [
Herb Derby264182c2018-05-29 15:53:40 -04001786 "tools/using_skia_and_harfbuzz.cpp",
halcanary3eee9d92016-09-10 07:01:53 -07001787 ]
1788 deps = [
1789 ":skia",
Herb Derby264182c2018-05-29 15:53:40 -04001790 "modules/skshaper",
halcanary3eee9d92016-09-10 07:01:53 -07001791 ]
halcanary3eee9d92016-09-10 07:01:53 -07001792 }
mtklein046cb562016-09-16 10:23:12 -07001793
Ben Wagner219f3622017-07-17 15:32:25 -04001794 test_app("create_test_font") {
1795 sources = [
Ben Wagner483c7722018-02-20 17:06:07 -05001796 "tools/fonts/create_test_font.cpp",
Ben Wagner219f3622017-07-17 15:32:25 -04001797 ]
1798 deps = [
1799 ":skia",
1800 ]
1801 assert_no_deps = [
1802 # tool_utils requires the output of this app.
1803 ":tool_utils",
1804 ]
1805 }
1806
Florin Malita5d3ff432018-07-31 16:38:43 -04001807 if (skia_use_expat) {
1808 test_app("create_test_font_color") {
1809 sources = [
1810 "tools/fonts/create_test_font_color.cpp",
1811 ]
1812 deps = [
1813 ":flags",
1814 ":skia",
1815 ":tool_utils",
1816 ]
1817 }
Ben Wagner97182cc2018-02-15 10:20:04 -05001818 }
1819
Mike Kleine6682eb2017-01-05 10:54:57 -05001820 test_app("get_images_from_skps") {
mtklein046cb562016-09-16 10:23:12 -07001821 sources = [
1822 "tools/get_images_from_skps.cpp",
1823 ]
1824 deps = [
1825 ":flags",
1826 ":skia",
mtklein046cb562016-09-16 10:23:12 -07001827 ]
mtklein046cb562016-09-16 10:23:12 -07001828 }
mtkleinecbc5262016-09-22 11:51:24 -07001829
Kevin Lubickebf648e2017-09-21 13:45:16 -04001830 if (!is_ios && target_cpu != "wasm") {
Mike Kleine6682eb2017-01-05 10:54:57 -05001831 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04001832 sources = [
1833 "tools/skiaserve/Request.cpp",
1834 "tools/skiaserve/Response.cpp",
1835 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001836 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1837 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1838 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1839 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1840 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1841 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1842 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1843 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1844 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05001845 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1846 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001847 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1848 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1849 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1850 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1851 ]
1852 deps = [
1853 ":flags",
1854 ":gpu_tool_utils",
1855 ":skia",
1856 ":tool_utils",
1857 "//third_party/jsoncpp",
1858 "//third_party/libmicrohttpd",
1859 "//third_party/libpng",
1860 ]
Mike Klein7d302882016-11-03 14:06:31 -04001861 }
mtkleinecbc5262016-09-22 11:51:24 -07001862 }
kjlubick14f984b2016-10-03 11:49:45 -07001863
Mike Kleine6682eb2017-01-05 10:54:57 -05001864 test_app("fuzz") {
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05001865 include_dirs = [
1866 "tools",
1867 "tools/debugger",
1868 ]
kjlubick14f984b2016-10-03 11:49:45 -07001869 sources = [
Kevin Lubickbc9a1a82018-09-17 14:46:57 -04001870 "fuzz/Fuzz.cpp",
Hal Canary24ac42b2017-02-14 13:35:14 -05001871 "fuzz/FuzzCanvas.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05001872 "fuzz/FuzzCommon.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05001873 "fuzz/FuzzDrawFunctions.cpp",
Kevin Lubicke4be55d2018-03-30 15:05:13 -04001874 "fuzz/FuzzEncoders.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001875 "fuzz/FuzzGradients.cpp",
Kevin Lubickbc9a1a82018-09-17 14:46:57 -04001876 "fuzz/FuzzMain.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001877 "fuzz/FuzzParsePath.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05001878 "fuzz/FuzzPathMeasure.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001879 "fuzz/FuzzPathop.cpp",
Jim Van Verth061cc212018-07-11 14:09:09 -04001880 "fuzz/FuzzPolyUtils.cpp",
Hal Canary13872dd2018-04-06 10:25:12 -04001881 "fuzz/FuzzRegionOp.cpp",
Leon Scroggins III0b8fcbc2018-10-16 15:52:17 -04001882 "fuzz/oss_fuzz/FuzzAndroidCodec.cpp",
Kevin Lubick2416f962018-02-12 08:26:39 -05001883 "fuzz/oss_fuzz/FuzzAnimatedImage.cpp",
1884 "fuzz/oss_fuzz/FuzzImage.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05001885 "fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp",
Leon Scroggins III0b8fcbc2018-10-16 15:52:17 -04001886 "fuzz/oss_fuzz/FuzzIncrementalImage.cpp",
Florin Malita80452be2018-06-19 11:27:20 -04001887 "fuzz/oss_fuzz/FuzzJSON.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05001888 "fuzz/oss_fuzz/FuzzPathDeserialize.cpp",
Kevin Lubick2541edf2018-01-11 10:27:14 -05001889 "fuzz/oss_fuzz/FuzzRegionDeserialize.cpp",
1890 "fuzz/oss_fuzz/FuzzRegionSetPath.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05001891 "fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp",
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05001892 "tools/UrlDataManager.cpp",
1893 "tools/debugger/SkDebugCanvas.cpp",
1894 "tools/debugger/SkDrawCommand.cpp",
1895 "tools/debugger/SkJsonWriteBuffer.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001896 ]
1897 deps = [
1898 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04001899 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001900 ":skia",
Florin Malita3d856bd2018-05-26 09:49:28 -04001901 "modules/skottie:fuzz",
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05001902 "//third_party/jsoncpp",
1903 "//third_party/libpng",
kjlubick14f984b2016-10-03 11:49:45 -07001904 ]
kjlubick14f984b2016-10-03 11:49:45 -07001905 }
Mike Klein38312422016-10-05 15:41:01 -04001906
Mike Kleine6682eb2017-01-05 10:54:57 -05001907 test_app("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04001908 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04001909 rebase_path("tests/skia_test.cpp"),
1910 rebase_path("tests/Test.cpp"),
1911 ]
caryclark9feb6322016-10-25 08:58:26 -07001912 deps = [
1913 ":flags",
1914 ":gpu_tool_utils",
1915 ":skia",
1916 ":tool_utils",
1917 ]
caryclark9feb6322016-10-25 08:58:26 -07001918 }
1919
Mike Kleine6682eb2017-01-05 10:54:57 -05001920 test_app("dump_record") {
Mike Klein38312422016-10-05 15:41:01 -04001921 sources = [
1922 "tools/DumpRecord.cpp",
1923 "tools/dump_record.cpp",
1924 ]
1925 deps = [
1926 ":flags",
1927 ":skia",
1928 ]
Mike Klein38312422016-10-05 15:41:01 -04001929 }
bungemanfe917272016-10-13 17:36:40 -04001930
Mike Kleine6682eb2017-01-05 10:54:57 -05001931 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04001932 sources = [
1933 "tools/skdiff/skdiff.cpp",
1934 "tools/skdiff/skdiff_html.cpp",
1935 "tools/skdiff/skdiff_main.cpp",
1936 "tools/skdiff/skdiff_utils.cpp",
1937 ]
1938 deps = [
1939 ":skia",
1940 ":tool_utils",
1941 ]
bungemanfe917272016-10-13 17:36:40 -04001942 }
halcanarya73d76a2016-10-17 13:19:02 -07001943
Mike Kleine6682eb2017-01-05 10:54:57 -05001944 test_app("skp_parser") {
halcanarya73d76a2016-10-17 13:19:02 -07001945 sources = [
1946 "tools/skp_parser.cpp",
1947 ]
1948 deps = [
1949 ":skia",
1950 ":tool_utils",
1951 "//third_party/jsoncpp",
1952 ]
halcanarya73d76a2016-10-17 13:19:02 -07001953 }
Brian Osman16adfa32016-10-18 14:42:44 -04001954
Brian Osmanc9a42472018-05-31 13:17:12 -04001955 if (!is_win) {
Hal Canaryd7b38452017-12-11 17:46:26 -05001956 test_lib("skqp_lib") {
1957 public_include_dirs = [ "tools/skqp" ]
Hal Canary0e07ad72018-02-08 13:06:56 -05001958 defines =
1959 [ "SK_SKQP_GLOBAL_ERROR_TOLERANCE=$skia_skqp_global_error_tolerance" ]
Hal Canary4689b542018-01-31 11:54:14 -05001960 if (skia_skqp_enable_driver_correctness_workarounds) {
1961 defines += [ "SK_SKQP_ENABLE_DRIVER_CORRECTNESS_WORKAROUNDS" ]
1962 }
Hal Canary75427132017-10-11 16:00:31 -04001963 sources = [
1964 "dm/DMGpuTestProcs.cpp",
Hal Canaryd7b38452017-12-11 17:46:26 -05001965 "tools/skqp/gm_knowledge.cpp",
1966 "tools/skqp/gm_runner.cpp",
Hal Canary75427132017-10-11 16:00:31 -04001967 ]
1968 deps = [
1969 ":gm",
1970 ":gpu_tool_utils",
1971 ":skia",
1972 ":tests",
Hal Canaryd7b38452017-12-11 17:46:26 -05001973 ":tool_utils",
1974 ]
1975 }
1976 test_app("skqp") {
1977 sources = [
1978 "tools/skqp/skqp.cpp",
1979 ]
1980 deps = [
1981 ":skia",
1982 ":skqp_lib",
Hal Canary537d9c02018-01-30 11:30:48 -05001983 ":tool_utils",
Hal Canary75427132017-10-11 16:00:31 -04001984 "//third_party/googletest",
1985 ]
1986 }
1987 }
Brian Osmanc9a42472018-05-31 13:17:12 -04001988 if (is_android) {
Hal Canary28f89382017-12-12 09:42:14 -05001989 test_app("skqp_app") {
1990 is_shared_library = true
1991 sources = [
1992 "tools/skqp/jni/org_skia_skqp_SkQPRunner.cpp",
1993 ]
1994 deps = [
1995 ":skia",
1996 ":skqp_lib",
Hal Canaryb4d01a92018-01-29 13:10:08 -05001997 ":tool_utils",
Hal Canary28f89382017-12-12 09:42:14 -05001998 ]
1999 libs = [ "android" ]
2000 }
2001 }
Stan Iliev93151722018-08-02 11:10:52 -04002002 if (is_android && skia_enable_gpu) {
2003 test_app("skottie_android") {
2004 is_shared_library = true
2005
2006 sources = [
2007 "platform_tools/android/apps/skottie/src/main/cpp/JavaInputStreamAdaptor.cpp",
2008 "platform_tools/android/apps/skottie/src/main/cpp/native-lib.cpp",
2009 ]
2010 libs = []
2011
2012 include_dirs = []
2013 deps = [
2014 ":skia",
2015 "modules/skottie",
Stan Ilieva7a52b92018-10-01 15:36:32 -04002016 "modules/sksg:samples",
Stan Iliev93151722018-08-02 11:10:52 -04002017 ]
2018 }
2019 }
Hal Canary75427132017-10-11 16:00:31 -04002020
Hal Canarya9de7602018-01-19 13:08:23 -05002021 test_app("list_gms") {
2022 sources = [
2023 "tools/list_gms.cpp",
2024 ]
2025 deps = [
2026 ":gm",
2027 ":skia",
2028 ]
2029 }
2030 test_app("list_gpu_unit_tests") {
2031 sources = [
2032 "dm/DMGpuTestProcs.cpp",
2033 "tools/list_gpu_unit_tests.cpp",
2034 ]
2035 deps = [
2036 ":skia",
2037 ":tests",
2038 ]
2039 }
2040
Brian Osmanc9a42472018-05-31 13:17:12 -04002041 test_lib("sk_app") {
2042 public_include_dirs = [ "tools/sk_app" ]
2043 sources = [
2044 "tools/sk_app/CommandSet.cpp",
2045 "tools/sk_app/GLWindowContext.cpp",
2046 "tools/sk_app/Window.cpp",
2047 ]
2048 libs = []
2049
2050 if (is_android) {
2051 sources += [
2052 "tools/sk_app/android/GLWindowContext_android.cpp",
2053 "tools/sk_app/android/RasterWindowContext_android.cpp",
2054 "tools/sk_app/android/Window_android.cpp",
2055 "tools/sk_app/android/main_android.cpp",
2056 "tools/sk_app/android/surface_glue_android.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04002057 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002058 libs += [ "android" ]
2059 } else if (is_linux) {
2060 sources += [
2061 "tools/sk_app/unix/GLWindowContext_unix.cpp",
2062 "tools/sk_app/unix/RasterWindowContext_unix.cpp",
2063 "tools/sk_app/unix/Window_unix.cpp",
2064 "tools/sk_app/unix/keysym2ucs.c",
2065 "tools/sk_app/unix/main_unix.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04002066 ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002067 libs += [
2068 "GL",
2069 "X11",
2070 ]
2071 } else if (is_win) {
2072 sources += [
2073 "tools/sk_app/win/GLWindowContext_win.cpp",
2074 "tools/sk_app/win/RasterWindowContext_win.cpp",
2075 "tools/sk_app/win/Window_win.cpp",
2076 "tools/sk_app/win/main_win.cpp",
2077 ]
Brian Salomon194db172017-08-17 14:37:06 -04002078 if (skia_use_angle) {
Brian Osmanc9a42472018-05-31 13:17:12 -04002079 sources += [ "tools/sk_app/win/ANGLEWindowContext_win.cpp" ]
Brian Salomon194db172017-08-17 14:37:06 -04002080 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002081 } else if (is_mac) {
2082 sources += [
2083 "tools/sk_app/mac/GLWindowContext_mac.cpp",
2084 "tools/sk_app/mac/RasterWindowContext_mac.cpp",
2085 "tools/sk_app/mac/Window_mac.cpp",
2086 "tools/sk_app/mac/main_mac.cpp",
2087 ]
2088 libs += [
2089 "QuartzCore.framework",
2090 "Cocoa.framework",
2091 "Foundation.framework",
2092 ]
2093 } else if (is_ios) {
2094 sources += [
2095 "tools/sk_app/ios/GLWindowContext_ios.cpp",
2096 "tools/sk_app/ios/RasterWindowContext_ios.cpp",
2097 "tools/sk_app/ios/Window_ios.cpp",
2098 "tools/sk_app/ios/main_ios.cpp",
2099 ]
2100 }
2101
2102 if (skia_use_vulkan) {
2103 sources += [ "tools/sk_app/VulkanWindowContext.cpp" ]
2104 if (is_android) {
2105 sources += [ "tools/sk_app/android/VulkanWindowContext_android.cpp" ]
2106 } else if (is_linux) {
2107 sources += [ "tools/sk_app/unix/VulkanWindowContext_unix.cpp" ]
2108 libs += [ "X11-xcb" ]
2109 } else if (is_win) {
2110 sources += [ "tools/sk_app/win/VulkanWindowContext_win.cpp" ]
2111 }
2112 }
2113
2114 deps = [
2115 ":gpu_tool_utils",
2116 ":skia",
2117 ":tool_utils",
Brian Osmanc9a42472018-05-31 13:17:12 -04002118 ]
2119 if (is_android) {
2120 deps += [ "//third_party/native_app_glue" ]
2121 } else if (is_mac || is_ios) {
2122 deps += [ "//third_party/libsdl" ]
2123 }
2124 if (skia_use_angle) {
2125 deps += [ "//third_party/angle2" ]
Mike Kleina92c3832016-12-08 09:49:39 -05002126 }
Brian Osman16adfa32016-10-18 14:42:44 -04002127 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05002128
Brian Osmanc9a42472018-05-31 13:17:12 -04002129 test_app("viewer") {
2130 is_shared_library = is_android
2131 if (is_ios) {
2132 bundle_ios_data = true
Brian Osmaneff04b52017-11-21 13:18:02 -05002133 }
Brian Osmanc9a42472018-05-31 13:17:12 -04002134 sources = [
2135 "tools/viewer/BisectSlide.cpp",
2136 "tools/viewer/GMSlide.cpp",
2137 "tools/viewer/ImGuiLayer.cpp",
2138 "tools/viewer/ImageSlide.cpp",
2139 "tools/viewer/SKPSlide.cpp",
2140 "tools/viewer/SampleSlide.cpp",
2141 "tools/viewer/SkottieSlide.cpp",
2142 "tools/viewer/SlideDir.cpp",
2143 "tools/viewer/StatsLayer.cpp",
2144 "tools/viewer/SvgSlide.cpp",
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04002145 "tools/viewer/TouchGesture.cpp",
Leon Scroggins III81886e82018-08-22 11:18:08 -04002146 "tools/viewer/TouchGesture.h",
Brian Osmanc9a42472018-05-31 13:17:12 -04002147 "tools/viewer/Viewer.cpp",
2148 ]
2149 libs = []
2150
Kevin Lubickd9699322018-10-30 15:08:53 -04002151 include_dirs = [ "experimental" ]
Brian Osmanc9a42472018-05-31 13:17:12 -04002152 deps = [
2153 ":experimental_svg_model",
2154 ":flags",
2155 ":gm",
2156 ":gpu_tool_utils",
2157 ":samples",
2158 ":sk_app",
2159 ":skia",
2160 ":tool_utils",
Brian Osmanc9a42472018-05-31 13:17:12 -04002161 "modules/skottie",
Florin Malitaa8316552018-11-09 16:19:44 -05002162 "modules/skottie:utils",
Brian Osmanc9a42472018-05-31 13:17:12 -04002163 "modules/sksg",
Ben Wagnerb2c4ea62018-08-08 11:36:17 -04002164 "modules/sksg:samples",
Brian Osmanc9a42472018-05-31 13:17:12 -04002165 "//third_party/imgui",
Brian Osmanc9a42472018-05-31 13:17:12 -04002166 ]
Ruiqi Maof5101492018-06-29 14:32:21 -04002167
2168 # NIMA does not build on Windows clang
2169 if (!is_win || !is_clang) {
2170 sources += [ "tools/viewer/NIMASlide.cpp" ]
2171 deps += [ "//third_party/Nima-Cpp" ]
2172 }
Brian Osmaneff04b52017-11-21 13:18:02 -05002173 }
2174
ziadbbceddbc2018-06-19 13:57:15 -04002175 if (is_android) {
2176 test_app("arcore") {
2177 is_shared_library = true
2178 configs = [
2179 ":skia_public",
2180 "gn:default",
2181 ]
2182
2183 # For internship expedience, yes, we're rebuilding Skia rather than depending on :skia.
2184 # At the moment there's no way to use Skia and Skottie/SkShaper unless they're in the same .so.
2185 sources = []
2186 sources += skia_core_sources
2187 sources += skia_utils_sources
2188 sources += skia_xps_sources
2189 sources += [
2190 "src/android/SkAndroidFrameworkUtils.cpp",
2191 "src/android/SkAnimatedImage.cpp",
2192 "src/android/SkBitmapRegionCodec.cpp",
2193 "src/android/SkBitmapRegionDecoder.cpp",
2194 "src/codec/SkAndroidCodec.cpp",
2195 "src/codec/SkBmpBaseCodec.cpp",
2196 "src/codec/SkBmpCodec.cpp",
2197 "src/codec/SkBmpMaskCodec.cpp",
2198 "src/codec/SkBmpRLECodec.cpp",
2199 "src/codec/SkBmpStandardCodec.cpp",
2200 "src/codec/SkCodec.cpp",
2201 "src/codec/SkCodecImageGenerator.cpp",
2202 "src/codec/SkColorTable.cpp",
2203 "src/codec/SkGifCodec.cpp",
2204 "src/codec/SkMaskSwizzler.cpp",
2205 "src/codec/SkMasks.cpp",
2206 "src/codec/SkSampledCodec.cpp",
2207 "src/codec/SkSampler.cpp",
2208 "src/codec/SkStreamBuffer.cpp",
2209 "src/codec/SkSwizzler.cpp",
2210 "src/codec/SkWbmpCodec.cpp",
2211 "src/images/SkImageEncoder.cpp",
2212 "src/ports/SkDiscardableMemory_none.cpp",
2213 "src/ports/SkImageGenerator_skia.cpp",
2214 "src/ports/SkMemory_malloc.cpp",
2215 "src/ports/SkOSFile_stdio.cpp",
2216 "src/sfnt/SkOTTable_name.cpp",
2217 "src/sfnt/SkOTUtils.cpp",
2218 "src/utils/mac/SkStream_mac.cpp",
2219 "third_party/gif/SkGifImageReader.cpp",
2220 ]
2221 deps = [
2222 ":tool_utils",
2223 "modules/skottie",
2224 "modules/skshaper",
2225 ]
2226 }
2227 }
2228
Brian Osmanc9a42472018-05-31 13:17:12 -04002229 if (!skia_use_angle && (is_linux || is_win || is_mac)) {
Brian Osmaneff04b52017-11-21 13:18:02 -05002230 test_app("HelloWorld") {
2231 sources = [
2232 "example/HelloWorld.cpp",
2233 ]
2234 libs = []
2235
2236 include_dirs = []
2237 deps = [
2238 ":flags",
2239 ":gpu_tool_utils",
2240 ":sk_app",
2241 ":skia",
2242 ":tool_utils",
Brian Osmaneff04b52017-11-21 13:18:02 -05002243 ]
2244 }
2245 }
2246
Brian Osmanc9a42472018-05-31 13:17:12 -04002247 if (is_linux || is_mac || is_ios) {
Jim Van Verth4c70c752017-07-11 12:03:01 -04002248 test_app("SkiaSDLExample") {
2249 sources = [
2250 "example/SkiaSDLExample.cpp",
2251 ]
2252 libs = []
2253 include_dirs = []
2254 deps = [
2255 ":gpu_tool_utils",
2256 ":skia",
2257 "//third_party/libsdl",
2258 ]
2259 }
2260 }
2261
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002262 if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
2263 action_foreach("generate_mocs") {
2264 script = "gn/call.py"
2265 sources = [
2266 "tools/mdbviz/MainWindow.h",
2267 ]
2268 outputs = [
2269 "$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp",
2270 ]
2271 args = [
2272 "$skia_qt_path" + "/bin/moc",
2273 "{{source}}",
2274 "-o",
2275 "gen/mdbviz/{{source_name_part}}_moc.cpp",
2276 ]
2277 }
2278 action_foreach("generate_resources") {
2279 script = "gn/call.py"
2280 sources = [
2281 "tools/mdbviz/resources.qrc",
2282 ]
2283 outputs = [
2284 "$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp",
2285 ]
2286 args = [
2287 "$skia_qt_path" + "/bin/rcc",
2288 "{{source}}",
2289 "-o",
2290 "gen/mdbviz/{{source_name_part}}_res.cpp",
2291 ]
2292 }
2293 test_app("mdbviz") {
2294 if (is_win) {
2295 # on Windows we need to disable some exception handling warnings due to the Qt headers
2296 cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
2297 }
2298 sources = [
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002299 "tools/UrlDataManager.cpp",
2300 "tools/debugger/SkDebugCanvas.cpp",
2301 "tools/debugger/SkDrawCommand.cpp",
2302 "tools/debugger/SkJsonWriteBuffer.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002303 "tools/mdbviz/MainWindow.cpp",
Robert Phillipsdeaf5682017-09-06 13:07:21 -04002304 "tools/mdbviz/Model.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002305 "tools/mdbviz/main.cpp",
2306
2307 # generated files
2308 "$target_gen_dir/mdbviz/MainWindow_moc.cpp",
2309 "$target_gen_dir/mdbviz/resources_res.cpp",
2310 ]
2311 lib_dirs = [ "$skia_qt_path/lib" ]
2312 libs = [
2313 "Qt5Core.lib",
2314 "Qt5Gui.lib",
2315 "Qt5Widgets.lib",
2316 ]
2317 include_dirs = [
2318 "$skia_qt_path/include",
Robert Phillips276066b2017-09-06 17:17:44 -04002319 "$skia_qt_path/include/QtCore",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002320 "$skia_qt_path/include/QtWidgets",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002321 "tools",
2322 "tools/debugger",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002323 ]
2324 deps = [
2325 ":generate_mocs",
2326 ":generate_resources",
2327 ":skia",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002328 "//third_party/jsoncpp",
2329 "//third_party/libpng",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002330 ]
2331 }
2332 }
2333
Mike Kleine459afd2017-03-03 09:21:30 -05002334 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05002335 copy("gdbserver") {
2336 sources = [
2337 "$ndk/$ndk_gdbserver",
2338 ]
2339 outputs = [
2340 "$root_out_dir/gdbserver",
2341 ]
2342 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05002343 }
Mike Kleinf9ae6702018-06-20 14:05:05 -04002344
2345 if (skia_use_opencl) {
2346 test_app("hello-opencl") {
2347 sources = [
2348 "src/compute/common/cl/assert_cl.c",
2349 "src/compute/common/cl/find_cl.c",
2350 "tools/hello-opencl.cpp",
2351 ]
2352 include_dirs = [ "src/compute/common" ]
Ben Wagner30a4e3d2018-08-07 16:58:15 -04002353 if (is_linux) {
2354 libs = [ "OpenCL" ]
2355 } else if (is_win) {
2356 libs = [ "OpenCL.lib" ]
2357 }
Mike Kleinf9ae6702018-06-20 14:05:05 -04002358 }
2359 }
mtklein25c81d42016-07-27 13:55:26 -07002360}