blob: 7786024f6a5690ae8c6c0b50219f143f0789f416 [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 Kleine87c4862018-03-23 00:13:58 +0000319 cflags = [ "-march=haswell" ]
Mike Klein1b9b7d52018-02-27 10:37:40 -0500320 }
321
322 # Oddly, clang-cl doesn't recognize this as a valid flag.
323 # If it ever does, it'd nice to move this up with -mavx2 and co.
324 if (is_clang && !is_win) {
325 # This flag lets Clang generate FMAs when it sees a mul-then-add. It's optional,
326 # but nice to have, generating slightly better code for paths without explicit FMAs.
327 cflags += [ "-ffp-contract=fast" ]
328 }
329}
330
mtkleinc095df52016-08-24 12:23:52 -0700331# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700332template("optional") {
333 if (invoker.enabled) {
334 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700335 if (defined(invoker.public_defines)) {
336 defines = invoker.public_defines
337 }
mtklein457b42a2016-08-23 13:56:37 -0700338 }
339 source_set(target_name) {
mtkleincd01b032016-08-31 04:58:19 -0700340 forward_variables_from(invoker,
341 "*",
342 [
343 "public_defines",
344 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700345 "configs_to_remove",
mtkleincd01b032016-08-31 04:58:19 -0700346 ])
mtklein457b42a2016-08-23 13:56:37 -0700347 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein9b8583d2016-08-24 17:32:30 -0700348 configs += skia_library_configs
scroggof84ad642016-10-31 09:02:57 -0700349 if (defined(invoker.configs_to_remove)) {
350 configs -= invoker.configs_to_remove
351 }
mtklein457b42a2016-08-23 13:56:37 -0700352 }
353 } else {
mtklein457b42a2016-08-23 13:56:37 -0700354 source_set(target_name) {
355 forward_variables_from(invoker,
356 "*",
357 [
358 "public_defines",
mtklein457b42a2016-08-23 13:56:37 -0700359 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700360 "libs",
mtklein457b42a2016-08-23 13:56:37 -0700361 "sources",
mtkleincd01b032016-08-31 04:58:19 -0700362 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700363 "configs_to_remove",
mtklein457b42a2016-08-23 13:56:37 -0700364 ])
mtkleincd01b032016-08-31 04:58:19 -0700365 if (defined(invoker.sources_when_disabled)) {
366 sources = invoker.sources_when_disabled
367 }
368 configs += skia_library_configs
mtklein457b42a2016-08-23 13:56:37 -0700369 }
mtkleineb3c4252016-08-23 07:38:09 -0700370 }
mtklein457b42a2016-08-23 13:56:37 -0700371}
mtklein457b42a2016-08-23 13:56:37 -0700372
Mike Kleina04bb452017-02-09 12:24:07 -0500373optional("effects") {
374 enabled = skia_enable_effects
Ethan Nicholas762466e2017-06-29 10:03:38 -0400375 deps = [
376 ":compile_processors",
377 ]
Mike Kleina04bb452017-02-09 12:24:07 -0500378 sources =
379 skia_effects_sources + [ "src/ports/SkGlobalInitialization_default.cpp" ]
380 sources_when_disabled = [ "src/ports/SkGlobalInitialization_none.cpp" ]
381}
382
mtkleina45be612016-08-29 15:22:10 -0700383optional("fontmgr_android") {
384 enabled = fontmgr_android_enabled
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") {
398 enabled = is_linux && skia_use_freetype && !skia_use_fontconfig
399
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
mtkleincdedd0e2016-09-12 15:15:44 -0700437optional("fontmgr_fuchsia") {
438 enabled = is_fuchsia && skia_use_freetype
439
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 = [
467 "src/sksl/lex/layout.lex",
468 "src/sksl/lex/sksl.lex",
469 ]
470
471 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
472 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
473 outputs = [
474 "$target_out_dir/" +
475 rebase_path("src/sksl/lex/SkSLLexer.h", target_out_dir),
476 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
477 # confused due to the same file being named by two different paths
478 ]
479 sksllex_path = "$root_out_dir/"
480 sksllex_path += "sksllex"
481 if (host_os == "win") {
482 sksllex_path += ".exe"
483 }
484 args = [
485 rebase_path(sksllex_path),
486 rebase_path("bin/clang-format"),
487 rebase_path("src"),
488 ]
489 }
490} else {
491 group("run_sksllex") {
492 }
493}
494
495if (skia_compile_processors) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400496 executable("skslc") {
497 defines = [ "SKSL_STANDALONE" ]
498 sources = [
499 "src/sksl/SkSLMain.cpp",
500 ]
501 sources += skia_sksl_sources
502 include_dirs = [
503 "src/gpu",
504 "src/sksl",
505 ]
506 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500507 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400508 "//third_party/spirv-tools",
509 ]
510 }
511
512 skia_gpu_processor_outputs = []
513 foreach(src, skia_gpu_processor_sources) {
514 dir = get_path_info(src, "dir")
515 name = get_path_info(src, "name")
516
517 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
518 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
519 skia_gpu_processor_outputs += [
520 "$target_out_dir/" + rebase_path("$dir/$name.h", target_out_dir),
521 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
522 # confused due to the same file being named by two different paths
523 ]
524 }
525
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500526 action("create_sksl_enums") {
527 script = "gn/create_sksl_enums.py"
528 sources = [
529 "include/private/GrSharedEnums.h",
530 ]
531 outputs = [
532 "$target_out_dir/" +
Ben Wagnera56c4d22018-01-24 17:32:17 -0500533 rebase_path("src/sksl/sksl_enums.inc", target_out_dir),
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500534 ]
535 args = [
536 rebase_path(sources[0]),
537 rebase_path(outputs[0]),
538 ]
539 }
540
Ethan Nicholas762466e2017-06-29 10:03:38 -0400541 action("compile_processors") {
542 script = "gn/compile_processors.py"
543 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500544 ":create_sksl_enums",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400545 ":skslc(//gn/toolchain:$host_toolchain)",
546 ]
547 sources = skia_gpu_processor_sources
548 outputs = skia_gpu_processor_outputs
549 skslc_path = "$root_out_dir/"
550 if (host_toolchain != default_toolchain_name) {
551 skslc_path += "$host_toolchain/"
552 }
553 skslc_path += "skslc"
554 if (host_os == "win") {
555 skslc_path += ".exe"
556 }
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400557 args = [
558 rebase_path(skslc_path),
Eric Borenb121be72017-07-28 10:00:51 -0400559 rebase_path("bin/clang-format"),
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400560 ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400561 args += rebase_path(skia_gpu_processor_sources)
562 }
563} else {
564 skia_gpu_processor_outputs = []
565 group("compile_processors") {
566 }
567}
568
mtklein06c35c02016-09-20 12:28:12 -0700569optional("gpu") {
570 enabled = skia_enable_gpu
Ethan Nicholas762466e2017-06-29 10:03:38 -0400571 deps = [
572 ":compile_processors",
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700573 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400574 ]
mtkleine9fb3d52016-09-20 15:11:46 -0700575 public_defines = []
576
Brian Salomon3d6801e2017-12-11 10:06:31 -0500577 sources = skia_gpu_sources + skia_sksl_sources + skia_gpu_processor_outputs
mtklein06c35c02016-09-20 12:28:12 -0700578
579 # These paths need to be absolute to match the ones produced by shared_sources.gni.
Brian Salomon3d6801e2017-12-11 10:06:31 -0500580 sources -= get_path_info([ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ],
mtklein06c35c02016-09-20 12:28:12 -0700581 "abspath")
Mike Klein703cf5a2016-10-13 17:18:04 -0400582 libs = []
mtklein06c35c02016-09-20 12:28:12 -0700583 if (is_android) {
Hal Canary25375e82018-03-14 15:16:56 -0400584 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Derek Sollenberger7a869872017-06-27 15:37:25 -0400585
586 # this lib is required to link against AHardwareBuffer
587 if (defined(ndk_api) && ndk_api >= 26) {
588 libs += [ "android" ]
589 }
Kevin Lubick4a24e102017-03-29 11:19:01 -0400590 } else if (skia_use_egl) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500591 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Kevin Lubick4a24e102017-03-29 11:19:01 -0400592 libs += [ "EGL" ]
mtklein06c35c02016-09-20 12:28:12 -0700593 } else if (is_linux) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500594 sources += [ "src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -0500595 libs += [
596 "GL",
597 "GLU",
598 ]
mtklein06c35c02016-09-20 12:28:12 -0700599 } else if (is_mac) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500600 sources += [ "src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
Chinmay Garde130a1182016-11-23 11:43:56 -0800601 } else if (is_ios) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500602 sources += [ "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400603 } else if (is_win) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500604 sources += [ "src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400605 libs += [ "OpenGL32.lib" ]
mtklein06c35c02016-09-20 12:28:12 -0700606 } else {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500607 sources += [ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ]
mtklein06c35c02016-09-20 12:28:12 -0700608 }
mtkleine9fb3d52016-09-20 15:11:46 -0700609
610 if (skia_use_vulkan) {
611 public_defines += [ "SK_VULKAN" ]
612 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700613 if (skia_enable_vulkan_debug_layers) {
614 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
615 }
Greg Danielafb7ec72017-12-07 12:48:30 -0500616 if (skia_vulkan_header != "") {
617 public_defines += [ "SK_VULKAN_HEADER=\"$skia_vulkan_header\"" ]
618 } else {
619 if (is_skia_dev_build) {
620 public_defines += [ "SK_VULKAN_HEADER=\"GrVulkanDefines.h\"" ]
621 }
622 }
mtkleine9fb3d52016-09-20 15:11:46 -0700623 }
Brian Salomon5f33a8c2018-02-26 14:32:39 -0500624 if (skia_use_legacy_gpu_pixel_ops) {
625 public_defines += [ "SK_LEGACY_GPU_PIXEL_OPS" ]
626 }
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400627 if (skia_enable_spirv_validation) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400628 deps += [ "//third_party/spirv-tools" ]
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400629 public_defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
630 }
Greg Daniele5ddff52017-07-05 16:49:36 -0400631
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400632 cflags_objcc = []
Greg Daniele5ddff52017-07-05 16:49:36 -0400633 if (skia_use_metal) {
634 public_defines += [ "SK_METAL" ]
635 sources += skia_metal_sources
636 libs += [ "Metal.framework" ]
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400637 cflags_objcc += [ "-fobjc-arc" ]
Greg Daniele5ddff52017-07-05 16:49:36 -0400638 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500639
640 if (skia_enable_atlas_text) {
641 sources += skia_atlas_text_sources
642 }
mtklein06c35c02016-09-20 12:28:12 -0700643}
644
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400645optional("heif") {
646 enabled = skia_use_libheif
647 public_defines = [ "SK_HAS_HEIF_LIBRARY" ]
648
649 deps = []
650
651 sources = [
652 "src/codec/SkHeifCodec.cpp",
653 ]
654}
655
mtklein63213812016-08-24 09:55:56 -0700656optional("jpeg") {
657 enabled = skia_use_libjpeg_turbo
658 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
659
mtklein63213812016-08-24 09:55:56 -0700660 deps = [
661 "//third_party/libjpeg-turbo:libjpeg",
662 ]
663 sources = [
664 "src/codec/SkJpegCodec.cpp",
665 "src/codec/SkJpegDecoderMgr.cpp",
666 "src/codec/SkJpegUtility.cpp",
mtklein63213812016-08-24 09:55:56 -0700667 "src/images/SkJPEGWriteUtility.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400668 "src/images/SkJpegEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700669 ]
670}
671
672optional("pdf") {
Hal Canary43fb7a02016-12-30 13:09:03 -0500673 enabled = skia_use_zlib && skia_enable_pdf
674 public_defines = [ "SK_SUPPORT_PDF" ]
mtklein63213812016-08-24 09:55:56 -0700675
mtklein63213812016-08-24 09:55:56 -0700676 deps = [
677 "//third_party/zlib",
678 ]
brettwb9447282016-09-01 14:24:39 -0700679 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -0700680 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
mtklein63213812016-08-24 09:55:56 -0700681
682 if (skia_use_sfntly) {
683 deps += [ "//third_party/sfntly" ]
Hal Canary43fb7a02016-12-30 13:09:03 -0500684 public_defines += [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -0700685 }
686}
687
688optional("png") {
689 enabled = skia_use_libpng
690 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
691
mtklein63213812016-08-24 09:55:56 -0700692 deps = [
693 "//third_party/libpng",
694 ]
695 sources = [
696 "src/codec/SkIcoCodec.cpp",
697 "src/codec/SkPngCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400698 "src/images/SkPngEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700699 ]
700}
701
scroggof84ad642016-10-31 09:02:57 -0700702optional("raw") {
Mike Klein10d665d2016-11-01 11:46:10 -0400703 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -0700704 public_defines = [ "SK_CODEC_DECODES_RAW" ]
705
706 deps = [
707 "//third_party/dng_sdk",
708 "//third_party/libjpeg-turbo:libjpeg",
709 "//third_party/piex",
710 ]
711
712 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
713 # Skia.
714 configs_to_remove = [ "//gn:no_exceptions" ]
715
716 sources = [
717 "src/codec/SkRawAdapterCodec.cpp",
718 "src/codec/SkRawCodec.cpp",
719 ]
720}
721
Mike Kleinfb333552018-01-25 12:49:37 -0500722optional("skcms") {
723 enabled = skia_use_skcms
724
Brian Osman094fba92018-03-26 17:05:48 -0400725 public_defines = [ "SK_USE_SKCMS" ]
Mike Kleinfb333552018-01-25 12:49:37 -0500726 deps = [
727 "//third_party/skcms",
728 ]
729 sources = [
Brian Osman094fba92018-03-26 17:05:48 -0400730 "src/core/SkColorSpaceXform_skcms.cpp",
Mike Kleinfb333552018-01-25 12:49:37 -0500731 ]
732}
733
mtklein3cc22182016-08-29 13:26:14 -0700734optional("typeface_freetype") {
735 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -0700736
737 deps = [
738 "//third_party/freetype2",
739 ]
740 sources = [
741 "src/ports/SkFontHost_FreeType.cpp",
742 "src/ports/SkFontHost_FreeType_common.cpp",
743 ]
744}
745
mtklein457b42a2016-08-23 13:56:37 -0700746optional("webp") {
747 enabled = skia_use_libwebp
748 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
749
mtklein457b42a2016-08-23 13:56:37 -0700750 deps = [
751 "//third_party/libwebp",
752 ]
753 sources = [
754 "src/codec/SkWebpAdapterCodec.cpp",
755 "src/codec/SkWebpCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400756 "src/images/SkWebpEncoder.cpp",
mtklein457b42a2016-08-23 13:56:37 -0700757 ]
mtkleineb3c4252016-08-23 07:38:09 -0700758}
759
mtklein63213812016-08-24 09:55:56 -0700760optional("xml") {
761 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +0000762 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -0700763
mtklein63213812016-08-24 09:55:56 -0700764 deps = [
765 "//third_party/expat",
766 ]
767 sources = [
Mike Kleinbd41bcc2017-02-09 16:38:15 -0500768 "src/svg/SkSVGCanvas.cpp",
769 "src/svg/SkSVGDevice.cpp",
mtklein63213812016-08-24 09:55:56 -0700770 "src/xml/SkDOM.cpp",
771 "src/xml/SkXMLParser.cpp",
772 "src/xml/SkXMLWriter.cpp",
773 ]
774}
775
mtkleinc04ff472016-06-23 10:29:30 -0700776component("skia") {
777 public_configs = [ ":skia_public" ]
778 configs += skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -0700779
780 deps = [
anmittalb8b3f712016-08-25 04:55:19 -0700781 ":arm64",
782 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -0700783 ":avx",
anmittalb8b3f712016-08-25 04:55:19 -0700784 ":crc32",
Mike Kleina04bb452017-02-09 12:24:07 -0500785 ":effects",
mtkleina45be612016-08-29 15:22:10 -0700786 ":fontmgr_android",
mtkleind2e39db2016-09-07 07:52:55 -0700787 ":fontmgr_custom",
Hal Canaryff2742e2018-01-30 11:35:47 -0500788 ":fontmgr_empty",
mtklein3cc22182016-08-29 13:26:14 -0700789 ":fontmgr_fontconfig",
mtkleincdedd0e2016-09-12 15:15:44 -0700790 ":fontmgr_fuchsia",
mtklein06c35c02016-09-20 12:28:12 -0700791 ":gpu",
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400792 ":heif",
Mike Klein1b9b7d52018-02-27 10:37:40 -0500793 ":hsw",
mtklein63213812016-08-24 09:55:56 -0700794 ":jpeg",
mtklein9b8583d2016-08-24 17:32:30 -0700795 ":none",
mtklein63213812016-08-24 09:55:56 -0700796 ":pdf",
797 ":png",
scroggof84ad642016-10-31 09:02:57 -0700798 ":raw",
Mike Kleinfb333552018-01-25 12:49:37 -0500799 ":skcms",
mtklein9b8583d2016-08-24 17:32:30 -0700800 ":sse2",
801 ":sse41",
802 ":sse42",
803 ":ssse3",
mtkleineb3c4252016-08-23 07:38:09 -0700804 ":webp",
mtklein63213812016-08-24 09:55:56 -0700805 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -0700806 ]
807
Chinmay Garde43f115c2016-11-16 15:04:12 -0800808 # This file (and all GN files in Skia) are designed to work with an
809 # empty sources assignment filter; we handle all that explicitly.
810 # We clear the filter here for clients who may have set up a global filter.
811 set_sources_assignment_filter([])
812
mtkleinc04ff472016-06-23 10:29:30 -0700813 sources = []
brettwb9447282016-09-01 14:24:39 -0700814 sources += skia_core_sources
brettwb9447282016-09-01 14:24:39 -0700815 sources += skia_utils_sources
Hal Canary6ad3d2f2016-12-20 16:15:56 -0500816 sources += skia_xps_sources
mtkleinc04ff472016-06-23 10:29:30 -0700817 sources += [
Stan Iliev73d8fd92017-08-02 15:36:24 -0400818 "src/android/SkAndroidFrameworkUtils.cpp",
Leon Scroggins III42ee2842018-01-14 14:46:51 -0500819 "src/android/SkAnimatedImage.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700820 "src/android/SkBitmapRegionCodec.cpp",
821 "src/android/SkBitmapRegionDecoder.cpp",
822 "src/codec/SkAndroidCodec.cpp",
Leon Scroggins IIId81fed92017-06-01 13:42:28 -0400823 "src/codec/SkBmpBaseCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700824 "src/codec/SkBmpCodec.cpp",
825 "src/codec/SkBmpMaskCodec.cpp",
826 "src/codec/SkBmpRLECodec.cpp",
827 "src/codec/SkBmpStandardCodec.cpp",
828 "src/codec/SkCodec.cpp",
829 "src/codec/SkCodecImageGenerator.cpp",
scroggo19b91532016-10-24 09:03:26 -0700830 "src/codec/SkGifCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700831 "src/codec/SkMaskSwizzler.cpp",
832 "src/codec/SkMasks.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700833 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700834 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -0700835 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700836 "src/codec/SkSwizzler.cpp",
837 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700838 "src/images/SkImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700839 "src/ports/SkDiscardableMemory_none.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700840 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700841 "src/ports/SkMemory_malloc.cpp",
842 "src/ports/SkOSFile_stdio.cpp",
843 "src/sfnt/SkOTTable_name.cpp",
844 "src/sfnt/SkOTUtils.cpp",
845 "src/utils/mac/SkStream_mac.cpp",
scroggo3d3a65c2016-10-24 12:28:30 -0700846 "third_party/gif/SkGifImageReader.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700847 ]
brettwb9447282016-09-01 14:24:39 -0700848
mtklein7d6fb2c2016-08-25 14:50:44 -0700849 libs = []
850
mtkleinc04ff472016-06-23 10:29:30 -0700851 if (is_win) {
852 sources += [
Mike Kleinae7e6712016-10-11 17:49:33 -0400853 "src/fonts/SkFontMgr_indirect.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700854 "src/ports/SkDebug_win.cpp",
855 "src/ports/SkFontHost_win.cpp",
856 "src/ports/SkFontMgr_win_dw.cpp",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500857 "src/ports/SkFontMgr_win_dw_factory.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700858 "src/ports/SkImageEncoder_WIC.cpp",
859 "src/ports/SkImageGeneratorWIC.cpp",
860 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -0700861 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700862 "src/ports/SkScalerContext_win_dw.cpp",
863 "src/ports/SkTLS_win.cpp",
864 "src/ports/SkTypeface_win_dw.cpp",
865 ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400866 libs += [
867 "FontSub.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500868 "Gdi32.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400869 "Ole32.lib",
870 "OleAut32.lib",
871 "User32.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500872 "Usp10.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400873 ]
mtkleinc04ff472016-06-23 10:29:30 -0700874 } else {
875 sources += [
mtkleinc04ff472016-06-23 10:29:30 -0700876 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -0700877 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700878 "src/ports/SkTLS_pthread.cpp",
879 ]
Ben Wagnerbe6ae5b2017-08-31 16:45:23 -0400880 libs += [ "dl" ]
mtkleinc04ff472016-06-23 10:29:30 -0700881 }
882
mtklein7d6fb2c2016-08-25 14:50:44 -0700883 if (is_android) {
Mike Klein1c471872017-01-13 15:27:45 -0500884 deps += [ "//third_party/expat" ]
Mike Kleine459afd2017-03-03 09:21:30 -0500885 if (defined(ndk) && ndk != "") {
Mike Klein1c471872017-01-13 15:27:45 -0500886 deps += [ "//third_party/cpu-features" ]
887 }
mtklein06c35c02016-09-20 12:28:12 -0700888 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -0700889 libs += [
890 "EGL",
891 "GLESv2",
892 "log",
893 ]
894 }
895
mtkleinc04ff472016-06-23 10:29:30 -0700896 if (is_linux) {
mtklein06c35c02016-09-20 12:28:12 -0700897 sources += [ "src/ports/SkDebug_stdio.cpp" ]
Hal Canary25375e82018-03-14 15:16:56 -0400898 if (skia_use_egl) {
899 libs += [ "GLESv2" ]
900 }
mtkleinc04ff472016-06-23 10:29:30 -0700901 }
902
903 if (is_mac) {
904 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -0700905 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700906 "src/ports/SkFontHost_mac.cpp",
907 "src/ports/SkImageEncoder_CG.cpp",
908 "src/ports/SkImageGeneratorCG.cpp",
909 ]
mtklein09e61f72016-08-23 13:35:28 -0700910 libs += [
bungeman3e306f62017-03-29 11:32:02 -0400911 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
912 "AppKit.framework",
mtklein09e61f72016-08-23 13:35:28 -0700913 "ApplicationServices.framework",
914 "OpenGL.framework",
915 ]
mtkleinc04ff472016-06-23 10:29:30 -0700916 }
abarth6fc8ff02016-07-15 15:15:15 -0700917
Mike Klein7d302882016-11-03 14:06:31 -0400918 if (is_ios) {
919 sources += [
920 "src/ports/SkDebug_stdio.cpp",
921 "src/ports/SkFontHost_mac.cpp",
922 "src/ports/SkImageEncoder_CG.cpp",
923 "src/ports/SkImageGeneratorCG.cpp",
924 ]
925 libs += [
926 "CoreFoundation.framework",
927 "CoreGraphics.framework",
928 "CoreText.framework",
929 "ImageIO.framework",
930 "MobileCoreServices.framework",
bungeman3e306f62017-03-29 11:32:02 -0400931
932 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
933 "UIKit.framework",
Mike Klein7d302882016-11-03 14:06:31 -0400934 ]
935 }
936
abarth6fc8ff02016-07-15 15:15:15 -0700937 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -0700938 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -0700939 }
mtkleinc04ff472016-06-23 10:29:30 -0700940}
941
mtkleinc095df52016-08-24 12:23:52 -0700942# Targets guarded by skia_enable_tools may use //third_party freely.
943if (skia_enable_tools) {
Mike Klein308b5ac2016-12-06 16:03:52 -0500944 # Used by gn_to_bp.py to list our public include dirs.
945 source_set("public") {
946 configs += [ ":skia_public" ]
947 }
948
Mike Kleinc36dedf2016-11-18 09:35:28 -0500949 config("skia.h_config") {
950 include_dirs = [ "$target_gen_dir" ]
Greg Danielafb7ec72017-12-07 12:48:30 -0500951 if (skia_use_vulkan) {
952 # So we can get the header which includes vulkan
953 include_dirs += [ "tools/gpu/vk" ]
954 }
Mike Kleinc36dedf2016-11-18 09:35:28 -0500955 }
956 action("skia.h") {
957 public_configs = [ ":skia.h_config" ]
958 skia_h = "$target_gen_dir/skia.h"
959 script = "gn/find_headers.py"
Greg Danielc819e662017-04-19 16:39:45 -0400960 args = [ rebase_path(skia_h, root_build_dir) ] +
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000961 rebase_path(skia_public_includes)
Mike Kleinc36dedf2016-11-18 09:35:28 -0500962 depfile = "$skia_h.deps"
963 outputs = [
964 skia_h,
965 ]
966 }
967
968 if (skia_enable_gpu && target_cpu == "x64") {
Mike Kleinc36dedf2016-11-18 09:35:28 -0500969 executable("fiddle") {
970 libs = []
Mike Kleinc36dedf2016-11-18 09:35:28 -0500971 sources = [
Mike Kleinc36dedf2016-11-18 09:35:28 -0500972 "tools/fiddle/draw.cpp",
973 "tools/fiddle/fiddle_main.cpp",
974 ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -0400975
976 if (skia_use_egl) {
977 sources += [ "tools/fiddle/egl_context.cpp" ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -0400978 } else {
979 sources += [ "tools/fiddle/null_context.cpp" ]
980 }
Joe Gregorio1e735c02017-04-19 14:05:14 -0400981 testonly = true
Mike Kleinc36dedf2016-11-18 09:35:28 -0500982 deps = [
Joe Gregorio1e735c02017-04-19 14:05:14 -0400983 ":flags",
Robert Phillips57e08282017-11-16 14:59:48 -0500984 ":gpu_tool_utils",
Mike Kleinc36dedf2016-11-18 09:35:28 -0500985 ":skia",
986 ":skia.h",
987 ]
988 }
989 }
990
991 if (skia_enable_gpu) {
992 source_set("public_headers_warnings_check") {
993 sources = [
994 "tools/public_headers_warnings_check.cpp",
995 ]
996 configs -= [ "//gn:warnings_except_public_headers" ]
997 deps = [
998 ":skia",
999 ":skia.h",
1000 ]
1001 }
1002 }
1003
mtkleinc095df52016-08-24 12:23:52 -07001004 template("test_lib") {
1005 config(target_name + "_config") {
1006 include_dirs = invoker.public_include_dirs
mtkleina627b5c2016-09-20 13:36:47 -07001007 if (defined(invoker.public_defines)) {
1008 defines = invoker.public_defines
1009 }
mtklein25c81d42016-07-27 13:55:26 -07001010 }
mtkleinc095df52016-08-24 12:23:52 -07001011 source_set(target_name) {
1012 forward_variables_from(invoker, "*", [ "public_include_dirs" ])
1013 public_configs = [
1014 ":" + target_name + "_config",
1015 ":skia_private",
1016 ]
1017
1018 if (!defined(deps)) {
1019 deps = []
1020 }
1021 deps += [ ":skia" ]
1022 testonly = true
1023 }
mtklein25c81d42016-07-27 13:55:26 -07001024 }
mtklein25c81d42016-07-27 13:55:26 -07001025
Mike Kleine6682eb2017-01-05 10:54:57 -05001026 template("test_app") {
Jim Van Verth443a9132017-11-28 09:45:26 -05001027 if (is_ios) {
1028 app_name = target_name
1029 gen_path = target_gen_dir
1030
1031 action("${app_name}_generate_info_plist") {
1032 script = "//gn/gen_plist_ios.py"
1033 outputs = [
1034 "$gen_path/${app_name}_Info.plist",
1035 ]
1036 args = [ rebase_path("$gen_path/$app_name", root_build_dir) ]
1037 }
1038
1039 bundle_data("${app_name}_bundle_info_plist") {
1040 public_deps = [
1041 ":${app_name}_generate_info_plist",
1042 ]
1043 sources = [
1044 "$gen_path/${app_name}_Info.plist",
1045 ]
1046 outputs = [
1047 "{{bundle_root_dir}}/Info.plist",
1048 ]
1049 }
1050
Jim Van Verth329c5a62017-11-29 11:42:33 -05001051 bundle_ios_data =
1052 defined(invoker.bundle_ios_data) && invoker.bundle_ios_data
1053
1054 if (bundle_ios_data) {
1055 has_skps =
1056 "True" == exec_script("//gn/checkdir.py",
1057 [ rebase_path("skps", root_build_dir) ],
1058 "trim string")
1059 bundle_data("${app_name}_bundle_resources") {
1060 sources = [
1061 "resources",
1062 ]
1063 outputs = [
1064 # iOS reserves the folders 'Resources' and 'resources' so store one level deeper
1065 "{{bundle_resources_dir}}/data/resources",
1066 ]
1067 }
1068
1069 if (has_skps) {
1070 bundle_data("${app_name}_bundle_skps") {
1071 sources = [
1072 "skps",
1073 ]
1074 outputs = [
1075 # Store in same folder as resources
1076 "{{bundle_resources_dir}}/data/skps",
1077 ]
1078 }
1079 }
1080 }
1081
Jim Van Verth443a9132017-11-28 09:45:26 -05001082 executable("${app_name}_generate_executable") {
1083 forward_variables_from(invoker,
1084 "*",
1085 [
1086 "output_name",
1087 "visibility",
1088 "is_shared_library",
1089 ])
Mike Klein154e6da2017-07-26 15:13:47 -04001090 configs += [ ":skia_private" ]
Mike Kleine6682eb2017-01-05 10:54:57 -05001091 testonly = true
Jim Van Verth443a9132017-11-28 09:45:26 -05001092 output_name = rebase_path("$gen_path/$app_name", root_build_dir)
1093 }
1094
1095 bundle_data("${app_name}_bundle_executable") {
1096 public_deps = [
1097 ":${app_name}_generate_executable",
1098 ]
1099 sources = [
1100 "$gen_path/$app_name",
1101 ]
1102 outputs = [
1103 "{{bundle_executable_dir}}/$app_name",
1104 ]
1105 testonly = true
1106 }
1107
1108 create_bundle("$app_name") {
1109 product_type = "com.apple.product-type.application"
1110 testonly = true
1111
1112 bundle_root_dir = "${root_build_dir}/${target_name}.app"
1113 bundle_resources_dir = bundle_root_dir
1114 bundle_executable_dir = bundle_root_dir
1115 bundle_plugins_dir = bundle_root_dir + "/Plugins"
1116
1117 deps = [
1118 ":${app_name}_bundle_executable",
1119 ":${app_name}_bundle_info_plist",
1120 ]
Jim Van Verth329c5a62017-11-29 11:42:33 -05001121 if (bundle_ios_data) {
1122 deps += [ ":${app_name}_bundle_resources" ]
1123 if (has_skps) {
1124 deps += [ ":${app_name}_bundle_skps" ]
1125 }
1126 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001127
1128 # should only code sign when running on a device, not the simulator
1129 if (target_cpu != "x64") {
1130 code_signing_script = "//gn/codesign_ios.py"
1131 code_signing_sources = [ "$target_gen_dir/$app_name" ]
1132 code_signing_outputs = [
1133 "$bundle_root_dir/_CodeSignature/CodeResources",
1134 "$bundle_root_dir/embedded.mobileprovision",
1135 ]
Jim Van Verth4e502972017-12-07 15:16:10 -05001136 code_signing_args = [
1137 rebase_path("$bundle_root_dir", root_build_dir),
1138 skia_ios_identity,
1139 skia_ios_profile,
1140 ]
Jim Van Verth443a9132017-11-28 09:45:26 -05001141 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001142 }
1143 } else {
Jim Van Verth443a9132017-11-28 09:45:26 -05001144 # !is_ios
1145
1146 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
1147 shared_library("lib" + target_name) {
1148 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1149 configs += [ ":skia_private" ]
1150 testonly = true
1151 }
1152 } else {
1153 _executable = target_name
1154 executable(_executable) {
1155 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1156 configs += [ ":skia_private" ]
1157 testonly = true
1158 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001159 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001160 if (is_android && skia_android_serial != "" && defined(_executable)) {
1161 action("push_" + target_name) {
1162 script = "gn/push_to_android.py"
1163 deps = [
1164 ":" + _executable,
1165 ]
1166 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
1167 outputs = [
1168 _stamp,
1169 ]
1170 args = [
1171 rebase_path("$root_build_dir/$_executable"),
1172 skia_android_serial,
1173 rebase_path(_stamp),
1174 ]
1175 testonly = true
1176 }
Mike Klein7d921032017-01-05 12:20:41 -05001177 }
1178 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001179 }
1180
mtkleinc095df52016-08-24 12:23:52 -07001181 test_lib("gpu_tool_utils") {
mtklein38925aa2016-09-21 10:11:25 -07001182 public_include_dirs = []
1183 if (skia_enable_gpu) {
1184 public_defines = []
1185 public_include_dirs += [ "tools/gpu" ]
mtkleind68f9b02016-09-23 13:18:41 -07001186
1187 deps = []
mtklein38925aa2016-09-21 10:11:25 -07001188 sources = [
1189 "tools/gpu/GrContextFactory.cpp",
1190 "tools/gpu/GrTest.cpp",
Brian Salomon58389b92018-03-07 13:01:25 -05001191 "tools/gpu/ProxyUtils.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001192 "tools/gpu/TestContext.cpp",
Brian Salomoncbcb0a12017-11-19 13:20:13 -05001193 "tools/gpu/atlastext/GLTestAtlasTextRenderer.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001194 "tools/gpu/gl/GLTestContext.cpp",
mtklein605d9522016-09-21 14:01:32 -07001195 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001196 "tools/gpu/gl/debug/DebugGLTestContext.cpp",
1197 "tools/gpu/gl/debug/GrBufferObj.cpp",
1198 "tools/gpu/gl/debug/GrFrameBufferObj.cpp",
1199 "tools/gpu/gl/debug/GrProgramObj.cpp",
1200 "tools/gpu/gl/debug/GrShaderObj.cpp",
1201 "tools/gpu/gl/debug/GrTextureObj.cpp",
1202 "tools/gpu/gl/debug/GrTextureUnitObj.cpp",
1203 "tools/gpu/gl/null/NullGLTestContext.cpp",
Brian Salomoncfe910d2017-07-06 16:40:18 -04001204 "tools/gpu/mock/MockTestContext.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001205 ]
1206 libs = []
mtklein25c81d42016-07-27 13:55:26 -07001207
Kevin Lubick4a24e102017-03-29 11:19:01 -04001208 if (is_android || skia_use_egl) {
mtklein38925aa2016-09-21 10:11:25 -07001209 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
Mike Klein7d302882016-11-03 14:06:31 -04001210 } else if (is_ios) {
1211 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
1212 libs += [ "OpenGLES.framework" ]
mtklein38925aa2016-09-21 10:11:25 -07001213 } else if (is_linux) {
1214 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -05001215 libs += [ "X11" ]
mtklein38925aa2016-09-21 10:11:25 -07001216 } else if (is_mac) {
1217 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
Mike Klein4b167fc2016-10-11 18:13:53 -04001218 } else if (is_win) {
1219 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
1220 libs += [
1221 "Gdi32.lib",
1222 "OpenGL32.lib",
1223 ]
mtklein38925aa2016-09-21 10:11:25 -07001224 }
mtklein6ef69992016-09-14 06:12:09 -07001225
Greg Daniel6b7e0e22017-07-12 16:21:09 -04001226 cflags_objcc = [ "-fobjc-arc" ]
1227
Mike Kleinc168a3a2016-11-14 14:53:13 +00001228 if (skia_use_angle) {
Mike Kleinc168a3a2016-11-14 14:53:13 +00001229 deps += [ "//third_party/angle2" ]
1230 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
1231 }
mtkleind68f9b02016-09-23 13:18:41 -07001232 if (skia_use_vulkan) {
1233 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
Greg Daniel35970ec2017-11-10 10:03:05 -05001234 sources += [ "tools/gpu/vk/VkTestUtils.cpp" ]
mtkleind68f9b02016-09-23 13:18:41 -07001235 }
Greg Danielb76a72a2017-07-13 15:07:54 -04001236 if (skia_use_metal) {
1237 sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
1238 }
mtkleina627b5c2016-09-20 13:36:47 -07001239 }
mtklein25c81d42016-07-27 13:55:26 -07001240 }
mtklein25c81d42016-07-27 13:55:26 -07001241
mtkleinc095df52016-08-24 12:23:52 -07001242 test_lib("flags") {
1243 public_include_dirs = [ "tools/flags" ]
1244 sources = [
1245 "tools/flags/SkCommandLineFlags.cpp",
mtklein046cb562016-09-16 10:23:12 -07001246 ]
1247 }
1248 test_lib("common_flags") {
1249 public_include_dirs = [ "tools/flags" ]
1250 sources = [
mtkleinc095df52016-08-24 12:23:52 -07001251 "tools/flags/SkCommonFlags.cpp",
1252 "tools/flags/SkCommonFlagsConfig.cpp",
1253 ]
1254 deps = [
mtklein046cb562016-09-16 10:23:12 -07001255 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001256 ":gpu_tool_utils",
1257 ]
1258 }
mtklein25c81d42016-07-27 13:55:26 -07001259
mtkleinc095df52016-08-24 12:23:52 -07001260 test_lib("tool_utils") {
1261 public_include_dirs = [
1262 "tools",
1263 "tools/debugger",
Ben Wagner483c7722018-02-20 17:06:07 -05001264 "tools/fonts",
mtkleinc095df52016-08-24 12:23:52 -07001265 "tools/timer",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001266 "tools/trace",
mtkleinc095df52016-08-24 12:23:52 -07001267 ]
1268 sources = [
mtkleinb37c0342016-09-09 11:07:45 -07001269 "tools/AndroidSkDebugToStdOut.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001270 "tools/CrashHandler.cpp",
mtklein0590fa52016-09-01 07:06:54 -07001271 "tools/LsanSuppressions.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001272 "tools/ProcStats.cpp",
1273 "tools/Resources.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001274 "tools/UrlDataManager.cpp",
1275 "tools/debugger/SkDebugCanvas.cpp",
1276 "tools/debugger/SkDrawCommand.cpp",
1277 "tools/debugger/SkJsonWriteBuffer.cpp",
1278 "tools/debugger/SkObjectParser.cpp",
Brian Salomon5f33a8c2018-02-26 14:32:39 -05001279 "tools/fonts/SkRandomScalerContext.cpp",
1280 "tools/fonts/SkTestFontMgr.cpp",
Ben Wagner3560b582018-03-27 18:15:53 +00001281 "tools/fonts/SkTestScalerContext.cpp",
Brian Salomon5f33a8c2018-02-26 14:32:39 -05001282 "tools/fonts/sk_tool_utils_font.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001283 "tools/picture_utils.cpp",
1284 "tools/random_parse_path.cpp",
1285 "tools/sk_tool_utils.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001286 "tools/timer/Timer.cpp",
Brian Osman53136aa2017-07-20 15:43:35 -04001287 "tools/trace/SkChromeTracingTracer.cpp",
1288 "tools/trace/SkChromeTracingTracer.h",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001289 "tools/trace/SkDebugfTracer.cpp",
1290 "tools/trace/SkDebugfTracer.h",
Brian Osman53136aa2017-07-20 15:43:35 -04001291 "tools/trace/SkEventTracingPriv.cpp",
1292 "tools/trace/SkEventTracingPriv.h",
mtkleinc095df52016-08-24 12:23:52 -07001293 ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001294 libs = []
1295 if (is_ios) {
1296 sources += [ "tools/ios_utils.m" ]
1297 libs += [ "Foundation.framework" ]
1298 }
mtkleinc095df52016-08-24 12:23:52 -07001299 deps = [
mtklein046cb562016-09-16 10:23:12 -07001300 ":common_flags",
mtkleinc095df52016-08-24 12:23:52 -07001301 ":flags",
1302 "//third_party/libpng",
1303 ]
1304 public_deps = [
1305 "//third_party/jsoncpp",
1306 ]
1307 }
mtklein25c81d42016-07-27 13:55:26 -07001308
Mike Klein6e744122016-10-27 12:21:40 -04001309 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -07001310 test_lib("gm") {
1311 public_include_dirs = [ "gm" ]
1312 sources = gm_sources
1313 deps = [
Florin Malita4aa44412017-12-19 12:21:02 -05001314 ":experimental_sksg",
scroggo19b91532016-10-24 09:03:26 -07001315 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001316 ":gpu_tool_utils",
1317 ":skia",
1318 ":tool_utils",
1319 ]
1320 }
mtklein25c81d42016-07-27 13:55:26 -07001321
Mike Klein6e744122016-10-27 12:21:40 -04001322 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07001323 test_lib("tests") {
1324 public_include_dirs = [ "tests" ]
Mike Klein6e744122016-10-27 12:21:40 -04001325 sources = tests_sources + pathops_tests_sources
mtkleina45be612016-08-29 15:22:10 -07001326 if (!fontmgr_android_enabled) {
Mike Klein6e744122016-10-27 12:21:40 -04001327 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -07001328 }
mtkleinc095df52016-08-24 12:23:52 -07001329 deps = [
Florin Malita4aa44412017-12-19 12:21:02 -05001330 ":experimental_sksg",
Hal Canary0f666812018-03-22 15:21:12 -04001331 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001332 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001333 ":skia",
1334 ":tool_utils",
1335 "//third_party/libpng",
1336 "//third_party/zlib",
1337 ]
Mike Kleind63442d2017-03-27 14:16:04 -04001338 public_deps = [
1339 ":gpu_tool_utils", # Test.h #includes headers from this target.
1340 ]
mtkleinc095df52016-08-24 12:23:52 -07001341 }
mtklein2f3416d2016-08-02 16:02:05 -07001342
Mike Klein6e744122016-10-27 12:21:40 -04001343 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07001344 test_lib("bench") {
1345 public_include_dirs = [ "bench" ]
1346 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -07001347 deps = [
1348 ":flags",
1349 ":gm",
1350 ":gpu_tool_utils",
1351 ":skia",
1352 ":tool_utils",
1353 ]
1354 }
mtklein2b6870c2016-07-28 14:17:33 -07001355
Florin Malita54f65c42018-01-16 17:04:30 -05001356 test_lib("experimental_skottie") {
1357 public_include_dirs = [ "experimental/skottie" ]
Florin Malita094ccde2017-12-30 12:27:00 -05001358 include_dirs = [ "tools" ]
1359 sources = [
Florin Malita54f65c42018-01-16 17:04:30 -05001360 "experimental/skottie/Skottie.cpp",
Florin Malitaa6e30f72018-03-23 13:41:58 -04001361 "experimental/skottie/SkottieAdapter.cpp",
Florin Malita54f65c42018-01-16 17:04:30 -05001362 "experimental/skottie/SkottieAnimator.cpp",
Florin Malitacf8ed522018-01-25 15:27:33 -05001363 "experimental/skottie/SkottieParser.cpp",
Florin Malitaa6e30f72018-03-23 13:41:58 -04001364 "experimental/skottie/SkottieValue.cpp",
Florin Malita094ccde2017-12-30 12:27:00 -05001365 ]
1366 deps = [
1367 ":experimental_sksg",
1368 ":skia",
1369 "//third_party/jsoncpp",
1370 ]
1371 }
1372
mtkleinc095df52016-08-24 12:23:52 -07001373 test_lib("experimental_svg_model") {
Hal Canary0f666812018-03-22 15:21:12 -04001374 public_include_dirs = []
1375 if (skia_use_expat) {
1376 public_include_dirs += [ "experimental/svg/model" ]
1377 sources = [
1378 "experimental/svg/model/SkSVGAttribute.cpp",
1379 "experimental/svg/model/SkSVGAttributeParser.cpp",
1380 "experimental/svg/model/SkSVGCircle.cpp",
1381 "experimental/svg/model/SkSVGClipPath.cpp",
1382 "experimental/svg/model/SkSVGContainer.cpp",
1383 "experimental/svg/model/SkSVGDOM.cpp",
1384 "experimental/svg/model/SkSVGEllipse.cpp",
1385 "experimental/svg/model/SkSVGGradient.cpp",
1386 "experimental/svg/model/SkSVGLine.cpp",
1387 "experimental/svg/model/SkSVGLinearGradient.cpp",
1388 "experimental/svg/model/SkSVGNode.cpp",
1389 "experimental/svg/model/SkSVGPath.cpp",
1390 "experimental/svg/model/SkSVGPattern.cpp",
1391 "experimental/svg/model/SkSVGPoly.cpp",
1392 "experimental/svg/model/SkSVGRadialGradient.cpp",
1393 "experimental/svg/model/SkSVGRect.cpp",
1394 "experimental/svg/model/SkSVGRenderContext.cpp",
1395 "experimental/svg/model/SkSVGSVG.cpp",
1396 "experimental/svg/model/SkSVGShape.cpp",
1397 "experimental/svg/model/SkSVGStop.cpp",
1398 "experimental/svg/model/SkSVGTransformableNode.cpp",
1399 "experimental/svg/model/SkSVGUse.cpp",
1400 "experimental/svg/model/SkSVGValue.cpp",
1401 ]
1402 deps = [
1403 ":skia",
1404 ":xml",
1405 ]
1406 }
mtkleinc095df52016-08-24 12:23:52 -07001407 }
fmalitaa2b9fdf2016-08-03 19:53:36 -07001408
Florin Malita4aa44412017-12-19 12:21:02 -05001409 test_lib("experimental_sksg") {
1410 public_include_dirs = [
1411 "experimental/sksg",
1412 "experimental/sksg/effects",
1413 "experimental/sksg/geometry",
1414 "experimental/sksg/paint",
1415 ]
1416 sources = [
1417 "experimental/sksg/SkSGDraw.cpp",
1418 "experimental/sksg/SkSGEffectNode.cpp",
1419 "experimental/sksg/SkSGGeometryNode.cpp",
1420 "experimental/sksg/SkSGGroup.cpp",
Florin Malita49328072018-01-08 12:51:12 -05001421 "experimental/sksg/SkSGImage.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001422 "experimental/sksg/SkSGInvalidationController.cpp",
1423 "experimental/sksg/SkSGNode.cpp",
1424 "experimental/sksg/SkSGPaintNode.cpp",
1425 "experimental/sksg/SkSGRenderNode.cpp",
Florin Malita35efaa82018-01-22 12:57:06 -05001426 "experimental/sksg/SkSGScene.cpp",
Florin Malita38ea40e2018-01-29 16:31:14 -05001427 "experimental/sksg/effects/SkSGClipEffect.cpp",
Florin Malita5f9102f2018-01-10 13:36:22 -05001428 "experimental/sksg/effects/SkSGMaskEffect.cpp",
Florin Malitac0034172018-01-08 16:42:59 -05001429 "experimental/sksg/effects/SkSGOpacityEffect.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001430 "experimental/sksg/effects/SkSGTransform.cpp",
Florin Malita16d0ad02018-01-19 15:07:29 -05001431 "experimental/sksg/geometry/SkSGGeometryTransform.cpp",
Florin Malitae6345d92018-01-03 23:37:54 -05001432 "experimental/sksg/geometry/SkSGMerge.cpp",
Florin Malita047ae272017-12-27 11:13:13 -05001433 "experimental/sksg/geometry/SkSGPath.cpp",
Florin Malita97b3d2b2018-02-20 11:26:15 -05001434 "experimental/sksg/geometry/SkSGPlane.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001435 "experimental/sksg/geometry/SkSGRect.cpp",
Florin Malita51012ce2018-01-31 17:06:59 -05001436 "experimental/sksg/geometry/SkSGText.cpp",
Florin Malita51b8c892018-01-07 08:54:24 -05001437 "experimental/sksg/geometry/SkSGTrimEffect.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001438 "experimental/sksg/paint/SkSGColor.cpp",
Florin Malita6aaee592018-01-12 12:25:09 -05001439 "experimental/sksg/paint/SkSGGradient.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001440 ]
1441 deps = [
1442 ":skia",
1443 ]
1444 }
1445
Kevin Lubickebf648e2017-09-21 13:45:16 -04001446 if (target_cpu != "wasm") {
1447 test_lib("views") {
1448 public_include_dirs = [ "include/views" ]
1449 sources = [
1450 "src/views/SkEvent.cpp",
1451 "src/views/SkEventSink.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001452 "src/views/SkTouchGesture.cpp",
1453 "src/views/SkView.cpp",
Brian Osman2dd96932016-10-18 15:33:53 -04001454 ]
Brian Osman34755e22016-12-05 09:46:02 -05001455 }
Brian Osman16adfa32016-10-18 14:42:44 -04001456 }
1457
Mike Klein38af9432016-11-11 11:39:44 -05001458 if (skia_use_lua) {
1459 test_lib("lua") {
1460 public_include_dirs = []
1461 sources = [
1462 "src/utils/SkLua.cpp",
1463 "src/utils/SkLuaCanvas.cpp",
1464 ]
1465 deps = [
1466 "//third_party/lua",
1467 ]
1468 }
1469
Mike Kleine6682eb2017-01-05 10:54:57 -05001470 test_app("lua_app") {
Mike Klein38af9432016-11-11 11:39:44 -05001471 sources = [
1472 "tools/lua/lua_app.cpp",
1473 ]
1474 deps = [
1475 ":lua",
1476 ":skia",
1477 "//third_party/lua",
1478 ]
Mike Klein38af9432016-11-11 11:39:44 -05001479 }
1480
Mike Kleine6682eb2017-01-05 10:54:57 -05001481 test_app("lua_pictures") {
Mike Klein38af9432016-11-11 11:39:44 -05001482 sources = [
1483 "tools/lua/lua_pictures.cpp",
1484 ]
1485 deps = [
1486 ":flags",
1487 ":lua",
1488 ":skia",
1489 ":tool_utils",
1490 "//third_party/lua",
1491 ]
Mike Klein38af9432016-11-11 11:39:44 -05001492 }
1493 }
1494
Cary Clark8032b982017-07-28 11:04:54 -04001495 test_app("bookmaker") {
1496 sources = [
1497 "tools/bookmaker/bookmaker.cpp",
Cary Clarkbef063a2017-10-31 15:44:45 -04001498 "tools/bookmaker/cataloger.cpp",
Cary Clarka560c472017-11-27 10:44:06 -05001499 "tools/bookmaker/definition.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001500 "tools/bookmaker/fiddleParser.cpp",
1501 "tools/bookmaker/includeParser.cpp",
1502 "tools/bookmaker/includeWriter.cpp",
1503 "tools/bookmaker/mdOut.cpp",
1504 "tools/bookmaker/parserCommon.cpp",
Cary Clarkac47b882018-01-11 10:35:44 -05001505 "tools/bookmaker/selfCheck.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001506 "tools/bookmaker/spellCheck.cpp",
1507 ]
1508 deps = [
1509 ":flags",
1510 ":skia",
1511 ":tool_utils",
Cary Clark2f466242017-12-11 16:03:17 -05001512 "//third_party/jsoncpp",
Cary Clark8032b982017-07-28 11:04:54 -04001513 ]
1514 }
1515
Kevin Lubickebf648e2017-09-21 13:45:16 -04001516 if (target_cpu != "wasm") {
1517 import("gn/samples.gni")
1518 test_lib("samples") {
1519 public_include_dirs = [ "samplecode" ]
1520 include_dirs = [ "experimental" ]
Yuqian Li56a4a092018-02-12 14:47:34 +08001521 sources = samples_sources
Kevin Lubickebf648e2017-09-21 13:45:16 -04001522 deps = [
Florin Malita4aa44412017-12-19 12:21:02 -05001523 ":experimental_sksg",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001524 ":experimental_svg_model",
1525 ":flags",
1526 ":gm",
Mike Reed193d3a02018-02-08 15:45:51 -05001527 ":skshaper",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001528 ":tool_utils",
1529 ":views",
1530 ":xml",
1531 ]
Mike Klein38af9432016-11-11 11:39:44 -05001532
Kevin Lubickebf648e2017-09-21 13:45:16 -04001533 if (skia_use_lua) {
1534 sources += [ "samplecode/SampleLua.cpp" ]
1535 deps += [
1536 ":lua",
1537 "//third_party/lua",
1538 ]
1539 }
1540 }
1541 test_app("dm") {
1542 sources = [
1543 "dm/DM.cpp",
Hal Canaryb6c5e5b2017-10-09 16:13:02 -04001544 "dm/DMGpuTestProcs.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001545 "dm/DMJsonWriter.cpp",
1546 "dm/DMSrcSink.cpp",
1547 ]
1548 include_dirs = [ "tests" ]
1549 deps = [
1550 ":common_flags",
Florin Malita54f65c42018-01-16 17:04:30 -05001551 ":experimental_skottie",
Florin Malita4aa44412017-12-19 12:21:02 -05001552 ":experimental_sksg",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001553 ":experimental_svg_model",
1554 ":flags",
1555 ":gm",
1556 ":gpu_tool_utils",
1557 ":skia",
1558 ":tests",
1559 ":tool_utils",
1560 "//third_party/jsoncpp",
1561 "//third_party/libpng",
Mike Klein38af9432016-11-11 11:39:44 -05001562 ]
1563 }
Brian Osman16adfa32016-10-18 14:42:44 -04001564 }
1565
Mike Kleina8a51ce2018-01-09 12:34:11 -05001566 if (!is_win) {
1567 test_app("remote_demo") {
1568 sources = [
1569 "tools/remote_demo.cpp",
1570 ]
1571 deps = [
1572 ":skia",
1573 ]
1574 }
1575 }
1576
Mike Kleine6682eb2017-01-05 10:54:57 -05001577 test_app("nanobench") {
mtklein2b6870c2016-07-28 14:17:33 -07001578 sources = [
1579 "bench/nanobench.cpp",
1580 ]
1581 deps = [
1582 ":bench",
mtklein046cb562016-09-16 10:23:12 -07001583 ":common_flags",
Florin Malita4aa44412017-12-19 12:21:02 -05001584 ":experimental_sksg",
fmalita6519c212016-09-14 08:05:17 -07001585 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001586 ":flags",
1587 ":gm",
1588 ":gpu_tool_utils",
1589 ":skia",
1590 ":tool_utils",
1591 "//third_party/jsoncpp",
1592 ]
mtklein2b6870c2016-07-28 14:17:33 -07001593 }
halcanary19a97202016-08-03 15:08:04 -07001594
Ravi Mistry10d36c52017-01-31 09:49:18 -05001595 test_app("skpinfo") {
1596 sources = [
1597 "tools/skpinfo.cpp",
1598 ]
1599 deps = [
1600 ":flags",
1601 ":skia",
1602 ]
1603 }
1604
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001605 if (skia_enable_gpu) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001606 test_app("skpbench") {
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001607 sources = [
1608 "tools/skpbench/skpbench.cpp",
1609 ]
1610 deps = [
1611 ":flags",
1612 ":gpu_tool_utils",
1613 ":skia",
1614 ":tool_utils",
1615 ]
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001616 }
csmartdalton4b5179b2016-09-19 11:03:58 -07001617 }
1618
Hal Canary96c57252018-02-09 11:43:05 -05001619 test_lib("skshaper") {
1620 public_include_dirs = [ "tools/shape" ]
1621 deps = [
1622 ":skia",
1623 ]
1624
Hal Canary8bb40832018-02-08 15:16:28 -05001625 if (target_cpu == "wasm") {
Hal Canary96c57252018-02-09 11:43:05 -05001626 sources = [
1627 "tools/shape/SkShaper_primitive.cpp",
1628 ]
1629 } else {
mtklein6f5df6a2016-08-29 16:01:10 -07001630 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001631 "tools/shape/SkShaper_harfbuzz.cpp",
mtklein6f5df6a2016-08-29 16:01:10 -07001632 ]
Hal Canary96c57252018-02-09 11:43:05 -05001633 deps += [
mtklein6f5df6a2016-08-29 16:01:10 -07001634 "//third_party/harfbuzz",
Ben Wagnera25fbef2017-08-30 13:56:19 -04001635 "//third_party/icu",
mtklein6f5df6a2016-08-29 16:01:10 -07001636 ]
mtklein6f5df6a2016-08-29 16:01:10 -07001637 }
halcanary19a97202016-08-03 15:08:04 -07001638 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001639 test_app("sktexttopdf") {
halcanary3eee9d92016-09-10 07:01:53 -07001640 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001641 "tools/shape/using_skia_and_harfbuzz.cpp",
halcanary3eee9d92016-09-10 07:01:53 -07001642 ]
1643 deps = [
1644 ":skia",
Hal Canary96c57252018-02-09 11:43:05 -05001645 ":skshaper",
halcanary3eee9d92016-09-10 07:01:53 -07001646 ]
halcanary3eee9d92016-09-10 07:01:53 -07001647 }
mtklein046cb562016-09-16 10:23:12 -07001648
Matt Sarett9f1c4032017-05-17 10:06:32 -04001649 test_app("create_flutter_test_images") {
1650 sources = [
1651 "tools/create_flutter_test_images.cpp",
1652 ]
1653 deps = [
1654 ":skia",
1655 ":tool_utils",
1656 ]
1657 }
1658
Ben Wagner219f3622017-07-17 15:32:25 -04001659 test_app("create_test_font") {
1660 sources = [
Ben Wagner483c7722018-02-20 17:06:07 -05001661 "tools/fonts/create_test_font.cpp",
Ben Wagner219f3622017-07-17 15:32:25 -04001662 ]
1663 deps = [
1664 ":skia",
1665 ]
1666 assert_no_deps = [
1667 # tool_utils requires the output of this app.
1668 ":tool_utils",
1669 ]
1670 }
1671
Mike Kleine6682eb2017-01-05 10:54:57 -05001672 test_app("get_images_from_skps") {
mtklein046cb562016-09-16 10:23:12 -07001673 sources = [
1674 "tools/get_images_from_skps.cpp",
1675 ]
1676 deps = [
1677 ":flags",
1678 ":skia",
1679 "//third_party/jsoncpp",
1680 ]
mtklein046cb562016-09-16 10:23:12 -07001681 }
mtkleinecbc5262016-09-22 11:51:24 -07001682
Mike Kleine6682eb2017-01-05 10:54:57 -05001683 test_app("colorspaceinfo") {
Matt Sarett8740d582016-11-11 13:59:14 -05001684 sources = [
1685 "tools/colorspaceinfo.cpp",
1686 ]
1687 deps = [
1688 ":flags",
1689 ":skia",
1690 ":tool_utils",
1691 ]
Matt Sarett8740d582016-11-11 13:59:14 -05001692 }
1693
Kevin Lubickebf648e2017-09-21 13:45:16 -04001694 if (!is_ios && target_cpu != "wasm") {
Mike Kleine6682eb2017-01-05 10:54:57 -05001695 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04001696 sources = [
1697 "tools/skiaserve/Request.cpp",
1698 "tools/skiaserve/Response.cpp",
1699 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001700 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1701 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1702 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1703 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1704 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1705 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1706 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1707 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1708 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05001709 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1710 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001711 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1712 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1713 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1714 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1715 ]
1716 deps = [
1717 ":flags",
1718 ":gpu_tool_utils",
1719 ":skia",
1720 ":tool_utils",
1721 "//third_party/jsoncpp",
1722 "//third_party/libmicrohttpd",
1723 "//third_party/libpng",
1724 ]
Mike Klein7d302882016-11-03 14:06:31 -04001725 }
mtkleinecbc5262016-09-22 11:51:24 -07001726 }
kjlubick14f984b2016-10-03 11:49:45 -07001727
Mike Kleine6682eb2017-01-05 10:54:57 -05001728 test_app("fuzz") {
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05001729 include_dirs = [
1730 "tools",
1731 "tools/debugger",
1732 ]
kjlubick14f984b2016-10-03 11:49:45 -07001733 sources = [
Hal Canary24ac42b2017-02-14 13:35:14 -05001734 "fuzz/FuzzCanvas.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05001735 "fuzz/FuzzCommon.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05001736 "fuzz/FuzzDrawFunctions.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001737 "fuzz/FuzzGradients.cpp",
1738 "fuzz/FuzzParsePath.cpp",
Cary Clark91390c82018-03-09 14:02:46 -05001739 "fuzz/FuzzPathMeasure.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001740 "fuzz/FuzzPathop.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001741 "fuzz/fuzz.cpp",
Kevin Lubick2416f962018-02-12 08:26:39 -05001742 "fuzz/oss_fuzz/FuzzAnimatedImage.cpp",
1743 "fuzz/oss_fuzz/FuzzImage.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05001744 "fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp",
1745 "fuzz/oss_fuzz/FuzzPathDeserialize.cpp",
Kevin Lubick2541edf2018-01-11 10:27:14 -05001746 "fuzz/oss_fuzz/FuzzRegionDeserialize.cpp",
1747 "fuzz/oss_fuzz/FuzzRegionSetPath.cpp",
Kevin Lubickf034d112018-02-08 14:31:24 -05001748 "fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp",
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05001749 "tools/UrlDataManager.cpp",
1750 "tools/debugger/SkDebugCanvas.cpp",
1751 "tools/debugger/SkDrawCommand.cpp",
1752 "tools/debugger/SkJsonWriteBuffer.cpp",
1753 "tools/debugger/SkObjectParser.cpp",
1754 "tools/picture_utils.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001755 ]
1756 deps = [
1757 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04001758 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001759 ":skia",
Kevin Lubick9ff5dc92018-01-09 12:47:33 -05001760 "//third_party/jsoncpp",
1761 "//third_party/libpng",
kjlubick14f984b2016-10-03 11:49:45 -07001762 ]
kjlubick14f984b2016-10-03 11:49:45 -07001763 }
Mike Klein38312422016-10-05 15:41:01 -04001764
Mike Kleine6682eb2017-01-05 10:54:57 -05001765 test_app("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04001766 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04001767 rebase_path("tests/skia_test.cpp"),
1768 rebase_path("tests/Test.cpp"),
1769 ]
caryclark9feb6322016-10-25 08:58:26 -07001770 deps = [
1771 ":flags",
1772 ":gpu_tool_utils",
1773 ":skia",
1774 ":tool_utils",
1775 ]
caryclark9feb6322016-10-25 08:58:26 -07001776 }
1777
Mike Kleine6682eb2017-01-05 10:54:57 -05001778 test_app("dump_record") {
Mike Klein38312422016-10-05 15:41:01 -04001779 sources = [
1780 "tools/DumpRecord.cpp",
1781 "tools/dump_record.cpp",
1782 ]
1783 deps = [
1784 ":flags",
1785 ":skia",
1786 ]
Mike Klein38312422016-10-05 15:41:01 -04001787 }
bungemanfe917272016-10-13 17:36:40 -04001788
Mike Kleine6682eb2017-01-05 10:54:57 -05001789 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04001790 sources = [
1791 "tools/skdiff/skdiff.cpp",
1792 "tools/skdiff/skdiff_html.cpp",
1793 "tools/skdiff/skdiff_main.cpp",
1794 "tools/skdiff/skdiff_utils.cpp",
1795 ]
1796 deps = [
1797 ":skia",
1798 ":tool_utils",
1799 ]
bungemanfe917272016-10-13 17:36:40 -04001800 }
halcanarya73d76a2016-10-17 13:19:02 -07001801
Mike Kleine6682eb2017-01-05 10:54:57 -05001802 test_app("skp_parser") {
halcanarya73d76a2016-10-17 13:19:02 -07001803 sources = [
1804 "tools/skp_parser.cpp",
1805 ]
1806 deps = [
1807 ":skia",
1808 ":tool_utils",
1809 "//third_party/jsoncpp",
1810 ]
halcanarya73d76a2016-10-17 13:19:02 -07001811 }
Brian Osman16adfa32016-10-18 14:42:44 -04001812
Hal Canaryd7b38452017-12-11 17:46:26 -05001813 if (!is_win && skia_enable_gpu) {
1814 test_lib("skqp_lib") {
1815 public_include_dirs = [ "tools/skqp" ]
Hal Canary0e07ad72018-02-08 13:06:56 -05001816 defines =
1817 [ "SK_SKQP_GLOBAL_ERROR_TOLERANCE=$skia_skqp_global_error_tolerance" ]
Hal Canary4689b542018-01-31 11:54:14 -05001818 if (skia_skqp_enable_driver_correctness_workarounds) {
1819 defines += [ "SK_SKQP_ENABLE_DRIVER_CORRECTNESS_WORKAROUNDS" ]
1820 }
Hal Canary75427132017-10-11 16:00:31 -04001821 sources = [
1822 "dm/DMGpuTestProcs.cpp",
Hal Canaryd7b38452017-12-11 17:46:26 -05001823 "tools/skqp/gm_knowledge.cpp",
1824 "tools/skqp/gm_runner.cpp",
Hal Canary75427132017-10-11 16:00:31 -04001825 ]
1826 deps = [
1827 ":gm",
1828 ":gpu_tool_utils",
1829 ":skia",
1830 ":tests",
Hal Canaryd7b38452017-12-11 17:46:26 -05001831 ":tool_utils",
1832 ]
1833 }
1834 test_app("skqp") {
1835 sources = [
1836 "tools/skqp/skqp.cpp",
1837 ]
1838 deps = [
1839 ":skia",
1840 ":skqp_lib",
Hal Canary537d9c02018-01-30 11:30:48 -05001841 ":tool_utils",
Hal Canary75427132017-10-11 16:00:31 -04001842 "//third_party/googletest",
1843 ]
1844 }
1845 }
Hal Canary28f89382017-12-12 09:42:14 -05001846 if (is_android && skia_enable_gpu) {
1847 test_app("skqp_app") {
1848 is_shared_library = true
1849 sources = [
1850 "tools/skqp/jni/org_skia_skqp_SkQPRunner.cpp",
1851 ]
1852 deps = [
1853 ":skia",
1854 ":skqp_lib",
Hal Canaryb4d01a92018-01-29 13:10:08 -05001855 ":tool_utils",
Hal Canary28f89382017-12-12 09:42:14 -05001856 ]
1857 libs = [ "android" ]
1858 }
1859 }
Hal Canary75427132017-10-11 16:00:31 -04001860
Hal Canarya9de7602018-01-19 13:08:23 -05001861 test_app("list_gms") {
1862 sources = [
1863 "tools/list_gms.cpp",
1864 ]
1865 deps = [
1866 ":gm",
1867 ":skia",
1868 ]
1869 }
1870 test_app("list_gpu_unit_tests") {
1871 sources = [
1872 "dm/DMGpuTestProcs.cpp",
1873 "tools/list_gpu_unit_tests.cpp",
1874 ]
1875 deps = [
1876 ":skia",
1877 ":tests",
1878 ]
1879 }
1880
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001881 if (skia_enable_gpu) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001882 test_lib("sk_app") {
1883 public_include_dirs = [ "tools/sk_app" ]
Brian Osman16adfa32016-10-18 14:42:44 -04001884 sources = [
Brian Osmaneff04b52017-11-21 13:18:02 -05001885 "tools/sk_app/CommandSet.cpp",
1886 "tools/sk_app/GLWindowContext.cpp",
1887 "tools/sk_app/Window.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001888 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001889 libs = []
Brian Osman16adfa32016-10-18 14:42:44 -04001890
Jim Van Verth4e56a912016-10-21 10:58:52 -04001891 if (is_android) {
1892 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001893 "tools/sk_app/android/GLWindowContext_android.cpp",
1894 "tools/sk_app/android/RasterWindowContext_android.cpp",
1895 "tools/sk_app/android/Window_android.cpp",
1896 "tools/sk_app/android/main_android.cpp",
1897 "tools/sk_app/android/surface_glue_android.cpp",
Jim Van Verth4e56a912016-10-21 10:58:52 -04001898 ]
Brian Osman462334e2017-02-09 11:22:57 -05001899 libs += [ "android" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001900 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001901 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001902 "tools/sk_app/unix/GLWindowContext_unix.cpp",
1903 "tools/sk_app/unix/RasterWindowContext_unix.cpp",
1904 "tools/sk_app/unix/Window_unix.cpp",
Brian Osmanfa916272017-12-01 09:18:20 -05001905 "tools/sk_app/unix/keysym2ucs.c",
Brian Osmaneff04b52017-11-21 13:18:02 -05001906 "tools/sk_app/unix/main_unix.cpp",
Brian Osman2dd96932016-10-18 15:33:53 -04001907 ]
Brian Osmanfa916272017-12-01 09:18:20 -05001908 libs += [
1909 "GL",
1910 "X11",
1911 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001912 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001913 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001914 "tools/sk_app/win/GLWindowContext_win.cpp",
1915 "tools/sk_app/win/RasterWindowContext_win.cpp",
1916 "tools/sk_app/win/Window_win.cpp",
1917 "tools/sk_app/win/main_win.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001918 ]
Brian Salomon194db172017-08-17 14:37:06 -04001919 if (skia_use_angle) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001920 sources += [ "tools/sk_app/win/ANGLEWindowContext_win.cpp" ]
Brian Salomon194db172017-08-17 14:37:06 -04001921 }
Mike Klein43c25262016-10-20 10:17:47 -04001922 } else if (is_mac) {
1923 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001924 "tools/sk_app/mac/GLWindowContext_mac.cpp",
1925 "tools/sk_app/mac/RasterWindowContext_mac.cpp",
1926 "tools/sk_app/mac/Window_mac.cpp",
1927 "tools/sk_app/mac/main_mac.cpp",
Mike Klein43c25262016-10-20 10:17:47 -04001928 ]
Brian Osmanfa916272017-12-01 09:18:20 -05001929 libs += [
1930 "QuartzCore.framework",
1931 "Cocoa.framework",
1932 "Foundation.framework",
1933 ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001934 } else if (is_ios) {
1935 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001936 "tools/sk_app/ios/GLWindowContext_ios.cpp",
1937 "tools/sk_app/ios/RasterWindowContext_ios.cpp",
1938 "tools/sk_app/ios/Window_ios.cpp",
1939 "tools/sk_app/ios/main_ios.cpp",
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001940 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001941 }
1942
1943 if (skia_use_vulkan) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001944 sources += [ "tools/sk_app/VulkanWindowContext.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001945 if (is_android) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001946 sources += [ "tools/sk_app/android/VulkanWindowContext_android.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001947 } else if (is_linux) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001948 sources += [ "tools/sk_app/unix/VulkanWindowContext_unix.cpp" ]
Brian Osman2dd96932016-10-18 15:33:53 -04001949 libs += [ "X11-xcb" ]
1950 } else if (is_win) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001951 sources += [ "tools/sk_app/win/VulkanWindowContext_win.cpp" ]
Brian Osman16adfa32016-10-18 14:42:44 -04001952 }
1953 }
1954
Brian Osman16adfa32016-10-18 14:42:44 -04001955 deps = [
Brian Osman16adfa32016-10-18 14:42:44 -04001956 ":gpu_tool_utils",
Brian Osman16adfa32016-10-18 14:42:44 -04001957 ":skia",
1958 ":tool_utils",
1959 ":views",
Brian Osman16adfa32016-10-18 14:42:44 -04001960 ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001961 if (is_android) {
1962 deps += [ "//third_party/native_app_glue" ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001963 } else if (is_mac || is_ios) {
Mike Klein43c25262016-10-20 10:17:47 -04001964 deps += [ "//third_party/libsdl" ]
1965 }
Brian Salomon194db172017-08-17 14:37:06 -04001966 if (skia_use_angle) {
1967 deps += [ "//third_party/angle2" ]
1968 }
Mike Kleina92c3832016-12-08 09:49:39 -05001969 }
Brian Osman16adfa32016-10-18 14:42:44 -04001970 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05001971
Brian Osmaneff04b52017-11-21 13:18:02 -05001972 if (skia_enable_gpu) {
1973 test_app("viewer") {
1974 is_shared_library = is_android
Jim Van Verth329c5a62017-11-29 11:42:33 -05001975 if (is_ios) {
1976 bundle_ios_data = true
1977 }
Brian Osmaneff04b52017-11-21 13:18:02 -05001978 sources = [
Chris Dalton2d18f412018-02-20 13:23:32 -07001979 "tools/viewer/BisectSlide.cpp",
Brian Osmaneff04b52017-11-21 13:18:02 -05001980 "tools/viewer/GMSlide.cpp",
Brian Osmand67e5182017-12-08 16:46:09 -05001981 "tools/viewer/ImGuiLayer.cpp",
Brian Osmaneff04b52017-11-21 13:18:02 -05001982 "tools/viewer/ImageSlide.cpp",
1983 "tools/viewer/SKPSlide.cpp",
1984 "tools/viewer/SampleSlide.cpp",
Florin Malita54f65c42018-01-16 17:04:30 -05001985 "tools/viewer/SkottieSlide.cpp",
Florin Malita76a076b2018-02-15 18:40:48 -05001986 "tools/viewer/SlideDir.cpp",
Brian Osman56a24812017-12-19 11:15:16 -05001987 "tools/viewer/StatsLayer.cpp",
Brian Osmaneff04b52017-11-21 13:18:02 -05001988 "tools/viewer/Viewer.cpp",
1989 ]
1990 libs = []
1991
1992 include_dirs = []
1993 deps = [
Florin Malita54f65c42018-01-16 17:04:30 -05001994 ":experimental_skottie",
Florin Malitabcd07232018-01-31 11:08:58 -05001995 ":experimental_sksg",
Brian Osmaneff04b52017-11-21 13:18:02 -05001996 ":flags",
1997 ":gm",
1998 ":gpu_tool_utils",
1999 ":samples",
2000 ":sk_app",
2001 ":skia",
2002 ":tool_utils",
2003 ":views",
2004 "//third_party/imgui",
2005 "//third_party/jsoncpp",
2006 ]
2007 }
2008 }
2009
2010 if (skia_enable_gpu && !skia_use_angle && (is_linux || is_win || is_mac)) {
2011 test_app("HelloWorld") {
2012 sources = [
2013 "example/HelloWorld.cpp",
2014 ]
2015 libs = []
2016
2017 include_dirs = []
2018 deps = [
2019 ":flags",
2020 ":gpu_tool_utils",
2021 ":sk_app",
2022 ":skia",
2023 ":tool_utils",
2024 ":views",
2025 ]
2026 }
2027 }
2028
Jim Van Verthecfed2b2017-08-30 14:02:50 -04002029 if (skia_enable_gpu && (is_linux || is_mac || is_ios)) {
Jim Van Verth4c70c752017-07-11 12:03:01 -04002030 test_app("SkiaSDLExample") {
2031 sources = [
2032 "example/SkiaSDLExample.cpp",
2033 ]
2034 libs = []
2035 include_dirs = []
2036 deps = [
2037 ":gpu_tool_utils",
2038 ":skia",
2039 "//third_party/libsdl",
2040 ]
2041 }
2042 }
2043
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002044 if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
2045 action_foreach("generate_mocs") {
2046 script = "gn/call.py"
2047 sources = [
2048 "tools/mdbviz/MainWindow.h",
2049 ]
2050 outputs = [
2051 "$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp",
2052 ]
2053 args = [
2054 "$skia_qt_path" + "/bin/moc",
2055 "{{source}}",
2056 "-o",
2057 "gen/mdbviz/{{source_name_part}}_moc.cpp",
2058 ]
2059 }
2060 action_foreach("generate_resources") {
2061 script = "gn/call.py"
2062 sources = [
2063 "tools/mdbviz/resources.qrc",
2064 ]
2065 outputs = [
2066 "$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp",
2067 ]
2068 args = [
2069 "$skia_qt_path" + "/bin/rcc",
2070 "{{source}}",
2071 "-o",
2072 "gen/mdbviz/{{source_name_part}}_res.cpp",
2073 ]
2074 }
2075 test_app("mdbviz") {
2076 if (is_win) {
2077 # on Windows we need to disable some exception handling warnings due to the Qt headers
2078 cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
2079 }
2080 sources = [
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002081 "tools/UrlDataManager.cpp",
2082 "tools/debugger/SkDebugCanvas.cpp",
2083 "tools/debugger/SkDrawCommand.cpp",
2084 "tools/debugger/SkJsonWriteBuffer.cpp",
2085 "tools/debugger/SkObjectParser.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002086 "tools/mdbviz/MainWindow.cpp",
Robert Phillipsdeaf5682017-09-06 13:07:21 -04002087 "tools/mdbviz/Model.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002088 "tools/mdbviz/main.cpp",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002089 "tools/picture_utils.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002090
2091 # generated files
2092 "$target_gen_dir/mdbviz/MainWindow_moc.cpp",
2093 "$target_gen_dir/mdbviz/resources_res.cpp",
2094 ]
2095 lib_dirs = [ "$skia_qt_path/lib" ]
2096 libs = [
2097 "Qt5Core.lib",
2098 "Qt5Gui.lib",
2099 "Qt5Widgets.lib",
2100 ]
2101 include_dirs = [
2102 "$skia_qt_path/include",
Robert Phillips276066b2017-09-06 17:17:44 -04002103 "$skia_qt_path/include/QtCore",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002104 "$skia_qt_path/include/QtWidgets",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002105 "tools",
2106 "tools/debugger",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002107 ]
2108 deps = [
2109 ":generate_mocs",
2110 ":generate_resources",
2111 ":skia",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002112 "//third_party/jsoncpp",
2113 "//third_party/libpng",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002114 ]
2115 }
2116 }
2117
Mike Kleine459afd2017-03-03 09:21:30 -05002118 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05002119 copy("gdbserver") {
2120 sources = [
2121 "$ndk/$ndk_gdbserver",
2122 ]
2123 outputs = [
2124 "$root_out_dir/gdbserver",
2125 ]
2126 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05002127 }
mtklein25c81d42016-07-27 13:55:26 -07002128}