blob: 1c49e51921f64f33ed29cff3188ea175f5090ffb [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")
mikejurka8c24f4f2016-09-12 16:51:58 -07007import("gn/shared_sources.gni")
brettwb9447282016-09-01 14:24:39 -07008
Forrest Reiling30229ac2017-04-17 13:36:39 -07009if (is_fuchsia) {
10 import("//build/vulkan/config.gni")
11}
12
Mike Klein3669a822017-03-03 10:55:02 -050013if (!defined(is_skia_standalone)) {
14 is_skia_standalone = false
15}
16is_skia_dev_build = is_skia_standalone && !is_official_build
17
mtkleinc04ff472016-06-23 10:29:30 -070018declare_args() {
Mike Kleinc168a3a2016-11-14 14:53:13 +000019 skia_use_angle = false
Kevin Lubick4a24e102017-03-29 11:19:01 -040020 skia_use_egl = false
mtklein63213812016-08-24 09:55:56 -070021 skia_use_expat = true
mtklein3cc22182016-08-29 13:26:14 -070022 skia_use_fontconfig = is_linux
mtkleincdedd0e2016-09-12 15:15:44 -070023 skia_use_freetype = is_android || is_fuchsia || is_linux
Mike Klein7d302882016-11-03 14:06:31 -040024 skia_use_icu = !is_fuchsia && !is_ios && !is_win # TODO: Windows
mtklein63213812016-08-24 09:55:56 -070025 skia_use_libjpeg_turbo = true
26 skia_use_libpng = true
mtkleineb3c4252016-08-23 07:38:09 -070027 skia_use_libwebp = !is_fuchsia
Mike Kleinfae86b72018-01-08 15:49:09 -050028 skia_use_lua = is_skia_dev_build && !is_ios
Mike Klein10d665d2016-11-01 11:46:10 -040029 skia_use_piex = !is_win
mtklein63213812016-08-24 09:55:56 -070030 skia_use_zlib = true
Greg Daniele5ddff52017-07-05 16:49:36 -040031 skia_use_metal = false
Mike Klein36f182f2017-10-20 12:33:53 -040032 skia_use_libheif = is_skia_dev_build
Mike Kleinfb333552018-01-25 12:49:37 -050033 skia_use_skcms = is_skia_dev_build
mtklein1bd72ba2016-09-16 07:45:52 -070034
Mike Klein7d921032017-01-05 12:20:41 -050035 skia_android_serial = ""
Brian Osman3f375d02016-12-28 11:19:22 -050036 skia_enable_discrete_gpu = true
Mike Kleina04bb452017-02-09 12:24:07 -050037 skia_enable_effects = true
Brian Osmanf2c90142017-07-13 15:50:03 -040038 skia_enable_flutter_defines = false
Hal Canaryff2742e2018-01-30 11:35:47 -050039 skia_enable_fontmgr_empty = false
mtklein06c35c02016-09-20 12:28:12 -070040 skia_enable_gpu = true
Hal Canary43fb7a02016-12-30 13:09:03 -050041 skia_enable_pdf = true
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -040042 skia_enable_spirv_validation = is_skia_dev_build && is_debug
Mike Klein3669a822017-03-03 10:55:02 -050043 skia_enable_tools = is_skia_dev_build
44 skia_enable_vulkan_debug_layers = is_skia_dev_build && is_debug
Greg Danielafb7ec72017-12-07 12:48:30 -050045 skia_vulkan_header = ""
Greg Daniel686bb212016-10-27 10:48:48 -040046 skia_vulkan_sdk = getenv("VULKAN_SDK")
Robert Phillipsa6d2d702017-09-01 12:17:03 -040047 skia_qt_path = getenv("QT_PATH")
Ethan Nicholas762466e2017-06-29 10:03:38 -040048 skia_compile_processors = false
Ethan Nicholas5b5f0962017-09-11 13:50:14 -070049 skia_lex = false
Mike Kleinc55a6cb2017-06-28 13:21:47 -040050
Hal Canary4689b542018-01-31 11:54:14 -050051 skia_skqp_enable_driver_correctness_workarounds = false
Hal Canary2331c822018-02-01 14:06:13 -050052 skia_skqp_global_error_tolerance = 0
mtkleinc04ff472016-06-23 10:29:30 -070053}
Brian Salomon23d73ea2016-10-27 13:31:37 -040054declare_args() {
Matt Sarett189491c2017-03-20 18:09:30 -040055 skia_use_dng_sdk = !is_fuchsia && skia_use_libjpeg_turbo && skia_use_zlib
Mike Klein10d665d2016-11-01 11:46:10 -040056 skia_use_sfntly = skia_use_icu
Brian Salomoncbcb0a12017-11-19 13:20:13 -050057 skia_enable_atlas_text = is_skia_dev_build && skia_enable_gpu
Mike Klein10d665d2016-11-01 11:46:10 -040058
Brian Salomon5f33a8c2018-02-26 14:32:39 -050059 skia_use_legacy_gpu_pixel_ops = is_skia_dev_build && is_win # Arbitrary to keep old code path tested until deletion.
60
Mike Klein4d598a32016-10-31 13:44:49 -040061 if (is_android) {
62 skia_use_vulkan = defined(ndk_api) && ndk_api >= 24
Forrest Reiling30229ac2017-04-17 13:36:39 -070063 } else if (is_fuchsia) {
64 skia_use_vulkan = fuchsia_use_vulkan
Mike Klein4d598a32016-10-31 13:44:49 -040065 } else {
66 skia_use_vulkan = skia_vulkan_sdk != ""
67 }
Jim Van Verth4e502972017-12-07 15:16:10 -050068
69 if (is_ios) {
70 skia_ios_identity = ".*Google.*"
71 skia_ios_profile = "Google Development"
72 }
Brian Salomon23d73ea2016-10-27 13:31:37 -040073}
Greg Danielec6ae522017-04-25 13:38:26 -040074declare_args() {
Greg Danielafb7ec72017-12-07 12:48:30 -050075 skia_tools_vulkan_header_dir = ""
Greg Danielec6ae522017-04-25 13:38:26 -040076 if (skia_use_vulkan) {
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +000077 # When buliding on Android we get the header via the NDK so no need for any extra path.
Greg Danielec6ae522017-04-25 13:38:26 -040078 if (is_fuchsia) {
Greg Danielafb7ec72017-12-07 12:48:30 -050079 skia_tools_vulkan_header_dir = "$fuchsia_vulkan_sdk/include"
Greg Danielec6ae522017-04-25 13:38:26 -040080 } else if (is_linux || is_win) {
Greg Danielafb7ec72017-12-07 12:48:30 -050081 skia_tools_vulkan_header_dir = "$skia_vulkan_sdk/include"
Greg Danielec6ae522017-04-25 13:38:26 -040082 }
Greg Danielec6ae522017-04-25 13:38:26 -040083 }
84}
Brian Salomon789e25e2016-09-30 13:41:03 -040085
Adam Barth54ef74a2017-10-13 10:59:38 -070086if (defined(skia_settings)) {
87 import(skia_settings)
88}
89
mtklein38925aa2016-09-21 10:11:25 -070090# Our tools require static linking (they use non-exported symbols).
91skia_enable_tools = skia_enable_tools && !is_component_build
mtklein06c35c02016-09-20 12:28:12 -070092
mtkleina45be612016-08-29 15:22:10 -070093fontmgr_android_enabled = skia_use_expat && skia_use_freetype
94
mtklein1211e0c2016-07-26 13:55:45 -070095skia_public_includes = [
mtklein25c81d42016-07-27 13:55:26 -070096 "include/android",
mtkleinfa84d942016-07-28 09:45:14 -070097 "include/c",
mtklein1211e0c2016-07-26 13:55:45 -070098 "include/codec",
99 "include/config",
100 "include/core",
101 "include/effects",
Matt Sarett94fd06f2017-05-08 17:31:00 -0400102 "include/encode",
mtklein1211e0c2016-07-26 13:55:45 -0700103 "include/gpu",
104 "include/gpu/gl",
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500105 "include/atlastext",
mtklein1211e0c2016-07-26 13:55:45 -0700106 "include/pathops",
107 "include/ports",
mtklein25c81d42016-07-27 13:55:26 -0700108 "include/svg",
mtklein1211e0c2016-07-26 13:55:45 -0700109 "include/utils",
110 "include/utils/mac",
mtklein1211e0c2016-07-26 13:55:45 -0700111]
112
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000113if (skia_use_vulkan) {
114 skia_public_includes += [ "include/gpu/vk" ]
115}
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500116if (skia_enable_atlas_text) {
117 skia_public_includes += [ "include/atlastext" ]
118}
Greg Daniele5ddff52017-07-05 16:49:36 -0400119if (skia_use_metal) {
120 skia_public_includes += [ "include/gpu/mtl" ]
121}
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000122
mtkleinc04ff472016-06-23 10:29:30 -0700123# Skia public API, generally provided by :skia.
124config("skia_public") {
mtklein1211e0c2016-07-26 13:55:45 -0700125 include_dirs = skia_public_includes
Greg Danielafb7ec72017-12-07 12:48:30 -0500126 if (skia_tools_vulkan_header_dir != "") {
127 include_dirs += [ skia_tools_vulkan_header_dir ]
Greg Danielec6ae522017-04-25 13:38:26 -0400128 }
Mike Kleinae7e6712016-10-11 17:49:33 -0400129 defines = []
130 if (is_component_build) {
131 defines += [ "SKIA_DLL" ]
132 }
Mike Kleinc4cbd742016-09-26 21:37:09 -0400133 if (is_fuchsia || is_linux) {
jcgregorio5561e3d2016-08-25 09:25:11 -0700134 defines += [ "SK_SAMPLES_FOR_X" ]
135 }
Brian Osmanf2c90142017-07-13 15:50:03 -0400136 if (skia_enable_flutter_defines) {
137 defines += flutter_defines
138 }
mtklein06c35c02016-09-20 12:28:12 -0700139 if (!skia_enable_gpu) {
140 defines += [ "SK_SUPPORT_GPU=0" ]
141 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500142 if (skia_enable_atlas_text) {
143 defines += [ "SK_SUPPORT_ATLAS_TEXT=1" ]
144 }
mtkleinc04ff472016-06-23 10:29:30 -0700145}
146
147# Skia internal APIs, used by Skia itself and a few test tools.
148config("skia_private") {
149 visibility = [ ":*" ]
150
151 include_dirs = [
152 "include/private",
153 "src/c",
mtklein1211e0c2016-07-26 13:55:45 -0700154 "src/codec",
mtkleinc04ff472016-06-23 10:29:30 -0700155 "src/core",
156 "src/effects",
mtklein25c81d42016-07-27 13:55:26 -0700157 "src/fonts",
mtkleinc04ff472016-06-23 10:29:30 -0700158 "src/image",
159 "src/images",
160 "src/lazy",
161 "src/opts",
162 "src/pathops",
mtklein2b6870c2016-07-28 14:17:33 -0700163 "src/pdf",
mtkleinc04ff472016-06-23 10:29:30 -0700164 "src/ports",
165 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400166 "src/shaders",
167 "src/shaders/gradients",
mtklein9e0d9dd2016-08-30 10:37:19 -0700168 "src/sksl",
mtkleinc04ff472016-06-23 10:29:30 -0700169 "src/utils",
mtklein7a1f45f2016-08-04 06:19:33 -0700170 "src/utils/win",
Herb Derby5a8fe972017-02-14 14:42:30 -0500171 "src/xml",
scroggo19b91532016-10-24 09:03:26 -0700172 "third_party/gif",
mtkleinc04ff472016-06-23 10:29:30 -0700173 ]
mtklein150d1132016-08-01 06:56:40 -0700174
Mike Reeda9e241d2017-05-03 10:52:00 -0400175 defines = [ "SK_GAMMA_APPLY_TO_A8" ]
mtkleinb37c0342016-09-09 11:07:45 -0700176 if (is_android) {
177 defines += [
178 "SK_GAMMA_EXPONENT=1.4",
179 "SK_GAMMA_CONTRAST=0.0",
180 ]
181 }
mtklein88a7ac02016-09-14 11:16:49 -0700182 if (is_official_build || is_android) {
183 # TODO(bsalomon): it'd be nice to make Android normal.
184 defines += [ "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0" ]
185 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400186 libs = []
187 lib_dirs = []
Brian Salomon03e05842017-02-23 12:23:47 -0500188 if (skia_enable_gpu) {
189 include_dirs += [ "src/gpu" ]
Greg Danielafb7ec72017-12-07 12:48:30 -0500190 if (is_skia_dev_build && skia_use_vulkan) {
191 include_dirs += [ "tools/gpu/vk" ]
192 }
Brian Salomon03e05842017-02-23 12:23:47 -0500193 }
Brian Osman34755e22016-12-05 09:46:02 -0500194 if (skia_use_angle) {
195 defines += [ "SK_ANGLE" ]
196 }
Brian Osman3f375d02016-12-28 11:19:22 -0500197 if (skia_enable_discrete_gpu) {
198 defines += [ "SK_ENABLE_DISCRETE_GPU" ]
199 }
Brian Salomon0c26a9d2017-07-06 10:09:38 -0400200 if (!is_official_build) {
201 defines += [ "GR_TEST_UTILS=1" ]
202 }
mtkleinc04ff472016-06-23 10:29:30 -0700203}
204
205# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
206config("skia_library") {
207 visibility = [ ":*" ]
mtkleinc04ff472016-06-23 10:29:30 -0700208 defines = [ "SKIA_IMPLEMENTATION=1" ]
209}
210
211skia_library_configs = [
212 ":skia_public",
213 ":skia_private",
214 ":skia_library",
215]
216
mtklein9b8583d2016-08-24 17:32:30 -0700217# Use for CPU-specific Skia code that needs particular compiler flags.
218template("opts") {
219 if (invoker.enabled) {
220 source_set(target_name) {
221 forward_variables_from(invoker, "*")
222 configs += skia_library_configs
223 }
224 } else {
225 # If not enabled, a phony empty target that swallows all otherwise unused variables.
226 source_set(target_name) {
227 forward_variables_from(invoker,
228 "*",
229 [
230 "sources",
231 "cflags",
232 ])
233 }
234 }
anmittala7eaf2e2016-08-17 13:57:26 -0700235}
236
mtklein422310d2016-08-16 18:28:43 -0700237is_x86 = current_cpu == "x64" || current_cpu == "x86"
mtkleinc04ff472016-06-23 10:29:30 -0700238
mtklein7d6fb2c2016-08-25 14:50:44 -0700239opts("none") {
240 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
brettwb9447282016-09-01 14:24:39 -0700241 sources = skia_opts.none_sources
anmittalb8b3f712016-08-25 04:55:19 -0700242 cflags = []
243}
244
mtklein7d6fb2c2016-08-25 14:50:44 -0700245opts("armv7") {
anmittalb8b3f712016-08-25 04:55:19 -0700246 enabled = current_cpu == "arm"
brettwb9447282016-09-01 14:24:39 -0700247 sources = skia_opts.armv7_sources + skia_opts.neon_sources
mtklein7d6fb2c2016-08-25 14:50:44 -0700248 cflags = []
anmittalb8b3f712016-08-25 04:55:19 -0700249}
250
251opts("arm64") {
252 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700253 sources = skia_opts.arm64_sources
anmittalb8b3f712016-08-25 04:55:19 -0700254 cflags = []
255}
256
257opts("crc32") {
258 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700259 sources = skia_opts.crc32_sources
anmittalb8b3f712016-08-25 04:55:19 -0700260 cflags = [ "-march=armv8-a+crc" ]
261}
262
mtklein9b8583d2016-08-24 17:32:30 -0700263opts("sse2") {
264 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700265 sources = skia_opts.sse2_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400266 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400267 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
268 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400269 cflags = [ "-msse2" ]
270 }
mtklein9b8583d2016-08-24 17:32:30 -0700271}
mtkleinc04ff472016-06-23 10:29:30 -0700272
mtklein9b8583d2016-08-24 17:32:30 -0700273opts("ssse3") {
274 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700275 sources = skia_opts.ssse3_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400276 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400277 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
278 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400279 cflags = [ "-mssse3" ]
280 }
mtklein9b8583d2016-08-24 17:32:30 -0700281}
mtkleinc04ff472016-06-23 10:29:30 -0700282
mtklein9b8583d2016-08-24 17:32:30 -0700283opts("sse41") {
284 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700285 sources = skia_opts.sse41_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400286 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400287 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
288 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400289 cflags = [ "-msse4.1" ]
290 }
mtklein9b8583d2016-08-24 17:32:30 -0700291}
mtklein4e976072016-08-08 09:06:27 -0700292
mtklein9b8583d2016-08-24 17:32:30 -0700293opts("sse42") {
294 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700295 sources = skia_opts.sse42_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400296 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400297 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
298 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400299 cflags = [ "-msse4.2" ]
300 }
mtklein9b8583d2016-08-24 17:32:30 -0700301}
302
303opts("avx") {
304 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700305 sources = skia_opts.avx_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400306 if (is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000307 cflags = [ "/arch:AVX" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400308 } else {
309 cflags = [ "-mavx" ]
310 }
mtkleinc04ff472016-06-23 10:29:30 -0700311}
312
Mike Klein1b9b7d52018-02-27 10:37:40 -0500313opts("hsw") {
314 enabled = is_x86
315 sources = skia_opts.hsw_sources
Mike Klein4d4b3aa2018-03-21 13:07:35 -0400316 if (is_win) {
Mike Klein1b9b7d52018-02-27 10:37:40 -0500317 cflags = [ "/arch:AVX2" ]
318 } else {
Mike Klein17c1cd42018-03-21 20:13:19 -0400319 cflags = [
320 "-mavx2",
321 "-mf16c",
322 "-mfma",
323 ]
Mike Klein1b9b7d52018-02-27 10:37:40 -0500324 }
325
326 # Oddly, clang-cl doesn't recognize this as a valid flag.
327 # If it ever does, it'd nice to move this up with -mavx2 and co.
328 if (is_clang && !is_win) {
329 # This flag lets Clang generate FMAs when it sees a mul-then-add. It's optional,
330 # but nice to have, generating slightly better code for paths without explicit FMAs.
331 cflags += [ "-ffp-contract=fast" ]
332 }
333}
334
mtkleinc095df52016-08-24 12:23:52 -0700335# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700336template("optional") {
337 if (invoker.enabled) {
338 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700339 if (defined(invoker.public_defines)) {
340 defines = invoker.public_defines
341 }
mtklein457b42a2016-08-23 13:56:37 -0700342 }
343 source_set(target_name) {
mtkleincd01b032016-08-31 04:58:19 -0700344 forward_variables_from(invoker,
345 "*",
346 [
347 "public_defines",
348 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700349 "configs_to_remove",
mtkleincd01b032016-08-31 04:58:19 -0700350 ])
mtklein457b42a2016-08-23 13:56:37 -0700351 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein9b8583d2016-08-24 17:32:30 -0700352 configs += skia_library_configs
scroggof84ad642016-10-31 09:02:57 -0700353 if (defined(invoker.configs_to_remove)) {
354 configs -= invoker.configs_to_remove
355 }
mtklein457b42a2016-08-23 13:56:37 -0700356 }
357 } else {
mtklein457b42a2016-08-23 13:56:37 -0700358 source_set(target_name) {
359 forward_variables_from(invoker,
360 "*",
361 [
362 "public_defines",
mtklein457b42a2016-08-23 13:56:37 -0700363 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700364 "libs",
mtklein457b42a2016-08-23 13:56:37 -0700365 "sources",
mtkleincd01b032016-08-31 04:58:19 -0700366 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700367 "configs_to_remove",
mtklein457b42a2016-08-23 13:56:37 -0700368 ])
mtkleincd01b032016-08-31 04:58:19 -0700369 if (defined(invoker.sources_when_disabled)) {
370 sources = invoker.sources_when_disabled
371 }
372 configs += skia_library_configs
mtklein457b42a2016-08-23 13:56:37 -0700373 }
mtkleineb3c4252016-08-23 07:38:09 -0700374 }
mtklein457b42a2016-08-23 13:56:37 -0700375}
mtklein457b42a2016-08-23 13:56:37 -0700376
Mike Kleina04bb452017-02-09 12:24:07 -0500377optional("effects") {
378 enabled = skia_enable_effects
Ethan Nicholas762466e2017-06-29 10:03:38 -0400379 deps = [
380 ":compile_processors",
381 ]
Mike Kleina04bb452017-02-09 12:24:07 -0500382 sources =
383 skia_effects_sources + [ "src/ports/SkGlobalInitialization_default.cpp" ]
384 sources_when_disabled = [ "src/ports/SkGlobalInitialization_none.cpp" ]
385}
386
mtkleina45be612016-08-29 15:22:10 -0700387optional("fontmgr_android") {
388 enabled = fontmgr_android_enabled
mtkleina45be612016-08-29 15:22:10 -0700389
390 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500391 ":typeface_freetype",
mtkleina45be612016-08-29 15:22:10 -0700392 "//third_party/expat",
mtkleina45be612016-08-29 15:22:10 -0700393 ]
394 sources = [
395 "src/ports/SkFontMgr_android.cpp",
396 "src/ports/SkFontMgr_android_factory.cpp",
397 "src/ports/SkFontMgr_android_parser.cpp",
398 ]
399}
400
mtkleind2e39db2016-09-07 07:52:55 -0700401optional("fontmgr_custom") {
402 enabled = is_linux && skia_use_freetype && !skia_use_fontconfig
403
404 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500405 ":typeface_freetype",
mtkleind2e39db2016-09-07 07:52:55 -0700406 ]
407 sources = [
408 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500409 "src/ports/SkFontMgr_custom.h",
410 "src/ports/SkFontMgr_custom_directory.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700411 "src/ports/SkFontMgr_custom_directory_factory.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500412 "src/ports/SkFontMgr_custom_embedded.cpp",
413 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700414 ]
415}
416
Hal Canaryff2742e2018-01-30 11:35:47 -0500417optional("fontmgr_empty") {
418 enabled = skia_enable_fontmgr_empty
419 sources = [
420 "src/ports/SkFontMgr_empty_factory.cpp",
421 ]
422}
423
mtklein3cc22182016-08-29 13:26:14 -0700424optional("fontmgr_fontconfig") {
425 enabled = skia_use_freetype && skia_use_fontconfig
mtklein3cc22182016-08-29 13:26:14 -0700426
427 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500428 ":typeface_freetype",
mtklein3cc22182016-08-29 13:26:14 -0700429 "//third_party:fontconfig",
mtklein3cc22182016-08-29 13:26:14 -0700430 ]
431 sources = [
bungeman1ae0e012016-09-19 12:13:16 -0700432 "src/ports/SkFontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700433 "src/ports/SkFontConfigInterface_direct.cpp",
434 "src/ports/SkFontConfigInterface_direct_factory.cpp",
435 "src/ports/SkFontMgr_FontConfigInterface.cpp",
436 "src/ports/SkFontMgr_fontconfig.cpp",
437 "src/ports/SkFontMgr_fontconfig_factory.cpp",
438 ]
439}
440
mtkleincdedd0e2016-09-12 15:15:44 -0700441optional("fontmgr_fuchsia") {
442 enabled = is_fuchsia && skia_use_freetype
443
444 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500445 ":typeface_freetype",
mtkleincdedd0e2016-09-12 15:15:44 -0700446 ]
447 sources = [
448 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500449 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleincdedd0e2016-09-12 15:15:44 -0700450 "src/ports/SkFontMgr_custom_empty_factory.cpp",
451 ]
452}
453
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700454if (skia_lex) {
Ethan Nicholasca82a922017-09-07 09:39:50 -0400455 executable("sksllex") {
456 sources = [
457 "src/sksl/lex/Main.cpp",
458 "src/sksl/lex/NFA.cpp",
459 "src/sksl/lex/RegexNode.cpp",
460 "src/sksl/lex/RegexParser.cpp",
461 ]
462 include_dirs = [ "src/sksl/lex" ]
463 }
464
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700465 action("run_sksllex") {
466 script = "gn/run_sksllex.py"
Ethan Nicholase148bf72017-10-06 14:22:22 -0400467 deps = [
468 ":sksllex(//gn/toolchain:$host_toolchain)",
469 ]
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700470 sources = [
471 "src/sksl/lex/layout.lex",
472 "src/sksl/lex/sksl.lex",
473 ]
474
475 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
476 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
477 outputs = [
478 "$target_out_dir/" +
479 rebase_path("src/sksl/lex/SkSLLexer.h", target_out_dir),
480 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
481 # confused due to the same file being named by two different paths
482 ]
483 sksllex_path = "$root_out_dir/"
484 sksllex_path += "sksllex"
485 if (host_os == "win") {
486 sksllex_path += ".exe"
487 }
488 args = [
489 rebase_path(sksllex_path),
490 rebase_path("bin/clang-format"),
491 rebase_path("src"),
492 ]
493 }
494} else {
495 group("run_sksllex") {
496 }
497}
498
499if (skia_compile_processors) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400500 executable("skslc") {
501 defines = [ "SKSL_STANDALONE" ]
502 sources = [
503 "src/sksl/SkSLMain.cpp",
504 ]
505 sources += skia_sksl_sources
506 include_dirs = [
507 "src/gpu",
508 "src/sksl",
509 ]
510 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500511 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400512 "//third_party/spirv-tools",
513 ]
514 }
515
516 skia_gpu_processor_outputs = []
517 foreach(src, skia_gpu_processor_sources) {
518 dir = get_path_info(src, "dir")
519 name = get_path_info(src, "name")
520
521 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
522 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
523 skia_gpu_processor_outputs += [
524 "$target_out_dir/" + rebase_path("$dir/$name.h", target_out_dir),
525 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
526 # confused due to the same file being named by two different paths
527 ]
528 }
529
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500530 action("create_sksl_enums") {
531 script = "gn/create_sksl_enums.py"
532 sources = [
533 "include/private/GrSharedEnums.h",
534 ]
535 outputs = [
536 "$target_out_dir/" +
Ben Wagnera56c4d22018-01-24 17:32:17 -0500537 rebase_path("src/sksl/sksl_enums.inc", target_out_dir),
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500538 ]
539 args = [
540 rebase_path(sources[0]),
541 rebase_path(outputs[0]),
542 ]
543 }
544
Ethan Nicholas762466e2017-06-29 10:03:38 -0400545 action("compile_processors") {
546 script = "gn/compile_processors.py"
547 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500548 ":create_sksl_enums",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400549 ":skslc(//gn/toolchain:$host_toolchain)",
550 ]
551 sources = skia_gpu_processor_sources
552 outputs = skia_gpu_processor_outputs
553 skslc_path = "$root_out_dir/"
554 if (host_toolchain != default_toolchain_name) {
555 skslc_path += "$host_toolchain/"
556 }
557 skslc_path += "skslc"
558 if (host_os == "win") {
559 skslc_path += ".exe"
560 }
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400561 args = [
562 rebase_path(skslc_path),
Eric Borenb121be72017-07-28 10:00:51 -0400563 rebase_path("bin/clang-format"),
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400564 ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400565 args += rebase_path(skia_gpu_processor_sources)
566 }
567} else {
568 skia_gpu_processor_outputs = []
569 group("compile_processors") {
570 }
571}
572
mtklein06c35c02016-09-20 12:28:12 -0700573optional("gpu") {
574 enabled = skia_enable_gpu
Ethan Nicholas762466e2017-06-29 10:03:38 -0400575 deps = [
576 ":compile_processors",
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700577 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400578 ]
mtkleine9fb3d52016-09-20 15:11:46 -0700579 public_defines = []
580
Brian Salomon3d6801e2017-12-11 10:06:31 -0500581 sources = skia_gpu_sources + skia_sksl_sources + skia_gpu_processor_outputs
mtklein06c35c02016-09-20 12:28:12 -0700582
583 # These paths need to be absolute to match the ones produced by shared_sources.gni.
Brian Salomon3d6801e2017-12-11 10:06:31 -0500584 sources -= get_path_info([ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ],
mtklein06c35c02016-09-20 12:28:12 -0700585 "abspath")
Mike Klein703cf5a2016-10-13 17:18:04 -0400586 libs = []
mtklein06c35c02016-09-20 12:28:12 -0700587 if (is_android) {
Hal Canary25375e82018-03-14 15:16:56 -0400588 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Derek Sollenberger7a869872017-06-27 15:37:25 -0400589
590 # this lib is required to link against AHardwareBuffer
591 if (defined(ndk_api) && ndk_api >= 26) {
592 libs += [ "android" ]
593 }
Kevin Lubick4a24e102017-03-29 11:19:01 -0400594 } else if (skia_use_egl) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500595 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Kevin Lubick4a24e102017-03-29 11:19:01 -0400596 libs += [ "EGL" ]
mtklein06c35c02016-09-20 12:28:12 -0700597 } else if (is_linux) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500598 sources += [ "src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -0500599 libs += [
600 "GL",
601 "GLU",
602 ]
mtklein06c35c02016-09-20 12:28:12 -0700603 } else if (is_mac) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500604 sources += [ "src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
Chinmay Garde130a1182016-11-23 11:43:56 -0800605 } else if (is_ios) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500606 sources += [ "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400607 } else if (is_win) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500608 sources += [ "src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400609 libs += [ "OpenGL32.lib" ]
mtklein06c35c02016-09-20 12:28:12 -0700610 } else {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500611 sources += [ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ]
mtklein06c35c02016-09-20 12:28:12 -0700612 }
mtkleine9fb3d52016-09-20 15:11:46 -0700613
614 if (skia_use_vulkan) {
615 public_defines += [ "SK_VULKAN" ]
616 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700617 if (skia_enable_vulkan_debug_layers) {
618 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
619 }
Greg Danielafb7ec72017-12-07 12:48:30 -0500620 if (skia_vulkan_header != "") {
621 public_defines += [ "SK_VULKAN_HEADER=\"$skia_vulkan_header\"" ]
622 } else {
623 if (is_skia_dev_build) {
624 public_defines += [ "SK_VULKAN_HEADER=\"GrVulkanDefines.h\"" ]
625 }
626 }
mtkleine9fb3d52016-09-20 15:11:46 -0700627 }
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500628 if (skia_use_legacy_gpu_pixel_ops) {
629 public_defines += [ "SK_LEGACY_GPU_PIXEL_OPS" ]
630 }
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400631 if (skia_enable_spirv_validation) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400632 deps += [ "//third_party/spirv-tools" ]
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400633 public_defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
634 }
Greg Daniele5ddff52017-07-05 16:49:36 -0400635
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400636 cflags_objcc = []
Greg Daniele5ddff52017-07-05 16:49:36 -0400637 if (skia_use_metal) {
638 public_defines += [ "SK_METAL" ]
639 sources += skia_metal_sources
640 libs += [ "Metal.framework" ]
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400641 cflags_objcc += [ "-fobjc-arc" ]
Greg Daniele5ddff52017-07-05 16:49:36 -0400642 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500643
644 if (skia_enable_atlas_text) {
645 sources += skia_atlas_text_sources
646 }
mtklein06c35c02016-09-20 12:28:12 -0700647}
648
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400649optional("heif") {
650 enabled = skia_use_libheif
651 public_defines = [ "SK_HAS_HEIF_LIBRARY" ]
652
653 deps = []
654
655 sources = [
656 "src/codec/SkHeifCodec.cpp",
657 ]
658}
659
mtklein63213812016-08-24 09:55:56 -0700660optional("jpeg") {
661 enabled = skia_use_libjpeg_turbo
662 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
663
mtklein63213812016-08-24 09:55:56 -0700664 deps = [
665 "//third_party/libjpeg-turbo:libjpeg",
666 ]
667 sources = [
668 "src/codec/SkJpegCodec.cpp",
669 "src/codec/SkJpegDecoderMgr.cpp",
670 "src/codec/SkJpegUtility.cpp",
mtklein63213812016-08-24 09:55:56 -0700671 "src/images/SkJPEGWriteUtility.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400672 "src/images/SkJpegEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700673 ]
674}
675
676optional("pdf") {
Hal Canary43fb7a02016-12-30 13:09:03 -0500677 enabled = skia_use_zlib && skia_enable_pdf
678 public_defines = [ "SK_SUPPORT_PDF" ]
mtklein63213812016-08-24 09:55:56 -0700679
mtklein63213812016-08-24 09:55:56 -0700680 deps = [
681 "//third_party/zlib",
682 ]
brettwb9447282016-09-01 14:24:39 -0700683 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -0700684 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
mtklein63213812016-08-24 09:55:56 -0700685
686 if (skia_use_sfntly) {
687 deps += [ "//third_party/sfntly" ]
Hal Canary43fb7a02016-12-30 13:09:03 -0500688 public_defines += [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -0700689 }
690}
691
692optional("png") {
693 enabled = skia_use_libpng
694 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
695
mtklein63213812016-08-24 09:55:56 -0700696 deps = [
697 "//third_party/libpng",
698 ]
699 sources = [
700 "src/codec/SkIcoCodec.cpp",
701 "src/codec/SkPngCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400702 "src/images/SkPngEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700703 ]
704}
705
scroggof84ad642016-10-31 09:02:57 -0700706optional("raw") {
Mike Klein10d665d2016-11-01 11:46:10 -0400707 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -0700708 public_defines = [ "SK_CODEC_DECODES_RAW" ]
709
710 deps = [
711 "//third_party/dng_sdk",
712 "//third_party/libjpeg-turbo:libjpeg",
713 "//third_party/piex",
714 ]
715
716 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
717 # Skia.
718 configs_to_remove = [ "//gn:no_exceptions" ]
719
720 sources = [
721 "src/codec/SkRawAdapterCodec.cpp",
722 "src/codec/SkRawCodec.cpp",
723 ]
724}
725
Mike Kleinfb333552018-01-25 12:49:37 -0500726optional("skcms") {
727 enabled = skia_use_skcms
728
729 deps = [
730 "//third_party/skcms",
731 ]
732 sources = [
Brian Osman98242a82018-03-13 14:35:27 +0000733 # TODO
Mike Kleinfb333552018-01-25 12:49:37 -0500734 ]
735}
736
mtklein3cc22182016-08-29 13:26:14 -0700737optional("typeface_freetype") {
738 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -0700739
740 deps = [
741 "//third_party/freetype2",
742 ]
743 sources = [
744 "src/ports/SkFontHost_FreeType.cpp",
745 "src/ports/SkFontHost_FreeType_common.cpp",
746 ]
747}
748
mtklein457b42a2016-08-23 13:56:37 -0700749optional("webp") {
750 enabled = skia_use_libwebp
751 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
752
mtklein457b42a2016-08-23 13:56:37 -0700753 deps = [
754 "//third_party/libwebp",
755 ]
756 sources = [
757 "src/codec/SkWebpAdapterCodec.cpp",
758 "src/codec/SkWebpCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400759 "src/images/SkWebpEncoder.cpp",
mtklein457b42a2016-08-23 13:56:37 -0700760 ]
mtkleineb3c4252016-08-23 07:38:09 -0700761}
762
mtklein63213812016-08-24 09:55:56 -0700763optional("xml") {
764 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +0000765 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -0700766
mtklein63213812016-08-24 09:55:56 -0700767 deps = [
768 "//third_party/expat",
769 ]
770 sources = [
Mike Kleinbd41bcc2017-02-09 16:38:15 -0500771 "src/svg/SkSVGCanvas.cpp",
772 "src/svg/SkSVGDevice.cpp",
mtklein63213812016-08-24 09:55:56 -0700773 "src/xml/SkDOM.cpp",
774 "src/xml/SkXMLParser.cpp",
775 "src/xml/SkXMLWriter.cpp",
776 ]
777}
778
mtkleinc04ff472016-06-23 10:29:30 -0700779component("skia") {
780 public_configs = [ ":skia_public" ]
781 configs += skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -0700782
783 deps = [
anmittalb8b3f712016-08-25 04:55:19 -0700784 ":arm64",
785 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -0700786 ":avx",
anmittalb8b3f712016-08-25 04:55:19 -0700787 ":crc32",
Mike Kleina04bb452017-02-09 12:24:07 -0500788 ":effects",
mtkleina45be612016-08-29 15:22:10 -0700789 ":fontmgr_android",
mtkleind2e39db2016-09-07 07:52:55 -0700790 ":fontmgr_custom",
Hal Canaryff2742e2018-01-30 11:35:47 -0500791 ":fontmgr_empty",
mtklein3cc22182016-08-29 13:26:14 -0700792 ":fontmgr_fontconfig",
mtkleincdedd0e2016-09-12 15:15:44 -0700793 ":fontmgr_fuchsia",
mtklein06c35c02016-09-20 12:28:12 -0700794 ":gpu",
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400795 ":heif",
Mike Klein1b9b7d52018-02-27 10:37:40 -0500796 ":hsw",
mtklein63213812016-08-24 09:55:56 -0700797 ":jpeg",
mtklein9b8583d2016-08-24 17:32:30 -0700798 ":none",
mtklein63213812016-08-24 09:55:56 -0700799 ":pdf",
800 ":png",
scroggof84ad642016-10-31 09:02:57 -0700801 ":raw",
Mike Kleinfb333552018-01-25 12:49:37 -0500802 ":skcms",
mtklein9b8583d2016-08-24 17:32:30 -0700803 ":sse2",
804 ":sse41",
805 ":sse42",
806 ":ssse3",
mtkleineb3c4252016-08-23 07:38:09 -0700807 ":webp",
mtklein63213812016-08-24 09:55:56 -0700808 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -0700809 ]
810
Chinmay Garde43f115c2016-11-16 15:04:12 -0800811 # This file (and all GN files in Skia) are designed to work with an
812 # empty sources assignment filter; we handle all that explicitly.
813 # We clear the filter here for clients who may have set up a global filter.
814 set_sources_assignment_filter([])
815
mtkleinc04ff472016-06-23 10:29:30 -0700816 sources = []
brettwb9447282016-09-01 14:24:39 -0700817 sources += skia_core_sources
brettwb9447282016-09-01 14:24:39 -0700818 sources += skia_utils_sources
Hal Canary6ad3d2f2016-12-20 16:15:56 -0500819 sources += skia_xps_sources
mtkleinc04ff472016-06-23 10:29:30 -0700820 sources += [
Stan Iliev73d8fd92017-08-02 15:36:24 -0400821 "src/android/SkAndroidFrameworkUtils.cpp",
Leon Scroggins III42ee2842018-01-14 14:46:51 -0500822 "src/android/SkAnimatedImage.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700823 "src/android/SkBitmapRegionCodec.cpp",
824 "src/android/SkBitmapRegionDecoder.cpp",
825 "src/codec/SkAndroidCodec.cpp",
Leon Scroggins IIId81fed92017-06-01 13:42:28 -0400826 "src/codec/SkBmpBaseCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700827 "src/codec/SkBmpCodec.cpp",
828 "src/codec/SkBmpMaskCodec.cpp",
829 "src/codec/SkBmpRLECodec.cpp",
830 "src/codec/SkBmpStandardCodec.cpp",
831 "src/codec/SkCodec.cpp",
832 "src/codec/SkCodecImageGenerator.cpp",
scroggo19b91532016-10-24 09:03:26 -0700833 "src/codec/SkGifCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700834 "src/codec/SkMaskSwizzler.cpp",
835 "src/codec/SkMasks.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700836 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700837 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -0700838 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700839 "src/codec/SkSwizzler.cpp",
840 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700841 "src/images/SkImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700842 "src/ports/SkDiscardableMemory_none.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700843 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700844 "src/ports/SkMemory_malloc.cpp",
845 "src/ports/SkOSFile_stdio.cpp",
846 "src/sfnt/SkOTTable_name.cpp",
847 "src/sfnt/SkOTUtils.cpp",
848 "src/utils/mac/SkStream_mac.cpp",
scroggo3d3a65c2016-10-24 12:28:30 -0700849 "third_party/gif/SkGifImageReader.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700850 ]
brettwb9447282016-09-01 14:24:39 -0700851
mtklein7d6fb2c2016-08-25 14:50:44 -0700852 libs = []
853
mtkleinc04ff472016-06-23 10:29:30 -0700854 if (is_win) {
855 sources += [
Mike Kleinae7e6712016-10-11 17:49:33 -0400856 "src/fonts/SkFontMgr_indirect.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700857 "src/ports/SkDebug_win.cpp",
858 "src/ports/SkFontHost_win.cpp",
859 "src/ports/SkFontMgr_win_dw.cpp",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500860 "src/ports/SkFontMgr_win_dw_factory.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700861 "src/ports/SkImageEncoder_WIC.cpp",
862 "src/ports/SkImageGeneratorWIC.cpp",
863 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -0700864 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700865 "src/ports/SkScalerContext_win_dw.cpp",
866 "src/ports/SkTLS_win.cpp",
867 "src/ports/SkTypeface_win_dw.cpp",
868 ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400869 libs += [
870 "FontSub.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500871 "Gdi32.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400872 "Ole32.lib",
873 "OleAut32.lib",
874 "User32.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500875 "Usp10.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400876 ]
mtkleinc04ff472016-06-23 10:29:30 -0700877 } else {
878 sources += [
mtkleinc04ff472016-06-23 10:29:30 -0700879 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -0700880 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700881 "src/ports/SkTLS_pthread.cpp",
882 ]
Ben Wagnerbe6ae5b2017-08-31 16:45:23 -0400883 libs += [ "dl" ]
mtkleinc04ff472016-06-23 10:29:30 -0700884 }
885
mtklein7d6fb2c2016-08-25 14:50:44 -0700886 if (is_android) {
Mike Klein1c471872017-01-13 15:27:45 -0500887 deps += [ "//third_party/expat" ]
Mike Kleine459afd2017-03-03 09:21:30 -0500888 if (defined(ndk) && ndk != "") {
Mike Klein1c471872017-01-13 15:27:45 -0500889 deps += [ "//third_party/cpu-features" ]
890 }
mtklein06c35c02016-09-20 12:28:12 -0700891 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -0700892 libs += [
893 "EGL",
894 "GLESv2",
895 "log",
896 ]
897 }
898
mtkleinc04ff472016-06-23 10:29:30 -0700899 if (is_linux) {
mtklein06c35c02016-09-20 12:28:12 -0700900 sources += [ "src/ports/SkDebug_stdio.cpp" ]
Hal Canary25375e82018-03-14 15:16:56 -0400901 if (skia_use_egl) {
902 libs += [ "GLESv2" ]
903 }
mtkleinc04ff472016-06-23 10:29:30 -0700904 }
905
906 if (is_mac) {
907 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -0700908 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700909 "src/ports/SkFontHost_mac.cpp",
910 "src/ports/SkImageEncoder_CG.cpp",
911 "src/ports/SkImageGeneratorCG.cpp",
912 ]
mtklein09e61f72016-08-23 13:35:28 -0700913 libs += [
bungeman3e306f62017-03-29 11:32:02 -0400914 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
915 "AppKit.framework",
mtklein09e61f72016-08-23 13:35:28 -0700916 "ApplicationServices.framework",
917 "OpenGL.framework",
918 ]
mtkleinc04ff472016-06-23 10:29:30 -0700919 }
abarth6fc8ff02016-07-15 15:15:15 -0700920
Mike Klein7d302882016-11-03 14:06:31 -0400921 if (is_ios) {
922 sources += [
923 "src/ports/SkDebug_stdio.cpp",
924 "src/ports/SkFontHost_mac.cpp",
925 "src/ports/SkImageEncoder_CG.cpp",
926 "src/ports/SkImageGeneratorCG.cpp",
927 ]
928 libs += [
929 "CoreFoundation.framework",
930 "CoreGraphics.framework",
931 "CoreText.framework",
932 "ImageIO.framework",
933 "MobileCoreServices.framework",
bungeman3e306f62017-03-29 11:32:02 -0400934
935 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
936 "UIKit.framework",
Mike Klein7d302882016-11-03 14:06:31 -0400937 ]
938 }
939
abarth6fc8ff02016-07-15 15:15:15 -0700940 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -0700941 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -0700942 }
mtkleinc04ff472016-06-23 10:29:30 -0700943}
944
mtkleinc095df52016-08-24 12:23:52 -0700945# Targets guarded by skia_enable_tools may use //third_party freely.
946if (skia_enable_tools) {
Mike Klein308b5ac2016-12-06 16:03:52 -0500947 # Used by gn_to_bp.py to list our public include dirs.
948 source_set("public") {
949 configs += [ ":skia_public" ]
950 }
951
Mike Kleinc36dedf2016-11-18 09:35:28 -0500952 config("skia.h_config") {
953 include_dirs = [ "$target_gen_dir" ]
Greg Danielafb7ec72017-12-07 12:48:30 -0500954 if (skia_use_vulkan) {
955 # So we can get the header which includes vulkan
956 include_dirs += [ "tools/gpu/vk" ]
957 }
Mike Kleinc36dedf2016-11-18 09:35:28 -0500958 }
959 action("skia.h") {
960 public_configs = [ ":skia.h_config" ]
961 skia_h = "$target_gen_dir/skia.h"
962 script = "gn/find_headers.py"
Greg Danielc819e662017-04-19 16:39:45 -0400963 args = [ rebase_path(skia_h, root_build_dir) ] +
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000964 rebase_path(skia_public_includes)
Mike Kleinc36dedf2016-11-18 09:35:28 -0500965 depfile = "$skia_h.deps"
966 outputs = [
967 skia_h,
968 ]
969 }
970
971 if (skia_enable_gpu && target_cpu == "x64") {
Mike Kleinc36dedf2016-11-18 09:35:28 -0500972 executable("fiddle") {
973 libs = []
Mike Kleinc36dedf2016-11-18 09:35:28 -0500974 sources = [
Mike Kleinc36dedf2016-11-18 09:35:28 -0500975 "tools/fiddle/draw.cpp",
976 "tools/fiddle/fiddle_main.cpp",
977 ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -0400978
979 if (skia_use_egl) {
980 sources += [ "tools/fiddle/egl_context.cpp" ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -0400981 } else {
982 sources += [ "tools/fiddle/null_context.cpp" ]
983 }
Joe Gregorio1e735c02017-04-19 14:05:14 -0400984 testonly = true
Mike Kleinc36dedf2016-11-18 09:35:28 -0500985 deps = [
Joe Gregorio1e735c02017-04-19 14:05:14 -0400986 ":flags",
Robert Phillips57e08282017-11-16 14:59:48 -0500987 ":gpu_tool_utils",
Mike Kleinc36dedf2016-11-18 09:35:28 -0500988 ":skia",
989 ":skia.h",
990 ]
991 }
992 }
993
994 if (skia_enable_gpu) {
995 source_set("public_headers_warnings_check") {
996 sources = [
997 "tools/public_headers_warnings_check.cpp",
998 ]
999 configs -= [ "//gn:warnings_except_public_headers" ]
1000 deps = [
1001 ":skia",
1002 ":skia.h",
1003 ]
1004 }
1005 }
1006
mtkleinc095df52016-08-24 12:23:52 -07001007 template("test_lib") {
1008 config(target_name + "_config") {
1009 include_dirs = invoker.public_include_dirs
mtkleina627b5c2016-09-20 13:36:47 -07001010 if (defined(invoker.public_defines)) {
1011 defines = invoker.public_defines
1012 }
mtklein25c81d42016-07-27 13:55:26 -07001013 }
mtkleinc095df52016-08-24 12:23:52 -07001014 source_set(target_name) {
1015 forward_variables_from(invoker, "*", [ "public_include_dirs" ])
1016 public_configs = [
1017 ":" + target_name + "_config",
1018 ":skia_private",
1019 ]
1020
1021 if (!defined(deps)) {
1022 deps = []
1023 }
1024 deps += [ ":skia" ]
1025 testonly = true
1026 }
mtklein25c81d42016-07-27 13:55:26 -07001027 }
mtklein25c81d42016-07-27 13:55:26 -07001028
Mike Kleine6682eb2017-01-05 10:54:57 -05001029 template("test_app") {
Jim Van Verth443a9132017-11-28 09:45:26 -05001030 if (is_ios) {
1031 app_name = target_name
1032 gen_path = target_gen_dir
1033
1034 action("${app_name}_generate_info_plist") {
1035 script = "//gn/gen_plist_ios.py"
1036 outputs = [
1037 "$gen_path/${app_name}_Info.plist",
1038 ]
1039 args = [ rebase_path("$gen_path/$app_name", root_build_dir) ]
1040 }
1041
1042 bundle_data("${app_name}_bundle_info_plist") {
1043 public_deps = [
1044 ":${app_name}_generate_info_plist",
1045 ]
1046 sources = [
1047 "$gen_path/${app_name}_Info.plist",
1048 ]
1049 outputs = [
1050 "{{bundle_root_dir}}/Info.plist",
1051 ]
1052 }
1053
Jim Van Verth329c5a62017-11-29 11:42:33 -05001054 bundle_ios_data =
1055 defined(invoker.bundle_ios_data) && invoker.bundle_ios_data
1056
1057 if (bundle_ios_data) {
1058 has_skps =
1059 "True" == exec_script("//gn/checkdir.py",
1060 [ rebase_path("skps", root_build_dir) ],
1061 "trim string")
1062 bundle_data("${app_name}_bundle_resources") {
1063 sources = [
1064 "resources",
1065 ]
1066 outputs = [
1067 # iOS reserves the folders 'Resources' and 'resources' so store one level deeper
1068 "{{bundle_resources_dir}}/data/resources",
1069 ]
1070 }
1071
1072 if (has_skps) {
1073 bundle_data("${app_name}_bundle_skps") {
1074 sources = [
1075 "skps",
1076 ]
1077 outputs = [
1078 # Store in same folder as resources
1079 "{{bundle_resources_dir}}/data/skps",
1080 ]
1081 }
1082 }
1083 }
1084
Jim Van Verth443a9132017-11-28 09:45:26 -05001085 executable("${app_name}_generate_executable") {
1086 forward_variables_from(invoker,
1087 "*",
1088 [
1089 "output_name",
1090 "visibility",
1091 "is_shared_library",
1092 ])
Mike Klein154e6da2017-07-26 15:13:47 -04001093 configs += [ ":skia_private" ]
Mike Kleine6682eb2017-01-05 10:54:57 -05001094 testonly = true
Jim Van Verth443a9132017-11-28 09:45:26 -05001095 output_name = rebase_path("$gen_path/$app_name", root_build_dir)
1096 }
1097
1098 bundle_data("${app_name}_bundle_executable") {
1099 public_deps = [
1100 ":${app_name}_generate_executable",
1101 ]
1102 sources = [
1103 "$gen_path/$app_name",
1104 ]
1105 outputs = [
1106 "{{bundle_executable_dir}}/$app_name",
1107 ]
1108 testonly = true
1109 }
1110
1111 create_bundle("$app_name") {
1112 product_type = "com.apple.product-type.application"
1113 testonly = true
1114
1115 bundle_root_dir = "${root_build_dir}/${target_name}.app"
1116 bundle_resources_dir = bundle_root_dir
1117 bundle_executable_dir = bundle_root_dir
1118 bundle_plugins_dir = bundle_root_dir + "/Plugins"
1119
1120 deps = [
1121 ":${app_name}_bundle_executable",
1122 ":${app_name}_bundle_info_plist",
1123 ]
Jim Van Verth329c5a62017-11-29 11:42:33 -05001124 if (bundle_ios_data) {
1125 deps += [ ":${app_name}_bundle_resources" ]
1126 if (has_skps) {
1127 deps += [ ":${app_name}_bundle_skps" ]
1128 }
1129 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001130
1131 # should only code sign when running on a device, not the simulator
1132 if (target_cpu != "x64") {
1133 code_signing_script = "//gn/codesign_ios.py"
1134 code_signing_sources = [ "$target_gen_dir/$app_name" ]
1135 code_signing_outputs = [
1136 "$bundle_root_dir/_CodeSignature/CodeResources",
1137 "$bundle_root_dir/embedded.mobileprovision",
1138 ]
Jim Van Verth4e502972017-12-07 15:16:10 -05001139 code_signing_args = [
1140 rebase_path("$bundle_root_dir", root_build_dir),
1141 skia_ios_identity,
1142 skia_ios_profile,
1143 ]
Jim Van Verth443a9132017-11-28 09:45:26 -05001144 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001145 }
1146 } else {
Jim Van Verth443a9132017-11-28 09:45:26 -05001147 # !is_ios
1148
1149 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
1150 shared_library("lib" + target_name) {
1151 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1152 configs += [ ":skia_private" ]
1153 testonly = true
1154 }
1155 } else {
1156 _executable = target_name
1157 executable(_executable) {
1158 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1159 configs += [ ":skia_private" ]
1160 testonly = true
1161 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001162 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001163 if (is_android && skia_android_serial != "" && defined(_executable)) {
1164 action("push_" + target_name) {
1165 script = "gn/push_to_android.py"
1166 deps = [
1167 ":" + _executable,
1168 ]
1169 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
1170 outputs = [
1171 _stamp,
1172 ]
1173 args = [
1174 rebase_path("$root_build_dir/$_executable"),
1175 skia_android_serial,
1176 rebase_path(_stamp),
1177 ]
1178 testonly = true
1179 }
Mike Klein7d921032017-01-05 12:20:41 -05001180 }
1181 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001182 }
1183
mtkleinc095df52016-08-24 12:23:52 -07001184 test_lib("gpu_tool_utils") {
mtklein38925aa2016-09-21 10:11:25 -07001185 public_include_dirs = []
1186 if (skia_enable_gpu) {
1187 public_defines = []
1188 public_include_dirs += [ "tools/gpu" ]
mtkleind68f9b02016-09-23 13:18:41 -07001189
1190 deps = []
mtklein38925aa2016-09-21 10:11:25 -07001191 sources = [
1192 "tools/gpu/GrContextFactory.cpp",
1193 "tools/gpu/GrTest.cpp",
Brian Salomon58389b92018-03-07 13:01:25 -05001194 "tools/gpu/ProxyUtils.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001195 "tools/gpu/TestContext.cpp",
Brian Salomoncbcb0a12017-11-19 13:20:13 -05001196 "tools/gpu/atlastext/GLTestAtlasTextRenderer.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001197 "tools/gpu/gl/GLTestContext.cpp",
mtklein605d9522016-09-21 14:01:32 -07001198 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001199 "tools/gpu/gl/debug/DebugGLTestContext.cpp",
1200 "tools/gpu/gl/debug/GrBufferObj.cpp",
1201 "tools/gpu/gl/debug/GrFrameBufferObj.cpp",
1202 "tools/gpu/gl/debug/GrProgramObj.cpp",
1203 "tools/gpu/gl/debug/GrShaderObj.cpp",
1204 "tools/gpu/gl/debug/GrTextureObj.cpp",
1205 "tools/gpu/gl/debug/GrTextureUnitObj.cpp",
1206 "tools/gpu/gl/null/NullGLTestContext.cpp",
Brian Salomoncfe910d2017-07-06 16:40:18 -04001207 "tools/gpu/mock/MockTestContext.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001208 ]
1209 libs = []
mtklein25c81d42016-07-27 13:55:26 -07001210
Kevin Lubick4a24e102017-03-29 11:19:01 -04001211 if (is_android || skia_use_egl) {
mtklein38925aa2016-09-21 10:11:25 -07001212 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
Mike Klein7d302882016-11-03 14:06:31 -04001213 } else if (is_ios) {
1214 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
1215 libs += [ "OpenGLES.framework" ]
mtklein38925aa2016-09-21 10:11:25 -07001216 } else if (is_linux) {
1217 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -05001218 libs += [ "X11" ]
mtklein38925aa2016-09-21 10:11:25 -07001219 } else if (is_mac) {
1220 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
Mike Klein4b167fc2016-10-11 18:13:53 -04001221 } else if (is_win) {
1222 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
1223 libs += [
1224 "Gdi32.lib",
1225 "OpenGL32.lib",
1226 ]
mtklein38925aa2016-09-21 10:11:25 -07001227 }
mtklein6ef69992016-09-14 06:12:09 -07001228
Greg Daniel6b7e0e22017-07-12 16:21:09 -04001229 cflags_objcc = [ "-fobjc-arc" ]
1230
Mike Kleinc168a3a2016-11-14 14:53:13 +00001231 if (skia_use_angle) {
Mike Kleinc168a3a2016-11-14 14:53:13 +00001232 deps += [ "//third_party/angle2" ]
1233 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
1234 }
mtkleind68f9b02016-09-23 13:18:41 -07001235 if (skia_use_vulkan) {
1236 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
Greg Daniel35970ec2017-11-10 10:03:05 -05001237 sources += [ "tools/gpu/vk/VkTestUtils.cpp" ]
mtkleind68f9b02016-09-23 13:18:41 -07001238 }
Greg Danielb76a72a2017-07-13 15:07:54 -04001239 if (skia_use_metal) {
1240 sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
1241 }
mtkleina627b5c2016-09-20 13:36:47 -07001242 }
mtklein25c81d42016-07-27 13:55:26 -07001243 }
mtklein25c81d42016-07-27 13:55:26 -07001244
mtkleinc095df52016-08-24 12:23:52 -07001245 test_lib("flags") {
1246 public_include_dirs = [ "tools/flags" ]
1247 sources = [
1248 "tools/flags/SkCommandLineFlags.cpp",
mtklein046cb562016-09-16 10:23:12 -07001249 ]
1250 }
1251 test_lib("common_flags") {
1252 public_include_dirs = [ "tools/flags" ]
1253 sources = [
mtkleinc095df52016-08-24 12:23:52 -07001254 "tools/flags/SkCommonFlags.cpp",
1255 "tools/flags/SkCommonFlagsConfig.cpp",
1256 ]
1257 deps = [
mtklein046cb562016-09-16 10:23:12 -07001258 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001259 ":gpu_tool_utils",
1260 ]
1261 }
mtklein25c81d42016-07-27 13:55:26 -07001262
mtkleinc095df52016-08-24 12:23:52 -07001263 test_lib("tool_utils") {
1264 public_include_dirs = [
1265 "tools",
1266 "tools/debugger",
Ben Wagner483c7722018-02-20 17:06:07 -05001267 "tools/fonts",
mtkleinc095df52016-08-24 12:23:52 -07001268 "tools/timer",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001269 "tools/trace",
mtkleinc095df52016-08-24 12:23:52 -07001270 ]
1271 sources = [
mtkleinb37c0342016-09-09 11:07:45 -07001272 "tools/AndroidSkDebugToStdOut.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001273 "tools/CrashHandler.cpp",
mtklein0590fa52016-09-01 07:06:54 -07001274 "tools/LsanSuppressions.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001275 "tools/ProcStats.cpp",
1276 "tools/Resources.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001277 "tools/UrlDataManager.cpp",
1278 "tools/debugger/SkDebugCanvas.cpp",
1279 "tools/debugger/SkDrawCommand.cpp",
1280 "tools/debugger/SkJsonWriteBuffer.cpp",
1281 "tools/debugger/SkObjectParser.cpp",
Brian Salomon5f33a8c2018-02-26 14:32:39 -05001282 "tools/fonts/SkRandomScalerContext.cpp",
1283 "tools/fonts/SkTestFontMgr.cpp",
1284 "tools/fonts/SkTestScalerContext.cpp",
1285 "tools/fonts/sk_tool_utils_font.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001286 "tools/picture_utils.cpp",
1287 "tools/random_parse_path.cpp",
1288 "tools/sk_tool_utils.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001289 "tools/timer/Timer.cpp",
Brian Osman53136aa2017-07-20 15:43:35 -04001290 "tools/trace/SkChromeTracingTracer.cpp",
1291 "tools/trace/SkChromeTracingTracer.h",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001292 "tools/trace/SkDebugfTracer.cpp",
1293 "tools/trace/SkDebugfTracer.h",
Brian Osman53136aa2017-07-20 15:43:35 -04001294 "tools/trace/SkEventTracingPriv.cpp",
1295 "tools/trace/SkEventTracingPriv.h",
mtkleinc095df52016-08-24 12:23:52 -07001296 ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001297 libs = []
1298 if (is_ios) {
1299 sources += [ "tools/ios_utils.m" ]
1300 libs += [ "Foundation.framework" ]
1301 }
mtkleinc095df52016-08-24 12:23:52 -07001302 deps = [
mtklein046cb562016-09-16 10:23:12 -07001303 ":common_flags",
mtkleinc095df52016-08-24 12:23:52 -07001304 ":flags",
1305 "//third_party/libpng",
1306 ]
1307 public_deps = [
1308 "//third_party/jsoncpp",
1309 ]
1310 }
mtklein25c81d42016-07-27 13:55:26 -07001311
Mike Klein6e744122016-10-27 12:21:40 -04001312 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -07001313 test_lib("gm") {
1314 public_include_dirs = [ "gm" ]
1315 sources = gm_sources
1316 deps = [
Florin Malita4aa44412017-12-19 12:21:02 -05001317 ":experimental_sksg",
scroggo19b91532016-10-24 09:03:26 -07001318 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001319 ":gpu_tool_utils",
1320 ":skia",
1321 ":tool_utils",
1322 ]
1323 }
mtklein25c81d42016-07-27 13:55:26 -07001324
Mike Klein6e744122016-10-27 12:21:40 -04001325 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07001326 test_lib("tests") {
1327 public_include_dirs = [ "tests" ]
Mike Klein6e744122016-10-27 12:21:40 -04001328 sources = tests_sources + pathops_tests_sources
mtkleina45be612016-08-29 15:22:10 -07001329 if (!fontmgr_android_enabled) {
Mike Klein6e744122016-10-27 12:21:40 -04001330 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -07001331 }
mtkleinc095df52016-08-24 12:23:52 -07001332 deps = [
Florin Malita4aa44412017-12-19 12:21:02 -05001333 ":experimental_sksg",
Hal Canary0f666812018-03-22 15:21:12 -04001334 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001335 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001336 ":skia",
1337 ":tool_utils",
1338 "//third_party/libpng",
1339 "//third_party/zlib",
1340 ]
Mike Kleind63442d2017-03-27 14:16:04 -04001341 public_deps = [
1342 ":gpu_tool_utils", # Test.h #includes headers from this target.
1343 ]
mtkleinc095df52016-08-24 12:23:52 -07001344 }
mtklein2f3416d2016-08-02 16:02:05 -07001345
Mike Klein6e744122016-10-27 12:21:40 -04001346 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07001347 test_lib("bench") {
1348 public_include_dirs = [ "bench" ]
1349 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -07001350 deps = [
1351 ":flags",
1352 ":gm",
1353 ":gpu_tool_utils",
1354 ":skia",
1355 ":tool_utils",
1356 ]
1357 }
mtklein2b6870c2016-07-28 14:17:33 -07001358
Florin Malita54f65c42018-01-16 17:04:30 -05001359 test_lib("experimental_skottie") {
1360 public_include_dirs = [ "experimental/skottie" ]
Florin Malita094ccde2017-12-30 12:27:00 -05001361 include_dirs = [ "tools" ]
1362 sources = [
Florin Malita54f65c42018-01-16 17:04:30 -05001363 "experimental/skottie/Skottie.cpp",
1364 "experimental/skottie/SkottieAnimator.cpp",
Florin Malitacf8ed522018-01-25 15:27:33 -05001365 "experimental/skottie/SkottieParser.cpp",
Florin Malita54f65c42018-01-16 17:04:30 -05001366 "experimental/skottie/SkottieProperties.cpp",
Florin Malita094ccde2017-12-30 12:27:00 -05001367 ]
1368 deps = [
1369 ":experimental_sksg",
1370 ":skia",
1371 "//third_party/jsoncpp",
1372 ]
1373 }
1374
mtkleinc095df52016-08-24 12:23:52 -07001375 test_lib("experimental_svg_model") {
Hal Canary0f666812018-03-22 15:21:12 -04001376 public_include_dirs = []
1377 if (skia_use_expat) {
1378 public_include_dirs += [ "experimental/svg/model" ]
1379 sources = [
1380 "experimental/svg/model/SkSVGAttribute.cpp",
1381 "experimental/svg/model/SkSVGAttributeParser.cpp",
1382 "experimental/svg/model/SkSVGCircle.cpp",
1383 "experimental/svg/model/SkSVGClipPath.cpp",
1384 "experimental/svg/model/SkSVGContainer.cpp",
1385 "experimental/svg/model/SkSVGDOM.cpp",
1386 "experimental/svg/model/SkSVGEllipse.cpp",
1387 "experimental/svg/model/SkSVGGradient.cpp",
1388 "experimental/svg/model/SkSVGLine.cpp",
1389 "experimental/svg/model/SkSVGLinearGradient.cpp",
1390 "experimental/svg/model/SkSVGNode.cpp",
1391 "experimental/svg/model/SkSVGPath.cpp",
1392 "experimental/svg/model/SkSVGPattern.cpp",
1393 "experimental/svg/model/SkSVGPoly.cpp",
1394 "experimental/svg/model/SkSVGRadialGradient.cpp",
1395 "experimental/svg/model/SkSVGRect.cpp",
1396 "experimental/svg/model/SkSVGRenderContext.cpp",
1397 "experimental/svg/model/SkSVGSVG.cpp",
1398 "experimental/svg/model/SkSVGShape.cpp",
1399 "experimental/svg/model/SkSVGStop.cpp",
1400 "experimental/svg/model/SkSVGTransformableNode.cpp",
1401 "experimental/svg/model/SkSVGUse.cpp",
1402 "experimental/svg/model/SkSVGValue.cpp",
1403 ]
1404 deps = [
1405 ":skia",
1406 ":xml",
1407 ]
1408 }
mtkleinc095df52016-08-24 12:23:52 -07001409 }
fmalitaa2b9fdf2016-08-03 19:53:36 -07001410
Florin Malita4aa44412017-12-19 12:21:02 -05001411 test_lib("experimental_sksg") {
1412 public_include_dirs = [
1413 "experimental/sksg",
1414 "experimental/sksg/effects",
1415 "experimental/sksg/geometry",
1416 "experimental/sksg/paint",
1417 ]
1418 sources = [
1419 "experimental/sksg/SkSGDraw.cpp",
1420 "experimental/sksg/SkSGEffectNode.cpp",
1421 "experimental/sksg/SkSGGeometryNode.cpp",
1422 "experimental/sksg/SkSGGroup.cpp",
Florin Malita49328072018-01-08 12:51:12 -05001423 "experimental/sksg/SkSGImage.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001424 "experimental/sksg/SkSGInvalidationController.cpp",
1425 "experimental/sksg/SkSGNode.cpp",
1426 "experimental/sksg/SkSGPaintNode.cpp",
1427 "experimental/sksg/SkSGRenderNode.cpp",
Florin Malita35efaa82018-01-22 12:57:06 -05001428 "experimental/sksg/SkSGScene.cpp",
Florin Malita38ea40e2018-01-29 16:31:14 -05001429 "experimental/sksg/effects/SkSGClipEffect.cpp",
Florin Malita5f9102f2018-01-10 13:36:22 -05001430 "experimental/sksg/effects/SkSGMaskEffect.cpp",
Florin Malitac0034172018-01-08 16:42:59 -05001431 "experimental/sksg/effects/SkSGOpacityEffect.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001432 "experimental/sksg/effects/SkSGTransform.cpp",
Florin Malita16d0ad02018-01-19 15:07:29 -05001433 "experimental/sksg/geometry/SkSGGeometryTransform.cpp",
Florin Malitae6345d92018-01-03 23:37:54 -05001434 "experimental/sksg/geometry/SkSGMerge.cpp",
Florin Malita047ae272017-12-27 11:13:13 -05001435 "experimental/sksg/geometry/SkSGPath.cpp",
Florin Malita97b3d2b2018-02-20 11:26:15 -05001436 "experimental/sksg/geometry/SkSGPlane.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001437 "experimental/sksg/geometry/SkSGRect.cpp",
Florin Malita51012ce2018-01-31 17:06:59 -05001438 "experimental/sksg/geometry/SkSGText.cpp",
Florin Malita51b8c892018-01-07 08:54:24 -05001439 "experimental/sksg/geometry/SkSGTrimEffect.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001440 "experimental/sksg/paint/SkSGColor.cpp",
Florin Malita6aaee592018-01-12 12:25:09 -05001441 "experimental/sksg/paint/SkSGGradient.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001442 ]
1443 deps = [
1444 ":skia",
1445 ]
1446 }
1447
Kevin Lubickebf648e2017-09-21 13:45:16 -04001448 if (target_cpu != "wasm") {
1449 test_lib("views") {
1450 public_include_dirs = [ "include/views" ]
1451 sources = [
1452 "src/views/SkEvent.cpp",
1453 "src/views/SkEventSink.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001454 "src/views/SkTouchGesture.cpp",
1455 "src/views/SkView.cpp",
Brian Osman2dd96932016-10-18 15:33:53 -04001456 ]
Brian Osman34755e22016-12-05 09:46:02 -05001457 }
Brian Osman16adfa32016-10-18 14:42:44 -04001458 }
1459
Mike Klein38af9432016-11-11 11:39:44 -05001460 if (skia_use_lua) {
1461 test_lib("lua") {
1462 public_include_dirs = []
1463 sources = [
1464 "src/utils/SkLua.cpp",
1465 "src/utils/SkLuaCanvas.cpp",
1466 ]
1467 deps = [
1468 "//third_party/lua",
1469 ]
1470 }
1471
Mike Kleine6682eb2017-01-05 10:54:57 -05001472 test_app("lua_app") {
Mike Klein38af9432016-11-11 11:39:44 -05001473 sources = [
1474 "tools/lua/lua_app.cpp",
1475 ]
1476 deps = [
1477 ":lua",
1478 ":skia",
1479 "//third_party/lua",
1480 ]
Mike Klein38af9432016-11-11 11:39:44 -05001481 }
1482
Mike Kleine6682eb2017-01-05 10:54:57 -05001483 test_app("lua_pictures") {
Mike Klein38af9432016-11-11 11:39:44 -05001484 sources = [
1485 "tools/lua/lua_pictures.cpp",
1486 ]
1487 deps = [
1488 ":flags",
1489 ":lua",
1490 ":skia",
1491 ":tool_utils",
1492 "//third_party/lua",
1493 ]
Mike Klein38af9432016-11-11 11:39:44 -05001494 }
1495 }
1496
Cary Clark8032b982017-07-28 11:04:54 -04001497 test_app("bookmaker") {
1498 sources = [
1499 "tools/bookmaker/bookmaker.cpp",
Cary Clarkbef063a2017-10-31 15:44:45 -04001500 "tools/bookmaker/cataloger.cpp",
Cary Clarka560c472017-11-27 10:44:06 -05001501 "tools/bookmaker/definition.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001502 "tools/bookmaker/fiddleParser.cpp",
1503 "tools/bookmaker/includeParser.cpp",
1504 "tools/bookmaker/includeWriter.cpp",
1505 "tools/bookmaker/mdOut.cpp",
1506 "tools/bookmaker/parserCommon.cpp",
Cary Clarkac47b882018-01-11 10:35:44 -05001507 "tools/bookmaker/selfCheck.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001508 "tools/bookmaker/spellCheck.cpp",
1509 ]
1510 deps = [
1511 ":flags",
1512 ":skia",
1513 ":tool_utils",
Cary Clark2f466242017-12-11 16:03:17 -05001514 "//third_party/jsoncpp",
Cary Clark8032b982017-07-28 11:04:54 -04001515 ]
1516 }
1517
Kevin Lubickebf648e2017-09-21 13:45:16 -04001518 if (target_cpu != "wasm") {
1519 import("gn/samples.gni")
1520 test_lib("samples") {
1521 public_include_dirs = [ "samplecode" ]
1522 include_dirs = [ "experimental" ]
Yuqian Li56a4a092018-02-12 14:47:34 +08001523 sources = samples_sources
Kevin Lubickebf648e2017-09-21 13:45:16 -04001524 deps = [
Florin Malita4aa44412017-12-19 12:21:02 -05001525 ":experimental_sksg",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001526 ":experimental_svg_model",
1527 ":flags",
1528 ":gm",
Mike Reed193d3a02018-02-08 15:45:51 -05001529 ":skshaper",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001530 ":tool_utils",
1531 ":views",
1532 ":xml",
1533 ]
Mike Klein38af9432016-11-11 11:39:44 -05001534
Kevin Lubickebf648e2017-09-21 13:45:16 -04001535 if (skia_use_lua) {
1536 sources += [ "samplecode/SampleLua.cpp" ]
1537 deps += [
1538 ":lua",
1539 "//third_party/lua",
1540 ]
1541 }
1542 }
1543 test_app("dm") {
1544 sources = [
1545 "dm/DM.cpp",
Hal Canaryb6c5e5b2017-10-09 16:13:02 -04001546 "dm/DMGpuTestProcs.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001547 "dm/DMJsonWriter.cpp",
1548 "dm/DMSrcSink.cpp",
1549 ]
1550 include_dirs = [ "tests" ]
1551 deps = [
1552 ":common_flags",
Florin Malita54f65c42018-01-16 17:04:30 -05001553 ":experimental_skottie",
Florin Malita4aa44412017-12-19 12:21:02 -05001554 ":experimental_sksg",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001555 ":experimental_svg_model",
1556 ":flags",
1557 ":gm",
1558 ":gpu_tool_utils",
1559 ":skia",
1560 ":tests",
1561 ":tool_utils",
1562 "//third_party/jsoncpp",
1563 "//third_party/libpng",
Mike Klein38af9432016-11-11 11:39:44 -05001564 ]
1565 }
Brian Osman16adfa32016-10-18 14:42:44 -04001566 }
1567
Mike Kleina8a51ce2018-01-09 12:34:11 -05001568 if (!is_win) {
1569 test_app("remote_demo") {
1570 sources = [
1571 "tools/remote_demo.cpp",
1572 ]
1573 deps = [
1574 ":skia",
1575 ]
1576 }
1577 }
1578
Mike Kleine6682eb2017-01-05 10:54:57 -05001579 test_app("nanobench") {
mtklein2b6870c2016-07-28 14:17:33 -07001580 sources = [
1581 "bench/nanobench.cpp",
1582 ]
1583 deps = [
1584 ":bench",
mtklein046cb562016-09-16 10:23:12 -07001585 ":common_flags",
Florin Malita4aa44412017-12-19 12:21:02 -05001586 ":experimental_sksg",
fmalita6519c212016-09-14 08:05:17 -07001587 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001588 ":flags",
1589 ":gm",
1590 ":gpu_tool_utils",
1591 ":skia",
1592 ":tool_utils",
1593 "//third_party/jsoncpp",
1594 ]
mtklein2b6870c2016-07-28 14:17:33 -07001595 }
halcanary19a97202016-08-03 15:08:04 -07001596
Ravi Mistry10d36c52017-01-31 09:49:18 -05001597 test_app("skpinfo") {
1598 sources = [
1599 "tools/skpinfo.cpp",
1600 ]
1601 deps = [
1602 ":flags",
1603 ":skia",
1604 ]
1605 }
1606
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001607 if (skia_enable_gpu) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001608 test_app("skpbench") {
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001609 sources = [
1610 "tools/skpbench/skpbench.cpp",
1611 ]
1612 deps = [
1613 ":flags",
1614 ":gpu_tool_utils",
1615 ":skia",
1616 ":tool_utils",
1617 ]
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001618 }
csmartdalton4b5179b2016-09-19 11:03:58 -07001619 }
1620
Hal Canary96c57252018-02-09 11:43:05 -05001621 test_lib("skshaper") {
1622 public_include_dirs = [ "tools/shape" ]
1623 deps = [
1624 ":skia",
1625 ]
1626
Hal Canary8bb40832018-02-08 15:16:28 -05001627 if (target_cpu == "wasm") {
Hal Canary96c57252018-02-09 11:43:05 -05001628 sources = [
1629 "tools/shape/SkShaper_primitive.cpp",
1630 ]
1631 } else {
mtklein6f5df6a2016-08-29 16:01:10 -07001632 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001633 "tools/shape/SkShaper_harfbuzz.cpp",
mtklein6f5df6a2016-08-29 16:01:10 -07001634 ]
Hal Canary96c57252018-02-09 11:43:05 -05001635 deps += [
mtklein6f5df6a2016-08-29 16:01:10 -07001636 "//third_party/harfbuzz",
Ben Wagnera25fbef2017-08-30 13:56:19 -04001637 "//third_party/icu",
mtklein6f5df6a2016-08-29 16:01:10 -07001638 ]
mtklein6f5df6a2016-08-29 16:01:10 -07001639 }
halcanary19a97202016-08-03 15:08:04 -07001640 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001641 test_app("sktexttopdf") {
halcanary3eee9d92016-09-10 07:01:53 -07001642 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001643 "tools/shape/using_skia_and_harfbuzz.cpp",
halcanary3eee9d92016-09-10 07:01:53 -07001644 ]
1645 deps = [
1646 ":skia",
Hal Canary96c57252018-02-09 11:43:05 -05001647 ":skshaper",
halcanary3eee9d92016-09-10 07:01:53 -07001648 ]
halcanary3eee9d92016-09-10 07:01:53 -07001649 }
mtklein046cb562016-09-16 10:23:12 -07001650
Matt Sarett9f1c4032017-05-17 10:06:32 -04001651 test_app("create_flutter_test_images") {
1652 sources = [
1653 "tools/create_flutter_test_images.cpp",
1654 ]
1655 deps = [
1656 ":skia",
1657 ":tool_utils",
1658 ]
1659 }
1660
Ben Wagner219f3622017-07-17 15:32:25 -04001661 test_app("create_test_font") {
1662 sources = [
Ben Wagner483c7722018-02-20 17:06:07 -05001663 "tools/fonts/create_test_font.cpp",
Ben Wagner219f3622017-07-17 15:32:25 -04001664 ]
1665 deps = [
1666 ":skia",
1667 ]
1668 assert_no_deps = [
1669 # tool_utils requires the output of this app.
1670 ":tool_utils",
1671 ]
1672 }
1673
Mike Kleine6682eb2017-01-05 10:54:57 -05001674 test_app("get_images_from_skps") {
mtklein046cb562016-09-16 10:23:12 -07001675 sources = [
1676 "tools/get_images_from_skps.cpp",
1677 ]
1678 deps = [
1679 ":flags",
1680 ":skia",
1681 "//third_party/jsoncpp",
1682 ]
mtklein046cb562016-09-16 10:23:12 -07001683 }
mtkleinecbc5262016-09-22 11:51:24 -07001684
Mike Kleine6682eb2017-01-05 10:54:57 -05001685 test_app("colorspaceinfo") {
Matt Sarett8740d582016-11-11 13:59:14 -05001686 sources = [
1687 "tools/colorspaceinfo.cpp",
1688 ]
1689 deps = [
1690 ":flags",
1691 ":skia",
1692 ":tool_utils",
1693 ]
Matt Sarett8740d582016-11-11 13:59:14 -05001694 }
1695
Kevin Lubickebf648e2017-09-21 13:45:16 -04001696 if (!is_ios && target_cpu != "wasm") {
Mike Kleine6682eb2017-01-05 10:54:57 -05001697 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04001698 sources = [
1699 "tools/skiaserve/Request.cpp",
1700 "tools/skiaserve/Response.cpp",
1701 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001702 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1703 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1704 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1705 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1706 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1707 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1708 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1709 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1710 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05001711 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1712 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001713 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1714 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1715 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1716 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1717 ]
1718 deps = [
1719 ":flags",
1720 ":gpu_tool_utils",
1721 ":skia",
1722 ":tool_utils",
1723 "//third_party/jsoncpp",
1724 "//third_party/libmicrohttpd",
1725 "//third_party/libpng",
1726 ]
Mike Klein7d302882016-11-03 14:06:31 -04001727 }
mtkleinecbc5262016-09-22 11:51:24 -07001728 }
kjlubick14f984b2016-10-03 11:49:45 -07001729
Mike Kleine6682eb2017-01-05 10:54:57 -05001730 test_app("fuzz") {
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05001731 include_dirs = [
1732 "tools",
1733 "tools/debugger",
1734 ]
kjlubick14f984b2016-10-03 11:49:45 -07001735 sources = [
Hal Canary24ac42b2017-02-14 13:35:14 -05001736 "fuzz/FuzzCanvas.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05001737 "fuzz/FuzzCommon.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05001738 "fuzz/FuzzDrawFunctions.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001739 "fuzz/FuzzGradients.cpp",
1740 "fuzz/FuzzParsePath.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05001741 "fuzz/FuzzPathMeasure.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001742 "fuzz/FuzzPathop.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001743 "fuzz/fuzz.cpp",
Kevin Lubick2416f962018-02-12 08:26:39 -05001744 "fuzz/oss_fuzz/FuzzAnimatedImage.cpp",
1745 "fuzz/oss_fuzz/FuzzImage.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05001746 "fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp",
1747 "fuzz/oss_fuzz/FuzzPathDeserialize.cpp",
Kevin Lubick2541edf2018-01-11 10:27:14 -05001748 "fuzz/oss_fuzz/FuzzRegionDeserialize.cpp",
1749 "fuzz/oss_fuzz/FuzzRegionSetPath.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05001750 "fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp",
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05001751 "tools/UrlDataManager.cpp",
1752 "tools/debugger/SkDebugCanvas.cpp",
1753 "tools/debugger/SkDrawCommand.cpp",
1754 "tools/debugger/SkJsonWriteBuffer.cpp",
1755 "tools/debugger/SkObjectParser.cpp",
1756 "tools/picture_utils.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001757 ]
1758 deps = [
1759 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04001760 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001761 ":skia",
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05001762 "//third_party/jsoncpp",
1763 "//third_party/libpng",
kjlubick14f984b2016-10-03 11:49:45 -07001764 ]
kjlubick14f984b2016-10-03 11:49:45 -07001765 }
Mike Klein38312422016-10-05 15:41:01 -04001766
Mike Kleine6682eb2017-01-05 10:54:57 -05001767 test_app("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04001768 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04001769 rebase_path("tests/skia_test.cpp"),
1770 rebase_path("tests/Test.cpp"),
1771 ]
caryclark9feb6322016-10-25 08:58:26 -07001772 deps = [
1773 ":flags",
1774 ":gpu_tool_utils",
1775 ":skia",
1776 ":tool_utils",
1777 ]
caryclark9feb6322016-10-25 08:58:26 -07001778 }
1779
Mike Kleine6682eb2017-01-05 10:54:57 -05001780 test_app("dump_record") {
Mike Klein38312422016-10-05 15:41:01 -04001781 sources = [
1782 "tools/DumpRecord.cpp",
1783 "tools/dump_record.cpp",
1784 ]
1785 deps = [
1786 ":flags",
1787 ":skia",
1788 ]
Mike Klein38312422016-10-05 15:41:01 -04001789 }
bungemanfe917272016-10-13 17:36:40 -04001790
Mike Kleine6682eb2017-01-05 10:54:57 -05001791 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04001792 sources = [
1793 "tools/skdiff/skdiff.cpp",
1794 "tools/skdiff/skdiff_html.cpp",
1795 "tools/skdiff/skdiff_main.cpp",
1796 "tools/skdiff/skdiff_utils.cpp",
1797 ]
1798 deps = [
1799 ":skia",
1800 ":tool_utils",
1801 ]
bungemanfe917272016-10-13 17:36:40 -04001802 }
halcanarya73d76a2016-10-17 13:19:02 -07001803
Mike Kleine6682eb2017-01-05 10:54:57 -05001804 test_app("skp_parser") {
halcanarya73d76a2016-10-17 13:19:02 -07001805 sources = [
1806 "tools/skp_parser.cpp",
1807 ]
1808 deps = [
1809 ":skia",
1810 ":tool_utils",
1811 "//third_party/jsoncpp",
1812 ]
halcanarya73d76a2016-10-17 13:19:02 -07001813 }
Brian Osman16adfa32016-10-18 14:42:44 -04001814
Hal Canaryd7b38452017-12-11 17:46:26 -05001815 if (!is_win && skia_enable_gpu) {
1816 test_lib("skqp_lib") {
1817 public_include_dirs = [ "tools/skqp" ]
Hal Canary0e07ad72018-02-08 13:06:56 -05001818 defines =
1819 [ "SK_SKQP_GLOBAL_ERROR_TOLERANCE=$skia_skqp_global_error_tolerance" ]
Hal Canary4689b542018-01-31 11:54:14 -05001820 if (skia_skqp_enable_driver_correctness_workarounds) {
1821 defines += [ "SK_SKQP_ENABLE_DRIVER_CORRECTNESS_WORKAROUNDS" ]
1822 }
Hal Canary75427132017-10-11 16:00:31 -04001823 sources = [
1824 "dm/DMGpuTestProcs.cpp",
Hal Canaryd7b38452017-12-11 17:46:26 -05001825 "tools/skqp/gm_knowledge.cpp",
1826 "tools/skqp/gm_runner.cpp",
Hal Canary75427132017-10-11 16:00:31 -04001827 ]
1828 deps = [
1829 ":gm",
1830 ":gpu_tool_utils",
1831 ":skia",
1832 ":tests",
Hal Canaryd7b38452017-12-11 17:46:26 -05001833 ":tool_utils",
1834 ]
1835 }
1836 test_app("skqp") {
1837 sources = [
1838 "tools/skqp/skqp.cpp",
1839 ]
1840 deps = [
1841 ":skia",
1842 ":skqp_lib",
Hal Canary537d9c02018-01-30 11:30:48 -05001843 ":tool_utils",
Hal Canary75427132017-10-11 16:00:31 -04001844 "//third_party/googletest",
1845 ]
1846 }
1847 }
Hal Canary28f89382017-12-12 09:42:14 -05001848 if (is_android && skia_enable_gpu) {
1849 test_app("skqp_app") {
1850 is_shared_library = true
1851 sources = [
1852 "tools/skqp/jni/org_skia_skqp_SkQPRunner.cpp",
1853 ]
1854 deps = [
1855 ":skia",
1856 ":skqp_lib",
Hal Canaryb4d01a92018-01-29 13:10:08 -05001857 ":tool_utils",
Hal Canary28f89382017-12-12 09:42:14 -05001858 ]
1859 libs = [ "android" ]
1860 }
1861 }
Hal Canary75427132017-10-11 16:00:31 -04001862
Hal Canarya9de7602018-01-19 13:08:23 -05001863 test_app("list_gms") {
1864 sources = [
1865 "tools/list_gms.cpp",
1866 ]
1867 deps = [
1868 ":gm",
1869 ":skia",
1870 ]
1871 }
1872 test_app("list_gpu_unit_tests") {
1873 sources = [
1874 "dm/DMGpuTestProcs.cpp",
1875 "tools/list_gpu_unit_tests.cpp",
1876 ]
1877 deps = [
1878 ":skia",
1879 ":tests",
1880 ]
1881 }
1882
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001883 if (skia_enable_gpu) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001884 test_lib("sk_app") {
1885 public_include_dirs = [ "tools/sk_app" ]
Brian Osman16adfa32016-10-18 14:42:44 -04001886 sources = [
Brian Osmaneff04b52017-11-21 13:18:02 -05001887 "tools/sk_app/CommandSet.cpp",
1888 "tools/sk_app/GLWindowContext.cpp",
1889 "tools/sk_app/Window.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001890 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001891 libs = []
Brian Osman16adfa32016-10-18 14:42:44 -04001892
Jim Van Verth4e56a912016-10-21 10:58:52 -04001893 if (is_android) {
1894 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001895 "tools/sk_app/android/GLWindowContext_android.cpp",
1896 "tools/sk_app/android/RasterWindowContext_android.cpp",
1897 "tools/sk_app/android/Window_android.cpp",
1898 "tools/sk_app/android/main_android.cpp",
1899 "tools/sk_app/android/surface_glue_android.cpp",
Jim Van Verth4e56a912016-10-21 10:58:52 -04001900 ]
Brian Osman462334e2017-02-09 11:22:57 -05001901 libs += [ "android" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001902 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001903 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001904 "tools/sk_app/unix/GLWindowContext_unix.cpp",
1905 "tools/sk_app/unix/RasterWindowContext_unix.cpp",
1906 "tools/sk_app/unix/Window_unix.cpp",
Brian Osmanfa916272017-12-01 09:18:20 -05001907 "tools/sk_app/unix/keysym2ucs.c",
Brian Osmaneff04b52017-11-21 13:18:02 -05001908 "tools/sk_app/unix/main_unix.cpp",
Brian Osman2dd96932016-10-18 15:33:53 -04001909 ]
Brian Osmanfa916272017-12-01 09:18:20 -05001910 libs += [
1911 "GL",
1912 "X11",
1913 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001914 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001915 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001916 "tools/sk_app/win/GLWindowContext_win.cpp",
1917 "tools/sk_app/win/RasterWindowContext_win.cpp",
1918 "tools/sk_app/win/Window_win.cpp",
1919 "tools/sk_app/win/main_win.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001920 ]
Brian Salomon194db172017-08-17 14:37:06 -04001921 if (skia_use_angle) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001922 sources += [ "tools/sk_app/win/ANGLEWindowContext_win.cpp" ]
Brian Salomon194db172017-08-17 14:37:06 -04001923 }
Mike Klein43c25262016-10-20 10:17:47 -04001924 } else if (is_mac) {
1925 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001926 "tools/sk_app/mac/GLWindowContext_mac.cpp",
1927 "tools/sk_app/mac/RasterWindowContext_mac.cpp",
1928 "tools/sk_app/mac/Window_mac.cpp",
1929 "tools/sk_app/mac/main_mac.cpp",
Mike Klein43c25262016-10-20 10:17:47 -04001930 ]
Brian Osmanfa916272017-12-01 09:18:20 -05001931 libs += [
1932 "QuartzCore.framework",
1933 "Cocoa.framework",
1934 "Foundation.framework",
1935 ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001936 } else if (is_ios) {
1937 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001938 "tools/sk_app/ios/GLWindowContext_ios.cpp",
1939 "tools/sk_app/ios/RasterWindowContext_ios.cpp",
1940 "tools/sk_app/ios/Window_ios.cpp",
1941 "tools/sk_app/ios/main_ios.cpp",
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001942 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001943 }
1944
1945 if (skia_use_vulkan) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001946 sources += [ "tools/sk_app/VulkanWindowContext.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001947 if (is_android) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001948 sources += [ "tools/sk_app/android/VulkanWindowContext_android.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001949 } else if (is_linux) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001950 sources += [ "tools/sk_app/unix/VulkanWindowContext_unix.cpp" ]
Brian Osman2dd96932016-10-18 15:33:53 -04001951 libs += [ "X11-xcb" ]
1952 } else if (is_win) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001953 sources += [ "tools/sk_app/win/VulkanWindowContext_win.cpp" ]
Brian Osman16adfa32016-10-18 14:42:44 -04001954 }
1955 }
1956
Brian Osman16adfa32016-10-18 14:42:44 -04001957 deps = [
Brian Osman16adfa32016-10-18 14:42:44 -04001958 ":gpu_tool_utils",
Brian Osman16adfa32016-10-18 14:42:44 -04001959 ":skia",
1960 ":tool_utils",
1961 ":views",
Brian Osman16adfa32016-10-18 14:42:44 -04001962 ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001963 if (is_android) {
1964 deps += [ "//third_party/native_app_glue" ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001965 } else if (is_mac || is_ios) {
Mike Klein43c25262016-10-20 10:17:47 -04001966 deps += [ "//third_party/libsdl" ]
1967 }
Brian Salomon194db172017-08-17 14:37:06 -04001968 if (skia_use_angle) {
1969 deps += [ "//third_party/angle2" ]
1970 }
Mike Kleina92c3832016-12-08 09:49:39 -05001971 }
Brian Osman16adfa32016-10-18 14:42:44 -04001972 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05001973
Brian Osmaneff04b52017-11-21 13:18:02 -05001974 if (skia_enable_gpu) {
1975 test_app("viewer") {
1976 is_shared_library = is_android
Jim Van Verth329c5a62017-11-29 11:42:33 -05001977 if (is_ios) {
1978 bundle_ios_data = true
1979 }
Brian Osmaneff04b52017-11-21 13:18:02 -05001980 sources = [
Chris Dalton2d18f412018-02-20 13:23:32 -07001981 "tools/viewer/BisectSlide.cpp",
Brian Osmaneff04b52017-11-21 13:18:02 -05001982 "tools/viewer/GMSlide.cpp",
Brian Osmand67e5182017-12-08 16:46:09 -05001983 "tools/viewer/ImGuiLayer.cpp",
Brian Osmaneff04b52017-11-21 13:18:02 -05001984 "tools/viewer/ImageSlide.cpp",
1985 "tools/viewer/SKPSlide.cpp",
1986 "tools/viewer/SampleSlide.cpp",
Florin Malita54f65c42018-01-16 17:04:30 -05001987 "tools/viewer/SkottieSlide.cpp",
Florin Malita76a076b2018-02-15 18:40:48 -05001988 "tools/viewer/SlideDir.cpp",
Brian Osman56a24812017-12-19 11:15:16 -05001989 "tools/viewer/StatsLayer.cpp",
Brian Osmaneff04b52017-11-21 13:18:02 -05001990 "tools/viewer/Viewer.cpp",
1991 ]
1992 libs = []
1993
1994 include_dirs = []
1995 deps = [
Florin Malita54f65c42018-01-16 17:04:30 -05001996 ":experimental_skottie",
Florin Malitabcd07232018-01-31 11:08:58 -05001997 ":experimental_sksg",
Brian Osmaneff04b52017-11-21 13:18:02 -05001998 ":flags",
1999 ":gm",
2000 ":gpu_tool_utils",
2001 ":samples",
2002 ":sk_app",
2003 ":skia",
2004 ":tool_utils",
2005 ":views",
2006 "//third_party/imgui",
2007 "//third_party/jsoncpp",
2008 ]
2009 }
2010 }
2011
2012 if (skia_enable_gpu && !skia_use_angle && (is_linux || is_win || is_mac)) {
2013 test_app("HelloWorld") {
2014 sources = [
2015 "example/HelloWorld.cpp",
2016 ]
2017 libs = []
2018
2019 include_dirs = []
2020 deps = [
2021 ":flags",
2022 ":gpu_tool_utils",
2023 ":sk_app",
2024 ":skia",
2025 ":tool_utils",
2026 ":views",
2027 ]
2028 }
2029 }
2030
Jim Van Verthecfed2b2017-08-30 14:02:50 -04002031 if (skia_enable_gpu && (is_linux || is_mac || is_ios)) {
Jim Van Verth4c70c752017-07-11 12:03:01 -04002032 test_app("SkiaSDLExample") {
2033 sources = [
2034 "example/SkiaSDLExample.cpp",
2035 ]
2036 libs = []
2037 include_dirs = []
2038 deps = [
2039 ":gpu_tool_utils",
2040 ":skia",
2041 "//third_party/libsdl",
2042 ]
2043 }
2044 }
2045
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002046 if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
2047 action_foreach("generate_mocs") {
2048 script = "gn/call.py"
2049 sources = [
2050 "tools/mdbviz/MainWindow.h",
2051 ]
2052 outputs = [
2053 "$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp",
2054 ]
2055 args = [
2056 "$skia_qt_path" + "/bin/moc",
2057 "{{source}}",
2058 "-o",
2059 "gen/mdbviz/{{source_name_part}}_moc.cpp",
2060 ]
2061 }
2062 action_foreach("generate_resources") {
2063 script = "gn/call.py"
2064 sources = [
2065 "tools/mdbviz/resources.qrc",
2066 ]
2067 outputs = [
2068 "$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp",
2069 ]
2070 args = [
2071 "$skia_qt_path" + "/bin/rcc",
2072 "{{source}}",
2073 "-o",
2074 "gen/mdbviz/{{source_name_part}}_res.cpp",
2075 ]
2076 }
2077 test_app("mdbviz") {
2078 if (is_win) {
2079 # on Windows we need to disable some exception handling warnings due to the Qt headers
2080 cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
2081 }
2082 sources = [
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002083 "tools/UrlDataManager.cpp",
2084 "tools/debugger/SkDebugCanvas.cpp",
2085 "tools/debugger/SkDrawCommand.cpp",
2086 "tools/debugger/SkJsonWriteBuffer.cpp",
2087 "tools/debugger/SkObjectParser.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002088 "tools/mdbviz/MainWindow.cpp",
Robert Phillipsdeaf5682017-09-06 13:07:21 -04002089 "tools/mdbviz/Model.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002090 "tools/mdbviz/main.cpp",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002091 "tools/picture_utils.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002092
2093 # generated files
2094 "$target_gen_dir/mdbviz/MainWindow_moc.cpp",
2095 "$target_gen_dir/mdbviz/resources_res.cpp",
2096 ]
2097 lib_dirs = [ "$skia_qt_path/lib" ]
2098 libs = [
2099 "Qt5Core.lib",
2100 "Qt5Gui.lib",
2101 "Qt5Widgets.lib",
2102 ]
2103 include_dirs = [
2104 "$skia_qt_path/include",
Robert Phillips276066b2017-09-06 17:17:44 -04002105 "$skia_qt_path/include/QtCore",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002106 "$skia_qt_path/include/QtWidgets",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002107 "tools",
2108 "tools/debugger",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002109 ]
2110 deps = [
2111 ":generate_mocs",
2112 ":generate_resources",
2113 ":skia",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002114 "//third_party/jsoncpp",
2115 "//third_party/libpng",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002116 ]
2117 }
2118 }
2119
Mike Kleine459afd2017-03-03 09:21:30 -05002120 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05002121 copy("gdbserver") {
2122 sources = [
2123 "$ndk/$ndk_gdbserver",
2124 ]
2125 outputs = [
2126 "$root_out_dir/gdbserver",
2127 ]
2128 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05002129 }
mtklein25c81d42016-07-27 13:55:26 -07002130}