blob: 03a11a6d75cadb2ac9b32a93880919a7d8d025ee [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 Klein69f6ed42016-10-13 15:45:07 -040024 skia_use_gdi = false
Mike Klein7d302882016-11-03 14:06:31 -040025 skia_use_icu = !is_fuchsia && !is_ios && !is_win # TODO: Windows
mtklein63213812016-08-24 09:55:56 -070026 skia_use_libjpeg_turbo = true
27 skia_use_libpng = true
mtkleineb3c4252016-08-23 07:38:09 -070028 skia_use_libwebp = !is_fuchsia
Mike Klein38af9432016-11-11 11:39:44 -050029 skia_use_lua = false
mtkleina627b5c2016-09-20 13:36:47 -070030 skia_use_mesa = false
Mike Klein10d665d2016-11-01 11:46:10 -040031 skia_use_piex = !is_win
mtklein63213812016-08-24 09:55:56 -070032 skia_use_zlib = true
Greg Daniele5ddff52017-07-05 16:49:36 -040033 skia_use_metal = false
Mike Klein36f182f2017-10-20 12:33:53 -040034 skia_use_libheif = is_skia_dev_build
mtklein1bd72ba2016-09-16 07:45:52 -070035
Mike Klein7d921032017-01-05 12:20:41 -050036 skia_android_serial = ""
Brian Osman3f375d02016-12-28 11:19:22 -050037 skia_enable_discrete_gpu = true
Mike Kleina04bb452017-02-09 12:24:07 -050038 skia_enable_effects = true
Brian Osmanf2c90142017-07-13 15:50:03 -040039 skia_enable_flutter_defines = 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 Daniel686bb212016-10-27 10:48:48 -040045 skia_vulkan_sdk = getenv("VULKAN_SDK")
Robert Phillipsa6d2d702017-09-01 12:17:03 -040046 skia_qt_path = getenv("QT_PATH")
Ethan Nicholas762466e2017-06-29 10:03:38 -040047 skia_compile_processors = false
Ethan Nicholas5b5f0962017-09-11 13:50:14 -070048 skia_lex = false
Mike Kleinc55a6cb2017-06-28 13:21:47 -040049
50 skia_jumper_clang = ""
51 skia_jumper_objdump = ""
52 skia_jumper_ccache = ""
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
57
Mike Klein4d598a32016-10-31 13:44:49 -040058 if (is_android) {
59 skia_use_vulkan = defined(ndk_api) && ndk_api >= 24
Forrest Reiling30229ac2017-04-17 13:36:39 -070060 } else if (is_fuchsia) {
61 skia_use_vulkan = fuchsia_use_vulkan
Mike Klein4d598a32016-10-31 13:44:49 -040062 } else {
63 skia_use_vulkan = skia_vulkan_sdk != ""
64 }
Brian Salomon23d73ea2016-10-27 13:31:37 -040065}
Greg Danielec6ae522017-04-25 13:38:26 -040066declare_args() {
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +000067 skia_vulkan_headers = ""
Greg Danielec6ae522017-04-25 13:38:26 -040068 if (skia_use_vulkan) {
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +000069 # 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 -040070 if (is_fuchsia) {
71 skia_vulkan_headers = "$fuchsia_vulkan_sdk/include"
72 } else if (is_linux || is_win) {
73 skia_vulkan_headers = "$skia_vulkan_sdk/include"
Greg Danielec6ae522017-04-25 13:38:26 -040074 }
Greg Danielec6ae522017-04-25 13:38:26 -040075 }
76}
Brian Salomon789e25e2016-09-30 13:41:03 -040077
Adam Barth54ef74a2017-10-13 10:59:38 -070078if (defined(skia_settings)) {
79 import(skia_settings)
80}
81
mtklein38925aa2016-09-21 10:11:25 -070082# Our tools require static linking (they use non-exported symbols).
83skia_enable_tools = skia_enable_tools && !is_component_build
mtklein06c35c02016-09-20 12:28:12 -070084
mtkleina45be612016-08-29 15:22:10 -070085fontmgr_android_enabled = skia_use_expat && skia_use_freetype
86
mtklein1211e0c2016-07-26 13:55:45 -070087skia_public_includes = [
mtklein25c81d42016-07-27 13:55:26 -070088 "include/android",
mtkleinfa84d942016-07-28 09:45:14 -070089 "include/c",
mtklein1211e0c2016-07-26 13:55:45 -070090 "include/codec",
91 "include/config",
92 "include/core",
93 "include/effects",
Matt Sarett94fd06f2017-05-08 17:31:00 -040094 "include/encode",
mtklein1211e0c2016-07-26 13:55:45 -070095 "include/gpu",
96 "include/gpu/gl",
mtklein1211e0c2016-07-26 13:55:45 -070097 "include/pathops",
98 "include/ports",
mtklein25c81d42016-07-27 13:55:26 -070099 "include/svg",
mtklein1211e0c2016-07-26 13:55:45 -0700100 "include/utils",
101 "include/utils/mac",
mtklein1211e0c2016-07-26 13:55:45 -0700102]
103
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000104if (skia_use_vulkan) {
105 skia_public_includes += [ "include/gpu/vk" ]
106}
Greg Daniele5ddff52017-07-05 16:49:36 -0400107if (skia_use_metal) {
108 skia_public_includes += [ "include/gpu/mtl" ]
109}
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000110
mtkleinc04ff472016-06-23 10:29:30 -0700111# Skia public API, generally provided by :skia.
112config("skia_public") {
mtklein1211e0c2016-07-26 13:55:45 -0700113 include_dirs = skia_public_includes
Greg Danielec6ae522017-04-25 13:38:26 -0400114 if (skia_vulkan_headers != "") {
115 include_dirs += [ skia_vulkan_headers ]
116 }
Mike Kleinae7e6712016-10-11 17:49:33 -0400117 defines = []
118 if (is_component_build) {
119 defines += [ "SKIA_DLL" ]
120 }
Mike Kleinc4cbd742016-09-26 21:37:09 -0400121 if (is_fuchsia || is_linux) {
jcgregorio5561e3d2016-08-25 09:25:11 -0700122 defines += [ "SK_SAMPLES_FOR_X" ]
123 }
Brian Osmanf2c90142017-07-13 15:50:03 -0400124 if (skia_enable_flutter_defines) {
125 defines += flutter_defines
126 }
mtklein06c35c02016-09-20 12:28:12 -0700127 if (!skia_enable_gpu) {
128 defines += [ "SK_SUPPORT_GPU=0" ]
129 }
mtkleinc04ff472016-06-23 10:29:30 -0700130}
131
132# Skia internal APIs, used by Skia itself and a few test tools.
133config("skia_private") {
134 visibility = [ ":*" ]
135
136 include_dirs = [
137 "include/private",
138 "src/c",
mtklein1211e0c2016-07-26 13:55:45 -0700139 "src/codec",
mtkleinc04ff472016-06-23 10:29:30 -0700140 "src/core",
141 "src/effects",
mtklein25c81d42016-07-27 13:55:26 -0700142 "src/fonts",
mtkleinc04ff472016-06-23 10:29:30 -0700143 "src/image",
144 "src/images",
145 "src/lazy",
146 "src/opts",
147 "src/pathops",
mtklein2b6870c2016-07-28 14:17:33 -0700148 "src/pdf",
mtkleinc04ff472016-06-23 10:29:30 -0700149 "src/ports",
150 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400151 "src/shaders",
152 "src/shaders/gradients",
mtklein9e0d9dd2016-08-30 10:37:19 -0700153 "src/sksl",
mtkleinc04ff472016-06-23 10:29:30 -0700154 "src/utils",
mtklein7a1f45f2016-08-04 06:19:33 -0700155 "src/utils/win",
Herb Derby5a8fe972017-02-14 14:42:30 -0500156 "src/xml",
scroggo19b91532016-10-24 09:03:26 -0700157 "third_party/gif",
mtkleinc04ff472016-06-23 10:29:30 -0700158 ]
mtklein150d1132016-08-01 06:56:40 -0700159
Mike Reeda9e241d2017-05-03 10:52:00 -0400160 defines = [ "SK_GAMMA_APPLY_TO_A8" ]
mtkleinb37c0342016-09-09 11:07:45 -0700161 if (is_android) {
162 defines += [
163 "SK_GAMMA_EXPONENT=1.4",
164 "SK_GAMMA_CONTRAST=0.0",
165 ]
166 }
mtklein88a7ac02016-09-14 11:16:49 -0700167 if (is_official_build || is_android) {
168 # TODO(bsalomon): it'd be nice to make Android normal.
169 defines += [ "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0" ]
170 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400171 libs = []
172 lib_dirs = []
173 if (skia_use_vulkan) {
Michael Jurkada3e5962017-04-14 17:44:09 -0700174 if (skia_vulkan_sdk != "" && !is_android && !is_fuchsia) {
Mike Klein487bfc22016-10-14 14:04:56 -0400175 if (is_win) {
Brian Salomon3b5bf352017-03-20 15:54:41 -0400176 lib_dirs += [
177 "$skia_vulkan_sdk/Bin",
178 "$skia_vulkan_sdk/Lib",
179 ]
Mike Klein487bfc22016-10-14 14:04:56 -0400180 } else {
Greg Daniel686bb212016-10-27 10:48:48 -0400181 lib_dirs += [ "$skia_vulkan_sdk/lib/" ]
Mike Klein487bfc22016-10-14 14:04:56 -0400182 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400183 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400184 }
Brian Salomon03e05842017-02-23 12:23:47 -0500185 if (skia_enable_gpu) {
186 include_dirs += [ "src/gpu" ]
187 }
Brian Osman34755e22016-12-05 09:46:02 -0500188 if (skia_use_angle) {
189 defines += [ "SK_ANGLE" ]
190 }
Brian Osman3f375d02016-12-28 11:19:22 -0500191 if (skia_enable_discrete_gpu) {
192 defines += [ "SK_ENABLE_DISCRETE_GPU" ]
193 }
Brian Salomon0c26a9d2017-07-06 10:09:38 -0400194 if (!is_official_build) {
195 defines += [ "GR_TEST_UTILS=1" ]
196 }
mtkleinc04ff472016-06-23 10:29:30 -0700197}
198
199# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
200config("skia_library") {
201 visibility = [ ":*" ]
mtkleinc04ff472016-06-23 10:29:30 -0700202 defines = [ "SKIA_IMPLEMENTATION=1" ]
203}
204
205skia_library_configs = [
206 ":skia_public",
207 ":skia_private",
208 ":skia_library",
209]
210
mtklein9b8583d2016-08-24 17:32:30 -0700211# Use for CPU-specific Skia code that needs particular compiler flags.
212template("opts") {
213 if (invoker.enabled) {
214 source_set(target_name) {
215 forward_variables_from(invoker, "*")
216 configs += skia_library_configs
217 }
218 } else {
219 # If not enabled, a phony empty target that swallows all otherwise unused variables.
220 source_set(target_name) {
221 forward_variables_from(invoker,
222 "*",
223 [
224 "sources",
225 "cflags",
226 ])
227 }
228 }
anmittala7eaf2e2016-08-17 13:57:26 -0700229}
230
mtklein422310d2016-08-16 18:28:43 -0700231is_x86 = current_cpu == "x64" || current_cpu == "x86"
mtkleinc04ff472016-06-23 10:29:30 -0700232
mtklein7d6fb2c2016-08-25 14:50:44 -0700233opts("none") {
234 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
brettwb9447282016-09-01 14:24:39 -0700235 sources = skia_opts.none_sources
anmittalb8b3f712016-08-25 04:55:19 -0700236 cflags = []
237}
238
mtklein7d6fb2c2016-08-25 14:50:44 -0700239opts("armv7") {
anmittalb8b3f712016-08-25 04:55:19 -0700240 enabled = current_cpu == "arm"
brettwb9447282016-09-01 14:24:39 -0700241 sources = skia_opts.armv7_sources + skia_opts.neon_sources
mtklein7d6fb2c2016-08-25 14:50:44 -0700242 cflags = []
anmittalb8b3f712016-08-25 04:55:19 -0700243}
244
245opts("arm64") {
246 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700247 sources = skia_opts.arm64_sources
anmittalb8b3f712016-08-25 04:55:19 -0700248 cflags = []
249}
250
251opts("crc32") {
252 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700253 sources = skia_opts.crc32_sources
anmittalb8b3f712016-08-25 04:55:19 -0700254 cflags = [ "-march=armv8-a+crc" ]
255}
256
mtklein9b8583d2016-08-24 17:32:30 -0700257opts("sse2") {
258 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700259 sources = skia_opts.sse2_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400260 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400261 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
262 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400263 cflags = [ "-msse2" ]
264 }
mtklein9b8583d2016-08-24 17:32:30 -0700265}
mtkleinc04ff472016-06-23 10:29:30 -0700266
mtklein9b8583d2016-08-24 17:32:30 -0700267opts("ssse3") {
268 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700269 sources = skia_opts.ssse3_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400270 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400271 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
272 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400273 cflags = [ "-mssse3" ]
274 }
mtklein9b8583d2016-08-24 17:32:30 -0700275}
mtkleinc04ff472016-06-23 10:29:30 -0700276
mtklein9b8583d2016-08-24 17:32:30 -0700277opts("sse41") {
278 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700279 sources = skia_opts.sse41_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400280 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400281 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
282 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400283 cflags = [ "-msse4.1" ]
284 }
mtklein9b8583d2016-08-24 17:32:30 -0700285}
mtklein4e976072016-08-08 09:06:27 -0700286
mtklein9b8583d2016-08-24 17:32:30 -0700287opts("sse42") {
288 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700289 sources = skia_opts.sse42_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400290 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400291 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
292 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400293 cflags = [ "-msse4.2" ]
294 }
mtklein9b8583d2016-08-24 17:32:30 -0700295}
296
297opts("avx") {
298 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700299 sources = skia_opts.avx_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400300 if (!is_clang && is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000301 cflags = [ "/arch:AVX" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400302 } else {
303 cflags = [ "-mavx" ]
304 }
mtkleinc04ff472016-06-23 10:29:30 -0700305}
306
mtkleinc095df52016-08-24 12:23:52 -0700307# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700308template("optional") {
309 if (invoker.enabled) {
310 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700311 if (defined(invoker.public_defines)) {
312 defines = invoker.public_defines
313 }
mtklein457b42a2016-08-23 13:56:37 -0700314 }
315 source_set(target_name) {
mtkleincd01b032016-08-31 04:58:19 -0700316 forward_variables_from(invoker,
317 "*",
318 [
319 "public_defines",
320 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700321 "configs_to_remove",
mtkleincd01b032016-08-31 04:58:19 -0700322 ])
mtklein457b42a2016-08-23 13:56:37 -0700323 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein9b8583d2016-08-24 17:32:30 -0700324 configs += skia_library_configs
scroggof84ad642016-10-31 09:02:57 -0700325 if (defined(invoker.configs_to_remove)) {
326 configs -= invoker.configs_to_remove
327 }
mtklein457b42a2016-08-23 13:56:37 -0700328 }
329 } else {
mtklein457b42a2016-08-23 13:56:37 -0700330 source_set(target_name) {
331 forward_variables_from(invoker,
332 "*",
333 [
334 "public_defines",
mtklein457b42a2016-08-23 13:56:37 -0700335 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700336 "libs",
mtklein457b42a2016-08-23 13:56:37 -0700337 "sources",
mtkleincd01b032016-08-31 04:58:19 -0700338 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700339 "configs_to_remove",
mtklein457b42a2016-08-23 13:56:37 -0700340 ])
mtkleincd01b032016-08-31 04:58:19 -0700341 if (defined(invoker.sources_when_disabled)) {
342 sources = invoker.sources_when_disabled
343 }
344 configs += skia_library_configs
mtklein457b42a2016-08-23 13:56:37 -0700345 }
mtkleineb3c4252016-08-23 07:38:09 -0700346 }
mtklein457b42a2016-08-23 13:56:37 -0700347}
mtklein457b42a2016-08-23 13:56:37 -0700348
Mike Kleina04bb452017-02-09 12:24:07 -0500349optional("effects") {
350 enabled = skia_enable_effects
Ethan Nicholas762466e2017-06-29 10:03:38 -0400351 deps = [
352 ":compile_processors",
353 ]
Mike Kleina04bb452017-02-09 12:24:07 -0500354 sources =
355 skia_effects_sources + [ "src/ports/SkGlobalInitialization_default.cpp" ]
356 sources_when_disabled = [ "src/ports/SkGlobalInitialization_none.cpp" ]
357}
358
mtkleina45be612016-08-29 15:22:10 -0700359optional("fontmgr_android") {
360 enabled = fontmgr_android_enabled
mtkleina45be612016-08-29 15:22:10 -0700361
362 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500363 ":typeface_freetype",
mtkleina45be612016-08-29 15:22:10 -0700364 "//third_party/expat",
mtkleina45be612016-08-29 15:22:10 -0700365 ]
366 sources = [
367 "src/ports/SkFontMgr_android.cpp",
368 "src/ports/SkFontMgr_android_factory.cpp",
369 "src/ports/SkFontMgr_android_parser.cpp",
370 ]
371}
372
mtkleind2e39db2016-09-07 07:52:55 -0700373optional("fontmgr_custom") {
374 enabled = is_linux && skia_use_freetype && !skia_use_fontconfig
375
376 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500377 ":typeface_freetype",
mtkleind2e39db2016-09-07 07:52:55 -0700378 ]
379 sources = [
380 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500381 "src/ports/SkFontMgr_custom.h",
382 "src/ports/SkFontMgr_custom_directory.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700383 "src/ports/SkFontMgr_custom_directory_factory.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500384 "src/ports/SkFontMgr_custom_embedded.cpp",
385 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700386 ]
387}
388
mtklein3cc22182016-08-29 13:26:14 -0700389optional("fontmgr_fontconfig") {
390 enabled = skia_use_freetype && skia_use_fontconfig
mtklein3cc22182016-08-29 13:26:14 -0700391
392 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500393 ":typeface_freetype",
mtklein3cc22182016-08-29 13:26:14 -0700394 "//third_party:fontconfig",
mtklein3cc22182016-08-29 13:26:14 -0700395 ]
396 sources = [
bungeman1ae0e012016-09-19 12:13:16 -0700397 "src/ports/SkFontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700398 "src/ports/SkFontConfigInterface_direct.cpp",
399 "src/ports/SkFontConfigInterface_direct_factory.cpp",
400 "src/ports/SkFontMgr_FontConfigInterface.cpp",
401 "src/ports/SkFontMgr_fontconfig.cpp",
402 "src/ports/SkFontMgr_fontconfig_factory.cpp",
403 ]
404}
405
mtkleincdedd0e2016-09-12 15:15:44 -0700406optional("fontmgr_fuchsia") {
407 enabled = is_fuchsia && skia_use_freetype
408
409 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500410 ":typeface_freetype",
mtkleincdedd0e2016-09-12 15:15:44 -0700411 ]
412 sources = [
413 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500414 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleincdedd0e2016-09-12 15:15:44 -0700415 "src/ports/SkFontMgr_custom_empty_factory.cpp",
416 ]
417}
418
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700419if (skia_lex) {
Ethan Nicholasca82a922017-09-07 09:39:50 -0400420 executable("sksllex") {
421 sources = [
422 "src/sksl/lex/Main.cpp",
423 "src/sksl/lex/NFA.cpp",
424 "src/sksl/lex/RegexNode.cpp",
425 "src/sksl/lex/RegexParser.cpp",
426 ]
427 include_dirs = [ "src/sksl/lex" ]
428 }
429
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700430 action("run_sksllex") {
431 script = "gn/run_sksllex.py"
Ethan Nicholase148bf72017-10-06 14:22:22 -0400432 deps = [
433 ":sksllex(//gn/toolchain:$host_toolchain)",
434 ]
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700435 sources = [
436 "src/sksl/lex/layout.lex",
437 "src/sksl/lex/sksl.lex",
438 ]
439
440 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
441 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
442 outputs = [
443 "$target_out_dir/" +
444 rebase_path("src/sksl/lex/SkSLLexer.h", target_out_dir),
445 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
446 # confused due to the same file being named by two different paths
447 ]
448 sksllex_path = "$root_out_dir/"
449 sksllex_path += "sksllex"
450 if (host_os == "win") {
451 sksllex_path += ".exe"
452 }
453 args = [
454 rebase_path(sksllex_path),
455 rebase_path("bin/clang-format"),
456 rebase_path("src"),
457 ]
458 }
459} else {
460 group("run_sksllex") {
461 }
462}
463
464if (skia_compile_processors) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400465 executable("skslc") {
466 defines = [ "SKSL_STANDALONE" ]
467 sources = [
468 "src/sksl/SkSLMain.cpp",
469 ]
470 sources += skia_sksl_sources
471 include_dirs = [
472 "src/gpu",
473 "src/sksl",
474 ]
475 deps = [
476 "//third_party/spirv-tools",
477 ]
478 }
479
480 skia_gpu_processor_outputs = []
481 foreach(src, skia_gpu_processor_sources) {
482 dir = get_path_info(src, "dir")
483 name = get_path_info(src, "name")
484
485 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
486 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
487 skia_gpu_processor_outputs += [
488 "$target_out_dir/" + rebase_path("$dir/$name.h", target_out_dir),
489 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
490 # confused due to the same file being named by two different paths
491 ]
492 }
493
494 action("compile_processors") {
495 script = "gn/compile_processors.py"
496 deps = [
497 ":skslc(//gn/toolchain:$host_toolchain)",
498 ]
499 sources = skia_gpu_processor_sources
500 outputs = skia_gpu_processor_outputs
501 skslc_path = "$root_out_dir/"
502 if (host_toolchain != default_toolchain_name) {
503 skslc_path += "$host_toolchain/"
504 }
505 skslc_path += "skslc"
506 if (host_os == "win") {
507 skslc_path += ".exe"
508 }
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400509 args = [
510 rebase_path(skslc_path),
Eric Borenb121be72017-07-28 10:00:51 -0400511 rebase_path("bin/clang-format"),
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400512 ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400513 args += rebase_path(skia_gpu_processor_sources)
514 }
515} else {
516 skia_gpu_processor_outputs = []
517 group("compile_processors") {
518 }
519}
520
mtklein06c35c02016-09-20 12:28:12 -0700521optional("gpu") {
522 enabled = skia_enable_gpu
Ethan Nicholas762466e2017-06-29 10:03:38 -0400523 deps = [
524 ":compile_processors",
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700525 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400526 ]
mtkleine9fb3d52016-09-20 15:11:46 -0700527 public_defines = []
528
Mike Klein29b3e582017-02-09 11:57:32 -0500529 sources = skia_gpu_sources + skia_sksl_sources +
Ethan Nicholas762466e2017-06-29 10:03:38 -0400530 [ "src/gpu/gl/GrGLDefaultInterface_native.cpp" ] +
531 skia_gpu_processor_outputs
mtklein06c35c02016-09-20 12:28:12 -0700532
533 # These paths need to be absolute to match the ones produced by shared_sources.gni.
534 sources -= get_path_info([
535 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
536 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
537 ],
538 "abspath")
Mike Klein703cf5a2016-10-13 17:18:04 -0400539 libs = []
mtklein06c35c02016-09-20 12:28:12 -0700540 if (is_android) {
541 sources += [ "src/gpu/gl/android/GrGLCreateNativeInterface_android.cpp" ]
Derek Sollenberger7a869872017-06-27 15:37:25 -0400542
543 # this lib is required to link against AHardwareBuffer
544 if (defined(ndk_api) && ndk_api >= 26) {
545 libs += [ "android" ]
546 }
Kevin Lubick4a24e102017-03-29 11:19:01 -0400547 } else if (skia_use_egl) {
548 sources += [ "src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp" ]
549 libs += [ "EGL" ]
mtklein06c35c02016-09-20 12:28:12 -0700550 } else if (is_linux) {
551 sources += [ "src/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -0500552 libs += [
553 "GL",
554 "GLU",
555 ]
mtklein06c35c02016-09-20 12:28:12 -0700556 } else if (is_mac) {
557 sources += [ "src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp" ]
Chinmay Garde130a1182016-11-23 11:43:56 -0800558 } else if (is_ios) {
559 sources += [ "src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400560 } else if (is_win) {
561 sources += [ "src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp" ]
562 libs += [ "OpenGL32.lib" ]
mtklein06c35c02016-09-20 12:28:12 -0700563 } else {
564 sources += [ "src/gpu/gl/GrGLCreateNativeInterface_none.cpp" ]
565 }
mtkleine9fb3d52016-09-20 15:11:46 -0700566
567 if (skia_use_vulkan) {
568 public_defines += [ "SK_VULKAN" ]
569 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700570 if (skia_enable_vulkan_debug_layers) {
571 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
572 }
mtkleine9fb3d52016-09-20 15:11:46 -0700573 }
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400574 if (skia_enable_spirv_validation) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400575 deps += [ "//third_party/spirv-tools" ]
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400576 public_defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
577 }
Greg Daniele5ddff52017-07-05 16:49:36 -0400578
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400579 cflags_objcc = []
Greg Daniele5ddff52017-07-05 16:49:36 -0400580 if (skia_use_metal) {
581 public_defines += [ "SK_METAL" ]
582 sources += skia_metal_sources
583 libs += [ "Metal.framework" ]
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400584 cflags_objcc += [ "-fobjc-arc" ]
Greg Daniele5ddff52017-07-05 16:49:36 -0400585 }
mtklein06c35c02016-09-20 12:28:12 -0700586}
587
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400588optional("heif") {
589 enabled = skia_use_libheif
590 public_defines = [ "SK_HAS_HEIF_LIBRARY" ]
591
592 deps = []
593
594 sources = [
595 "src/codec/SkHeifCodec.cpp",
596 ]
597}
598
mtklein63213812016-08-24 09:55:56 -0700599optional("jpeg") {
600 enabled = skia_use_libjpeg_turbo
601 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
602
mtklein63213812016-08-24 09:55:56 -0700603 deps = [
604 "//third_party/libjpeg-turbo:libjpeg",
605 ]
606 sources = [
607 "src/codec/SkJpegCodec.cpp",
608 "src/codec/SkJpegDecoderMgr.cpp",
609 "src/codec/SkJpegUtility.cpp",
mtklein63213812016-08-24 09:55:56 -0700610 "src/images/SkJPEGWriteUtility.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400611 "src/images/SkJpegEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700612 ]
613}
614
615optional("pdf") {
Hal Canary43fb7a02016-12-30 13:09:03 -0500616 enabled = skia_use_zlib && skia_enable_pdf
617 public_defines = [ "SK_SUPPORT_PDF" ]
mtklein63213812016-08-24 09:55:56 -0700618
mtklein63213812016-08-24 09:55:56 -0700619 deps = [
620 "//third_party/zlib",
621 ]
brettwb9447282016-09-01 14:24:39 -0700622 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -0700623 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
mtklein63213812016-08-24 09:55:56 -0700624
625 if (skia_use_sfntly) {
626 deps += [ "//third_party/sfntly" ]
Hal Canary43fb7a02016-12-30 13:09:03 -0500627 public_defines += [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -0700628 }
629}
630
631optional("png") {
632 enabled = skia_use_libpng
633 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
634
mtklein63213812016-08-24 09:55:56 -0700635 deps = [
636 "//third_party/libpng",
637 ]
638 sources = [
639 "src/codec/SkIcoCodec.cpp",
640 "src/codec/SkPngCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400641 "src/images/SkPngEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700642 ]
643}
644
scroggof84ad642016-10-31 09:02:57 -0700645optional("raw") {
Mike Klein10d665d2016-11-01 11:46:10 -0400646 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -0700647 public_defines = [ "SK_CODEC_DECODES_RAW" ]
648
649 deps = [
650 "//third_party/dng_sdk",
651 "//third_party/libjpeg-turbo:libjpeg",
652 "//third_party/piex",
653 ]
654
655 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
656 # Skia.
657 configs_to_remove = [ "//gn:no_exceptions" ]
658
659 sources = [
660 "src/codec/SkRawAdapterCodec.cpp",
661 "src/codec/SkRawCodec.cpp",
662 ]
663}
664
mtklein3cc22182016-08-29 13:26:14 -0700665optional("typeface_freetype") {
666 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -0700667
668 deps = [
669 "//third_party/freetype2",
670 ]
671 sources = [
672 "src/ports/SkFontHost_FreeType.cpp",
673 "src/ports/SkFontHost_FreeType_common.cpp",
674 ]
675}
676
mtklein457b42a2016-08-23 13:56:37 -0700677optional("webp") {
678 enabled = skia_use_libwebp
679 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
680
mtklein457b42a2016-08-23 13:56:37 -0700681 deps = [
682 "//third_party/libwebp",
683 ]
684 sources = [
685 "src/codec/SkWebpAdapterCodec.cpp",
686 "src/codec/SkWebpCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400687 "src/images/SkWebpEncoder.cpp",
mtklein457b42a2016-08-23 13:56:37 -0700688 ]
mtkleineb3c4252016-08-23 07:38:09 -0700689}
690
mtklein63213812016-08-24 09:55:56 -0700691optional("xml") {
692 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +0000693 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -0700694
mtklein63213812016-08-24 09:55:56 -0700695 deps = [
696 "//third_party/expat",
697 ]
698 sources = [
Mike Kleinbd41bcc2017-02-09 16:38:15 -0500699 "src/svg/SkSVGCanvas.cpp",
700 "src/svg/SkSVGDevice.cpp",
mtklein63213812016-08-24 09:55:56 -0700701 "src/xml/SkDOM.cpp",
702 "src/xml/SkXMLParser.cpp",
703 "src/xml/SkXMLWriter.cpp",
704 ]
705}
706
mtkleinc04ff472016-06-23 10:29:30 -0700707component("skia") {
708 public_configs = [ ":skia_public" ]
709 configs += skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -0700710
711 deps = [
anmittalb8b3f712016-08-25 04:55:19 -0700712 ":arm64",
713 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -0700714 ":avx",
anmittalb8b3f712016-08-25 04:55:19 -0700715 ":crc32",
Mike Kleina04bb452017-02-09 12:24:07 -0500716 ":effects",
mtkleina45be612016-08-29 15:22:10 -0700717 ":fontmgr_android",
mtkleind2e39db2016-09-07 07:52:55 -0700718 ":fontmgr_custom",
mtklein3cc22182016-08-29 13:26:14 -0700719 ":fontmgr_fontconfig",
mtkleincdedd0e2016-09-12 15:15:44 -0700720 ":fontmgr_fuchsia",
mtklein06c35c02016-09-20 12:28:12 -0700721 ":gpu",
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400722 ":heif",
mtklein63213812016-08-24 09:55:56 -0700723 ":jpeg",
mtklein9b8583d2016-08-24 17:32:30 -0700724 ":none",
mtklein63213812016-08-24 09:55:56 -0700725 ":pdf",
726 ":png",
scroggof84ad642016-10-31 09:02:57 -0700727 ":raw",
mtklein9b8583d2016-08-24 17:32:30 -0700728 ":sse2",
729 ":sse41",
730 ":sse42",
731 ":ssse3",
mtkleineb3c4252016-08-23 07:38:09 -0700732 ":webp",
mtklein63213812016-08-24 09:55:56 -0700733 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -0700734 ]
735
Chinmay Garde43f115c2016-11-16 15:04:12 -0800736 # This file (and all GN files in Skia) are designed to work with an
737 # empty sources assignment filter; we handle all that explicitly.
738 # We clear the filter here for clients who may have set up a global filter.
739 set_sources_assignment_filter([])
740
mtkleinc04ff472016-06-23 10:29:30 -0700741 sources = []
brettwb9447282016-09-01 14:24:39 -0700742 sources += skia_core_sources
brettwb9447282016-09-01 14:24:39 -0700743 sources += skia_utils_sources
Hal Canary6ad3d2f2016-12-20 16:15:56 -0500744 sources += skia_xps_sources
mtkleinc04ff472016-06-23 10:29:30 -0700745 sources += [
Stan Iliev73d8fd92017-08-02 15:36:24 -0400746 "src/android/SkAndroidFrameworkUtils.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700747 "src/android/SkBitmapRegionCodec.cpp",
748 "src/android/SkBitmapRegionDecoder.cpp",
749 "src/codec/SkAndroidCodec.cpp",
Leon Scroggins IIId81fed92017-06-01 13:42:28 -0400750 "src/codec/SkBmpBaseCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700751 "src/codec/SkBmpCodec.cpp",
752 "src/codec/SkBmpMaskCodec.cpp",
753 "src/codec/SkBmpRLECodec.cpp",
754 "src/codec/SkBmpStandardCodec.cpp",
755 "src/codec/SkCodec.cpp",
756 "src/codec/SkCodecImageGenerator.cpp",
scroggo19b91532016-10-24 09:03:26 -0700757 "src/codec/SkGifCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700758 "src/codec/SkMaskSwizzler.cpp",
759 "src/codec/SkMasks.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700760 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700761 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -0700762 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700763 "src/codec/SkSwizzler.cpp",
764 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700765 "src/images/SkImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700766 "src/ports/SkDiscardableMemory_none.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700767 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700768 "src/ports/SkMemory_malloc.cpp",
769 "src/ports/SkOSFile_stdio.cpp",
770 "src/sfnt/SkOTTable_name.cpp",
771 "src/sfnt/SkOTUtils.cpp",
772 "src/utils/mac/SkStream_mac.cpp",
scroggo3d3a65c2016-10-24 12:28:30 -0700773 "third_party/gif/SkGifImageReader.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700774 ]
brettwb9447282016-09-01 14:24:39 -0700775
mtklein7d6fb2c2016-08-25 14:50:44 -0700776 libs = []
777
mtkleinc04ff472016-06-23 10:29:30 -0700778 if (is_win) {
779 sources += [
Mike Kleinae7e6712016-10-11 17:49:33 -0400780 "src/fonts/SkFontMgr_indirect.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700781 "src/ports/SkDebug_win.cpp",
782 "src/ports/SkFontHost_win.cpp",
783 "src/ports/SkFontMgr_win_dw.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700784 "src/ports/SkImageEncoder_WIC.cpp",
785 "src/ports/SkImageGeneratorWIC.cpp",
786 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -0700787 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700788 "src/ports/SkScalerContext_win_dw.cpp",
789 "src/ports/SkTLS_win.cpp",
790 "src/ports/SkTypeface_win_dw.cpp",
791 ]
Mike Klein69f6ed42016-10-13 15:45:07 -0400792 if (skia_use_gdi) {
793 sources += [ "src/ports/SkFontMgr_win_gdi_factory.cpp" ]
794 libs += [
795 "Gdi32.lib",
796 "Usp10.lib",
797 ]
798 } else {
799 sources += [ "src/ports/SkFontMgr_win_dw_factory.cpp" ]
800 }
mtkleinb9be9792016-09-16 14:44:18 -0700801 sources -=
802 [ get_path_info("src/utils/SkThreadUtils_pthread.cpp", "abspath") ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400803 libs += [
804 "FontSub.lib",
805 "Ole32.lib",
806 "OleAut32.lib",
807 "User32.lib",
808 ]
mtkleinc04ff472016-06-23 10:29:30 -0700809 } else {
810 sources += [
mtkleinc04ff472016-06-23 10:29:30 -0700811 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -0700812 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700813 "src/ports/SkTLS_pthread.cpp",
814 ]
Ben Wagnerbe6ae5b2017-08-31 16:45:23 -0400815 libs += [ "dl" ]
mtkleinc04ff472016-06-23 10:29:30 -0700816 }
817
mtklein7d6fb2c2016-08-25 14:50:44 -0700818 if (is_android) {
Mike Klein1c471872017-01-13 15:27:45 -0500819 deps += [ "//third_party/expat" ]
Mike Kleine459afd2017-03-03 09:21:30 -0500820 if (defined(ndk) && ndk != "") {
Mike Klein1c471872017-01-13 15:27:45 -0500821 deps += [ "//third_party/cpu-features" ]
822 }
mtklein06c35c02016-09-20 12:28:12 -0700823 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -0700824 libs += [
825 "EGL",
826 "GLESv2",
827 "log",
828 ]
829 }
830
mtkleinc04ff472016-06-23 10:29:30 -0700831 if (is_linux) {
mtklein06c35c02016-09-20 12:28:12 -0700832 sources += [ "src/ports/SkDebug_stdio.cpp" ]
mtkleinc04ff472016-06-23 10:29:30 -0700833 }
834
835 if (is_mac) {
836 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -0700837 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700838 "src/ports/SkFontHost_mac.cpp",
839 "src/ports/SkImageEncoder_CG.cpp",
840 "src/ports/SkImageGeneratorCG.cpp",
841 ]
mtklein09e61f72016-08-23 13:35:28 -0700842 libs += [
bungeman3e306f62017-03-29 11:32:02 -0400843 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
844 "AppKit.framework",
mtklein09e61f72016-08-23 13:35:28 -0700845 "ApplicationServices.framework",
846 "OpenGL.framework",
847 ]
mtkleinc04ff472016-06-23 10:29:30 -0700848 }
abarth6fc8ff02016-07-15 15:15:15 -0700849
Mike Klein7d302882016-11-03 14:06:31 -0400850 if (is_ios) {
851 sources += [
852 "src/ports/SkDebug_stdio.cpp",
853 "src/ports/SkFontHost_mac.cpp",
854 "src/ports/SkImageEncoder_CG.cpp",
855 "src/ports/SkImageGeneratorCG.cpp",
856 ]
857 libs += [
858 "CoreFoundation.framework",
859 "CoreGraphics.framework",
860 "CoreText.framework",
861 "ImageIO.framework",
862 "MobileCoreServices.framework",
bungeman3e306f62017-03-29 11:32:02 -0400863
864 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
865 "UIKit.framework",
Mike Klein7d302882016-11-03 14:06:31 -0400866 ]
867 }
868
abarth6fc8ff02016-07-15 15:15:15 -0700869 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -0700870 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -0700871 }
mtkleinc04ff472016-06-23 10:29:30 -0700872}
873
mtkleinc095df52016-08-24 12:23:52 -0700874# Targets guarded by skia_enable_tools may use //third_party freely.
875if (skia_enable_tools) {
Mike Klein308b5ac2016-12-06 16:03:52 -0500876 # Used by gn_to_bp.py to list our public include dirs.
877 source_set("public") {
878 configs += [ ":skia_public" ]
879 }
880
Mike Kleinc36dedf2016-11-18 09:35:28 -0500881 config("skia.h_config") {
882 include_dirs = [ "$target_gen_dir" ]
883 }
884 action("skia.h") {
885 public_configs = [ ":skia.h_config" ]
886 skia_h = "$target_gen_dir/skia.h"
887 script = "gn/find_headers.py"
Greg Danielc819e662017-04-19 16:39:45 -0400888 args = [ rebase_path(skia_h, root_build_dir) ] +
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000889 rebase_path(skia_public_includes)
Mike Kleinc36dedf2016-11-18 09:35:28 -0500890 depfile = "$skia_h.deps"
891 outputs = [
892 skia_h,
893 ]
894 }
895
896 if (skia_enable_gpu && target_cpu == "x64") {
897 # Our bots only have 64-bit libOSMesa installed.
898 # TODO: worth fixing?
899 executable("fiddle") {
900 libs = []
Mike Kleinc36dedf2016-11-18 09:35:28 -0500901 sources = [
Mike Kleinc36dedf2016-11-18 09:35:28 -0500902 "tools/fiddle/draw.cpp",
903 "tools/fiddle/fiddle_main.cpp",
904 ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -0400905
906 if (skia_use_egl) {
907 sources += [ "tools/fiddle/egl_context.cpp" ]
908 } else if (skia_use_mesa) {
909 sources += [ "tools/fiddle/mesa_context.cpp" ]
910 if (is_linux) {
911 libs += [ "OSMesa" ]
912 }
913 } else {
914 sources += [ "tools/fiddle/null_context.cpp" ]
915 }
Joe Gregorio1e735c02017-04-19 14:05:14 -0400916 testonly = true
Mike Kleinc36dedf2016-11-18 09:35:28 -0500917 deps = [
Joe Gregorio1e735c02017-04-19 14:05:14 -0400918 ":flags",
Mike Kleinc36dedf2016-11-18 09:35:28 -0500919 ":skia",
920 ":skia.h",
921 ]
922 }
923 }
924
925 if (skia_enable_gpu) {
926 source_set("public_headers_warnings_check") {
927 sources = [
928 "tools/public_headers_warnings_check.cpp",
929 ]
930 configs -= [ "//gn:warnings_except_public_headers" ]
931 deps = [
932 ":skia",
933 ":skia.h",
934 ]
935 }
936 }
937
mtkleinc095df52016-08-24 12:23:52 -0700938 template("test_lib") {
939 config(target_name + "_config") {
940 include_dirs = invoker.public_include_dirs
mtkleina627b5c2016-09-20 13:36:47 -0700941 if (defined(invoker.public_defines)) {
942 defines = invoker.public_defines
943 }
mtklein25c81d42016-07-27 13:55:26 -0700944 }
mtkleinc095df52016-08-24 12:23:52 -0700945 source_set(target_name) {
946 forward_variables_from(invoker, "*", [ "public_include_dirs" ])
947 public_configs = [
948 ":" + target_name + "_config",
949 ":skia_private",
950 ]
951
952 if (!defined(deps)) {
953 deps = []
954 }
955 deps += [ ":skia" ]
956 testonly = true
957 }
mtklein25c81d42016-07-27 13:55:26 -0700958 }
mtklein25c81d42016-07-27 13:55:26 -0700959
Mike Kleine6682eb2017-01-05 10:54:57 -0500960 template("test_app") {
961 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
962 shared_library("lib" + target_name) {
963 forward_variables_from(invoker, "*", [ "is_shared_library" ])
Mike Klein154e6da2017-07-26 15:13:47 -0400964 configs += [ ":skia_private" ]
Mike Kleine6682eb2017-01-05 10:54:57 -0500965 testonly = true
966 }
967 } else {
Mike Klein7d921032017-01-05 12:20:41 -0500968 _executable = target_name
969 executable(_executable) {
Mike Kleine6682eb2017-01-05 10:54:57 -0500970 forward_variables_from(invoker, "*", [ "is_shared_library" ])
Mike Klein154e6da2017-07-26 15:13:47 -0400971 configs += [ ":skia_private" ]
Mike Kleine6682eb2017-01-05 10:54:57 -0500972 testonly = true
973 }
974 }
Mike Klein7d921032017-01-05 12:20:41 -0500975 if (is_android && skia_android_serial != "" && defined(_executable)) {
976 action("push_" + target_name) {
977 script = "gn/push_to_android.py"
978 deps = [
979 ":" + _executable,
980 ]
981 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
982 outputs = [
983 _stamp,
984 ]
985 args = [
986 rebase_path("$root_build_dir/$_executable"),
987 skia_android_serial,
988 rebase_path(_stamp),
989 ]
990 testonly = true
991 }
992 }
Mike Kleine6682eb2017-01-05 10:54:57 -0500993 }
994
mtkleinc095df52016-08-24 12:23:52 -0700995 test_lib("gpu_tool_utils") {
mtklein38925aa2016-09-21 10:11:25 -0700996 public_include_dirs = []
997 if (skia_enable_gpu) {
998 public_defines = []
999 public_include_dirs += [ "tools/gpu" ]
mtkleind68f9b02016-09-23 13:18:41 -07001000
1001 deps = []
mtklein38925aa2016-09-21 10:11:25 -07001002 sources = [
1003 "tools/gpu/GrContextFactory.cpp",
1004 "tools/gpu/GrTest.cpp",
1005 "tools/gpu/TestContext.cpp",
1006 "tools/gpu/gl/GLTestContext.cpp",
mtklein605d9522016-09-21 14:01:32 -07001007 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001008 "tools/gpu/gl/debug/DebugGLTestContext.cpp",
1009 "tools/gpu/gl/debug/GrBufferObj.cpp",
1010 "tools/gpu/gl/debug/GrFrameBufferObj.cpp",
1011 "tools/gpu/gl/debug/GrProgramObj.cpp",
1012 "tools/gpu/gl/debug/GrShaderObj.cpp",
1013 "tools/gpu/gl/debug/GrTextureObj.cpp",
1014 "tools/gpu/gl/debug/GrTextureUnitObj.cpp",
1015 "tools/gpu/gl/null/NullGLTestContext.cpp",
Brian Salomoncfe910d2017-07-06 16:40:18 -04001016 "tools/gpu/mock/MockTestContext.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001017 ]
1018 libs = []
mtklein25c81d42016-07-27 13:55:26 -07001019
Kevin Lubick4a24e102017-03-29 11:19:01 -04001020 if (is_android || skia_use_egl) {
mtklein38925aa2016-09-21 10:11:25 -07001021 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
Mike Klein7d302882016-11-03 14:06:31 -04001022 } else if (is_ios) {
1023 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
1024 libs += [ "OpenGLES.framework" ]
mtklein38925aa2016-09-21 10:11:25 -07001025 } else if (is_linux) {
1026 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -05001027 libs += [ "X11" ]
mtklein38925aa2016-09-21 10:11:25 -07001028 } else if (is_mac) {
1029 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
Mike Klein4b167fc2016-10-11 18:13:53 -04001030 } else if (is_win) {
1031 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
1032 libs += [
1033 "Gdi32.lib",
1034 "OpenGL32.lib",
1035 ]
mtklein38925aa2016-09-21 10:11:25 -07001036 }
mtklein6ef69992016-09-14 06:12:09 -07001037
Greg Daniel6b7e0e22017-07-12 16:21:09 -04001038 cflags_objcc = [ "-fobjc-arc" ]
1039
Mike Kleinc168a3a2016-11-14 14:53:13 +00001040 if (skia_use_angle) {
Mike Kleinc168a3a2016-11-14 14:53:13 +00001041 deps += [ "//third_party/angle2" ]
1042 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
1043 }
mtklein38925aa2016-09-21 10:11:25 -07001044 if (skia_use_mesa) {
1045 public_defines += [ "SK_MESA" ]
1046 sources += [ "tools/gpu/gl/mesa/GLTestContext_mesa.cpp" ]
1047 libs += [ "OSMesa" ]
1048 }
mtkleind68f9b02016-09-23 13:18:41 -07001049 if (skia_use_vulkan) {
1050 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
Brian Salomon5db010b2017-04-25 16:05:29 -04001051 if (is_win) {
1052 libs += [ "vulkan-1.lib" ]
1053 } else {
1054 libs += [ "vulkan" ]
1055 }
mtkleind68f9b02016-09-23 13:18:41 -07001056 }
Greg Danielb76a72a2017-07-13 15:07:54 -04001057 if (skia_use_metal) {
1058 sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
1059 }
mtkleina627b5c2016-09-20 13:36:47 -07001060 }
mtklein25c81d42016-07-27 13:55:26 -07001061 }
mtklein25c81d42016-07-27 13:55:26 -07001062
mtkleinc095df52016-08-24 12:23:52 -07001063 test_lib("flags") {
1064 public_include_dirs = [ "tools/flags" ]
1065 sources = [
1066 "tools/flags/SkCommandLineFlags.cpp",
mtklein046cb562016-09-16 10:23:12 -07001067 ]
1068 }
1069 test_lib("common_flags") {
1070 public_include_dirs = [ "tools/flags" ]
1071 sources = [
mtkleinc095df52016-08-24 12:23:52 -07001072 "tools/flags/SkCommonFlags.cpp",
1073 "tools/flags/SkCommonFlagsConfig.cpp",
1074 ]
1075 deps = [
mtklein046cb562016-09-16 10:23:12 -07001076 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001077 ":gpu_tool_utils",
1078 ]
1079 }
mtklein25c81d42016-07-27 13:55:26 -07001080
mtkleinc095df52016-08-24 12:23:52 -07001081 test_lib("tool_utils") {
1082 public_include_dirs = [
1083 "tools",
1084 "tools/debugger",
1085 "tools/timer",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001086 "tools/trace",
mtkleinc095df52016-08-24 12:23:52 -07001087 ]
1088 sources = [
mtkleinb37c0342016-09-09 11:07:45 -07001089 "tools/AndroidSkDebugToStdOut.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001090 "tools/CrashHandler.cpp",
mtklein0590fa52016-09-01 07:06:54 -07001091 "tools/LsanSuppressions.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001092 "tools/ProcStats.cpp",
1093 "tools/Resources.cpp",
1094 "tools/ThermalManager.cpp",
1095 "tools/UrlDataManager.cpp",
1096 "tools/debugger/SkDebugCanvas.cpp",
1097 "tools/debugger/SkDrawCommand.cpp",
1098 "tools/debugger/SkJsonWriteBuffer.cpp",
1099 "tools/debugger/SkObjectParser.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001100 "tools/picture_utils.cpp",
1101 "tools/random_parse_path.cpp",
1102 "tools/sk_tool_utils.cpp",
1103 "tools/sk_tool_utils_font.cpp",
1104 "tools/timer/Timer.cpp",
Brian Osman53136aa2017-07-20 15:43:35 -04001105 "tools/trace/SkChromeTracingTracer.cpp",
1106 "tools/trace/SkChromeTracingTracer.h",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001107 "tools/trace/SkDebugfTracer.cpp",
1108 "tools/trace/SkDebugfTracer.h",
Brian Osman53136aa2017-07-20 15:43:35 -04001109 "tools/trace/SkEventTracingPriv.cpp",
1110 "tools/trace/SkEventTracingPriv.h",
mtkleinc095df52016-08-24 12:23:52 -07001111 ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001112 libs = []
1113 if (is_ios) {
1114 sources += [ "tools/ios_utils.m" ]
1115 libs += [ "Foundation.framework" ]
1116 }
mtkleinc095df52016-08-24 12:23:52 -07001117 deps = [
mtklein046cb562016-09-16 10:23:12 -07001118 ":common_flags",
mtkleinc095df52016-08-24 12:23:52 -07001119 ":flags",
1120 "//third_party/libpng",
1121 ]
1122 public_deps = [
1123 "//third_party/jsoncpp",
1124 ]
1125 }
mtklein25c81d42016-07-27 13:55:26 -07001126
Mike Klein6e744122016-10-27 12:21:40 -04001127 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -07001128 test_lib("gm") {
1129 public_include_dirs = [ "gm" ]
1130 sources = gm_sources
1131 deps = [
scroggo19b91532016-10-24 09:03:26 -07001132 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001133 ":gpu_tool_utils",
1134 ":skia",
1135 ":tool_utils",
1136 ]
1137 }
mtklein25c81d42016-07-27 13:55:26 -07001138
Mike Klein6e744122016-10-27 12:21:40 -04001139 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07001140 test_lib("tests") {
1141 public_include_dirs = [ "tests" ]
Mike Klein6e744122016-10-27 12:21:40 -04001142 sources = tests_sources + pathops_tests_sources
mtkleina45be612016-08-29 15:22:10 -07001143 if (!fontmgr_android_enabled) {
Mike Klein6e744122016-10-27 12:21:40 -04001144 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -07001145 }
mtkleinc095df52016-08-24 12:23:52 -07001146 deps = [
fmalita6cf896d2016-08-25 08:44:35 -07001147 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001148 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001149 ":skia",
1150 ":tool_utils",
1151 "//third_party/libpng",
1152 "//third_party/zlib",
1153 ]
Mike Kleind63442d2017-03-27 14:16:04 -04001154 public_deps = [
1155 ":gpu_tool_utils", # Test.h #includes headers from this target.
1156 ]
mtkleinc095df52016-08-24 12:23:52 -07001157 }
mtklein2f3416d2016-08-02 16:02:05 -07001158
Mike Klein6e744122016-10-27 12:21:40 -04001159 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07001160 test_lib("bench") {
1161 public_include_dirs = [ "bench" ]
1162 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -07001163 deps = [
1164 ":flags",
1165 ":gm",
1166 ":gpu_tool_utils",
1167 ":skia",
1168 ":tool_utils",
1169 ]
1170 }
mtklein2b6870c2016-07-28 14:17:33 -07001171
mtkleinc095df52016-08-24 12:23:52 -07001172 test_lib("experimental_svg_model") {
1173 public_include_dirs = [ "experimental/svg/model" ]
1174 sources = [
1175 "experimental/svg/model/SkSVGAttribute.cpp",
1176 "experimental/svg/model/SkSVGAttributeParser.cpp",
1177 "experimental/svg/model/SkSVGCircle.cpp",
Florin Malitace8840e2016-12-08 09:26:47 -05001178 "experimental/svg/model/SkSVGClipPath.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001179 "experimental/svg/model/SkSVGContainer.cpp",
1180 "experimental/svg/model/SkSVGDOM.cpp",
1181 "experimental/svg/model/SkSVGEllipse.cpp",
Florin Malitadf007e12017-10-09 15:14:13 -04001182 "experimental/svg/model/SkSVGGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001183 "experimental/svg/model/SkSVGLine.cpp",
fmalita28d5b722016-09-12 17:06:47 -07001184 "experimental/svg/model/SkSVGLinearGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001185 "experimental/svg/model/SkSVGNode.cpp",
1186 "experimental/svg/model/SkSVGPath.cpp",
Florin Malita1aa1bb62017-10-11 14:34:33 -04001187 "experimental/svg/model/SkSVGPattern.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001188 "experimental/svg/model/SkSVGPoly.cpp",
Florin Malitacc6cc292017-10-09 16:05:30 -04001189 "experimental/svg/model/SkSVGRadialGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001190 "experimental/svg/model/SkSVGRect.cpp",
1191 "experimental/svg/model/SkSVGRenderContext.cpp",
1192 "experimental/svg/model/SkSVGSVG.cpp",
1193 "experimental/svg/model/SkSVGShape.cpp",
fmalita28d5b722016-09-12 17:06:47 -07001194 "experimental/svg/model/SkSVGStop.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001195 "experimental/svg/model/SkSVGTransformableNode.cpp",
Florin Malita6a69c052017-10-11 14:02:11 -04001196 "experimental/svg/model/SkSVGUse.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001197 "experimental/svg/model/SkSVGValue.cpp",
1198 ]
1199 deps = [
1200 ":skia",
1201 ]
1202 }
fmalitaa2b9fdf2016-08-03 19:53:36 -07001203
Kevin Lubickebf648e2017-09-21 13:45:16 -04001204 if (target_cpu != "wasm") {
1205 test_lib("views") {
1206 public_include_dirs = [ "include/views" ]
1207 sources = [
1208 "src/views/SkEvent.cpp",
1209 "src/views/SkEventSink.cpp",
1210 "src/views/SkOSMenu.cpp",
1211 "src/views/SkTagList.cpp",
1212 "src/views/SkTouchGesture.cpp",
1213 "src/views/SkView.cpp",
1214 "src/views/SkViewPriv.cpp",
Brian Osman2dd96932016-10-18 15:33:53 -04001215 ]
Kevin Lubickebf648e2017-09-21 13:45:16 -04001216 libs = []
1217 deps = []
1218 if (!is_android) {
1219 sources += [ "src/views/SkWindow.cpp" ]
1220 }
1221 if (is_linux) {
1222 public_include_dirs += [ "src/views/unix" ]
1223 sources += [
1224 "src/views/unix/SkOSWindow_Unix.cpp",
1225 "src/views/unix/keysym2ucs.c",
1226 ]
1227 libs += [
1228 "GL",
1229 "X11",
1230 ]
1231 } else if (is_mac) {
1232 sources += [
1233 "src/views/mac/SkEventNotifier.mm",
1234 "src/views/mac/SkNSView.mm",
1235 "src/views/mac/SkOSWindow_Mac.mm",
1236 "src/views/mac/SkTextFieldCell.m",
1237 ]
1238 libs += [
1239 "QuartzCore.framework",
1240 "Cocoa.framework",
1241 "Foundation.framework",
1242 ]
1243 } else if (is_win) {
1244 sources += [ "src/views/win/SkOSWindow_win.cpp" ]
1245 } else if (is_ios) {
1246 sources += [ "src/views/mac/SkEventNotifier.mm" ]
1247 }
1248 if (skia_use_angle) {
1249 deps += [ "//third_party/angle2" ]
1250 }
Brian Osman34755e22016-12-05 09:46:02 -05001251 }
Brian Osman16adfa32016-10-18 14:42:44 -04001252 }
1253
Mike Klein38af9432016-11-11 11:39:44 -05001254 if (skia_use_lua) {
1255 test_lib("lua") {
1256 public_include_dirs = []
1257 sources = [
1258 "src/utils/SkLua.cpp",
1259 "src/utils/SkLuaCanvas.cpp",
1260 ]
1261 deps = [
1262 "//third_party/lua",
1263 ]
1264 }
1265
Mike Kleine6682eb2017-01-05 10:54:57 -05001266 test_app("lua_app") {
Mike Klein38af9432016-11-11 11:39:44 -05001267 sources = [
1268 "tools/lua/lua_app.cpp",
1269 ]
1270 deps = [
1271 ":lua",
1272 ":skia",
1273 "//third_party/lua",
1274 ]
Mike Klein38af9432016-11-11 11:39:44 -05001275 }
1276
Mike Kleine6682eb2017-01-05 10:54:57 -05001277 test_app("lua_pictures") {
Mike Klein38af9432016-11-11 11:39:44 -05001278 sources = [
1279 "tools/lua/lua_pictures.cpp",
1280 ]
1281 deps = [
1282 ":flags",
1283 ":lua",
1284 ":skia",
1285 ":tool_utils",
1286 "//third_party/lua",
1287 ]
Mike Klein38af9432016-11-11 11:39:44 -05001288 }
1289 }
1290
Cary Clark8032b982017-07-28 11:04:54 -04001291 test_app("bookmaker") {
1292 sources = [
1293 "tools/bookmaker/bookmaker.cpp",
1294 "tools/bookmaker/fiddleParser.cpp",
1295 "tools/bookmaker/includeParser.cpp",
1296 "tools/bookmaker/includeWriter.cpp",
1297 "tools/bookmaker/mdOut.cpp",
1298 "tools/bookmaker/parserCommon.cpp",
1299 "tools/bookmaker/spellCheck.cpp",
1300 ]
1301 deps = [
1302 ":flags",
1303 ":skia",
1304 ":tool_utils",
1305 ]
1306 }
1307
Kevin Lubickebf648e2017-09-21 13:45:16 -04001308 if (target_cpu != "wasm") {
1309 import("gn/samples.gni")
1310 test_lib("samples") {
1311 public_include_dirs = [ "samplecode" ]
1312 include_dirs = [ "experimental" ]
1313 sources = samples_sources + [
1314 "experimental/SkSetPoly3To3.cpp",
1315 "experimental/SkSetPoly3To3_A.cpp",
1316 "experimental/SkSetPoly3To3_D.cpp",
Brian Osmancff94e42017-06-26 13:12:37 -04001317
Kevin Lubickebf648e2017-09-21 13:45:16 -04001318 # Relocating these files here, so that clients don't try to build them while they're
1319 # still in active development. Clang's thread safety analysis gets tripped up by
1320 # conditional locks.
1321 "src/core/SkThreadedBMPDevice.cpp",
1322 "src/core/SkThreadedBMPDevice.h",
1323 ]
1324 deps = [
1325 ":experimental_svg_model",
1326 ":flags",
1327 ":gm",
1328 ":tool_utils",
1329 ":views",
1330 ":xml",
1331 ]
Mike Klein38af9432016-11-11 11:39:44 -05001332
Kevin Lubickebf648e2017-09-21 13:45:16 -04001333 if (skia_use_lua) {
1334 sources += [ "samplecode/SampleLua.cpp" ]
1335 deps += [
1336 ":lua",
1337 "//third_party/lua",
1338 ]
1339 }
1340 }
1341 test_app("dm") {
1342 sources = [
1343 "dm/DM.cpp",
Hal Canaryb6c5e5b2017-10-09 16:13:02 -04001344 "dm/DMGpuTestProcs.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001345 "dm/DMJsonWriter.cpp",
1346 "dm/DMSrcSink.cpp",
1347 ]
1348 include_dirs = [ "tests" ]
1349 deps = [
1350 ":common_flags",
1351 ":experimental_svg_model",
1352 ":flags",
1353 ":gm",
1354 ":gpu_tool_utils",
1355 ":skia",
1356 ":tests",
1357 ":tool_utils",
1358 "//third_party/jsoncpp",
1359 "//third_party/libpng",
Mike Klein38af9432016-11-11 11:39:44 -05001360 ]
1361 }
Brian Osman16adfa32016-10-18 14:42:44 -04001362 }
1363
Mike Klein06432b22017-03-21 13:14:33 -04001364 test_app("ok") {
1365 sources = [
1366 "tools/ok.cpp",
Mike Klein7ac04832017-03-25 11:29:41 -04001367 "tools/ok_dsts.cpp",
Mike Klein154e6da2017-07-26 15:13:47 -04001368 "tools/ok_engines.cpp",
Mike Klein7ac04832017-03-25 11:29:41 -04001369 "tools/ok_srcs.cpp",
Mike Kleind63442d2017-03-27 14:16:04 -04001370 "tools/ok_test.cpp",
Mike Kleinf5d1a552017-03-25 12:32:22 -04001371 "tools/ok_vias.cpp",
Mike Klein06432b22017-03-21 13:14:33 -04001372 ]
1373 deps = [
Mike Klein4f6e2712017-08-11 10:37:35 -04001374 ":bench",
Mike Klein06432b22017-03-21 13:14:33 -04001375 ":gm",
1376 ":skia",
Mike Kleind63442d2017-03-27 14:16:04 -04001377 ":tests",
Mike Klein62669ad2017-05-09 16:03:07 -04001378 ":tool_utils",
Mike Klein06432b22017-03-21 13:14:33 -04001379 ]
1380 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001381 test_app("nanobench") {
mtklein2b6870c2016-07-28 14:17:33 -07001382 sources = [
1383 "bench/nanobench.cpp",
1384 ]
1385 deps = [
1386 ":bench",
mtklein046cb562016-09-16 10:23:12 -07001387 ":common_flags",
fmalita6519c212016-09-14 08:05:17 -07001388 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001389 ":flags",
1390 ":gm",
1391 ":gpu_tool_utils",
1392 ":skia",
1393 ":tool_utils",
1394 "//third_party/jsoncpp",
1395 ]
mtklein2b6870c2016-07-28 14:17:33 -07001396 }
halcanary19a97202016-08-03 15:08:04 -07001397
Ravi Mistry10d36c52017-01-31 09:49:18 -05001398 test_app("skpinfo") {
1399 sources = [
1400 "tools/skpinfo.cpp",
1401 ]
1402 deps = [
1403 ":flags",
1404 ":skia",
1405 ]
1406 }
1407
Jim Van Verth57a98fc2016-10-28 13:35:50 -04001408 if (is_linux || is_win || is_mac) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001409 test_app("SampleApp") {
mtklein38925aa2016-09-21 10:11:25 -07001410 sources = [
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001411 "samplecode/SampleApp.cpp",
1412 "samplecode/SamplePictFile.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001413 ]
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001414 if (is_mac) {
1415 sources += [ "src/views/mac/skia_mac.mm" ]
1416 } else if (is_win) {
1417 sources += [ "src/views/win/skia_win.cpp" ]
1418 } else if (is_linux) {
1419 sources += [ "src/views/unix/skia_unix.cpp" ]
1420 }
mtklein38925aa2016-09-21 10:11:25 -07001421 deps = [
1422 ":flags",
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001423 ":gm",
mtklein38925aa2016-09-21 10:11:25 -07001424 ":gpu_tool_utils",
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001425 ":samples",
mtklein38925aa2016-09-21 10:11:25 -07001426 ":skia",
1427 ":tool_utils",
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001428 ":views",
mtklein38925aa2016-09-21 10:11:25 -07001429 ]
Mike Kleinc168a3a2016-11-14 14:53:13 +00001430 if (skia_use_angle) {
1431 deps += [ "//third_party/angle2" ]
1432 }
mtklein38925aa2016-09-21 10:11:25 -07001433 }
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001434 }
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001435
Jim Van Verthc1720d42017-10-09 10:16:01 -04001436 if (skia_enable_gpu && !skia_use_angle && (is_linux || is_win || is_mac)) {
1437 test_app("HelloWorld") {
1438 sources = [
1439 "example/HelloWorld.cpp",
1440 ]
1441 if (is_mac) {
1442 sources += [ "src/views/mac/skia_mac.mm" ]
1443 } else if (is_win) {
1444 sources += [ "src/views/win/skia_win.cpp" ]
1445 } else if (is_linux) {
1446 sources += [ "src/views/unix/skia_unix.cpp" ]
1447 }
1448 deps = [
1449 ":gpu_tool_utils",
1450 ":skia",
1451 ":views",
1452 ]
1453 }
1454 }
1455
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001456 if (skia_enable_gpu) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001457 test_app("skpbench") {
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001458 sources = [
1459 "tools/skpbench/skpbench.cpp",
1460 ]
1461 deps = [
1462 ":flags",
1463 ":gpu_tool_utils",
1464 ":skia",
1465 ":tool_utils",
1466 ]
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001467 }
csmartdalton4b5179b2016-09-19 11:03:58 -07001468 }
1469
Mike Klein7d302882016-11-03 14:06:31 -04001470 # We can't yet build ICU on iOS or Windows.
Kevin Lubickebf648e2017-09-21 13:45:16 -04001471 if (!is_ios && !is_win && target_cpu != "wasm") {
Mike Kleine6682eb2017-01-05 10:54:57 -05001472 test_app("sktexttopdf-hb") {
mtklein6f5df6a2016-08-29 16:01:10 -07001473 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001474 "tools/shape/SkShaper_harfbuzz.cpp",
1475 "tools/shape/using_skia_and_harfbuzz.cpp",
mtklein6f5df6a2016-08-29 16:01:10 -07001476 ]
1477 deps = [
1478 ":skia",
1479 "//third_party/harfbuzz",
Ben Wagnera25fbef2017-08-30 13:56:19 -04001480 "//third_party/icu",
mtklein6f5df6a2016-08-29 16:01:10 -07001481 ]
mtklein6f5df6a2016-08-29 16:01:10 -07001482 }
halcanary19a97202016-08-03 15:08:04 -07001483 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001484 test_app("sktexttopdf") {
halcanary3eee9d92016-09-10 07:01:53 -07001485 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001486 "tools/shape/SkShaper_primitive.cpp",
1487 "tools/shape/using_skia_and_harfbuzz.cpp",
halcanary3eee9d92016-09-10 07:01:53 -07001488 ]
1489 deps = [
1490 ":skia",
1491 ]
halcanary3eee9d92016-09-10 07:01:53 -07001492 }
mtklein046cb562016-09-16 10:23:12 -07001493
Matt Sarett9f1c4032017-05-17 10:06:32 -04001494 test_app("create_flutter_test_images") {
1495 sources = [
1496 "tools/create_flutter_test_images.cpp",
1497 ]
1498 deps = [
1499 ":skia",
1500 ":tool_utils",
1501 ]
1502 }
1503
Ben Wagner219f3622017-07-17 15:32:25 -04001504 test_app("create_test_font") {
1505 sources = [
1506 "tools/create_test_font.cpp",
1507 ]
1508 deps = [
1509 ":skia",
1510 ]
1511 assert_no_deps = [
1512 # tool_utils requires the output of this app.
1513 ":tool_utils",
1514 ]
1515 }
1516
Mike Kleine6682eb2017-01-05 10:54:57 -05001517 test_app("get_images_from_skps") {
mtklein046cb562016-09-16 10:23:12 -07001518 sources = [
1519 "tools/get_images_from_skps.cpp",
1520 ]
1521 deps = [
1522 ":flags",
1523 ":skia",
1524 "//third_party/jsoncpp",
1525 ]
mtklein046cb562016-09-16 10:23:12 -07001526 }
mtkleinecbc5262016-09-22 11:51:24 -07001527
Mike Kleine6682eb2017-01-05 10:54:57 -05001528 test_app("colorspaceinfo") {
Matt Sarett8740d582016-11-11 13:59:14 -05001529 sources = [
1530 "tools/colorspaceinfo.cpp",
1531 ]
1532 deps = [
1533 ":flags",
1534 ":skia",
1535 ":tool_utils",
1536 ]
Matt Sarett8740d582016-11-11 13:59:14 -05001537 }
1538
Kevin Lubickebf648e2017-09-21 13:45:16 -04001539 if (!is_ios && target_cpu != "wasm") {
Mike Kleine6682eb2017-01-05 10:54:57 -05001540 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04001541 sources = [
1542 "tools/skiaserve/Request.cpp",
1543 "tools/skiaserve/Response.cpp",
1544 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001545 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1546 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1547 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1548 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1549 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1550 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1551 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1552 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1553 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05001554 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1555 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001556 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1557 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1558 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1559 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1560 ]
1561 deps = [
1562 ":flags",
1563 ":gpu_tool_utils",
1564 ":skia",
1565 ":tool_utils",
1566 "//third_party/jsoncpp",
1567 "//third_party/libmicrohttpd",
1568 "//third_party/libpng",
1569 ]
Mike Klein7d302882016-11-03 14:06:31 -04001570 }
mtkleinecbc5262016-09-22 11:51:24 -07001571 }
kjlubick14f984b2016-10-03 11:49:45 -07001572
Mike Kleine6682eb2017-01-05 10:54:57 -05001573 test_app("fuzz") {
kjlubick14f984b2016-10-03 11:49:45 -07001574 sources = [
1575 "fuzz/FilterFuzz.cpp",
Hal Canary24ac42b2017-02-14 13:35:14 -05001576 "fuzz/FuzzCanvas.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05001577 "fuzz/FuzzDrawFunctions.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001578 "fuzz/FuzzGradients.cpp",
1579 "fuzz/FuzzParsePath.cpp",
1580 "fuzz/FuzzPathop.cpp",
1581 "fuzz/FuzzScaleToSides.cpp",
1582 "fuzz/fuzz.cpp",
1583 ]
1584 deps = [
1585 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04001586 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001587 ":skia",
Hal Canarydb683012016-11-23 08:55:18 -07001588 ":tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001589 ]
kjlubick14f984b2016-10-03 11:49:45 -07001590 }
Mike Klein38312422016-10-05 15:41:01 -04001591
Mike Kleine6682eb2017-01-05 10:54:57 -05001592 test_app("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04001593 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04001594 rebase_path("tests/skia_test.cpp"),
1595 rebase_path("tests/Test.cpp"),
1596 ]
caryclark9feb6322016-10-25 08:58:26 -07001597 deps = [
1598 ":flags",
1599 ":gpu_tool_utils",
1600 ":skia",
1601 ":tool_utils",
1602 ]
caryclark9feb6322016-10-25 08:58:26 -07001603 }
1604
Mike Kleine6682eb2017-01-05 10:54:57 -05001605 test_app("dump_record") {
Mike Klein38312422016-10-05 15:41:01 -04001606 sources = [
1607 "tools/DumpRecord.cpp",
1608 "tools/dump_record.cpp",
1609 ]
1610 deps = [
1611 ":flags",
1612 ":skia",
1613 ]
Mike Klein38312422016-10-05 15:41:01 -04001614 }
bungemanfe917272016-10-13 17:36:40 -04001615
Mike Kleine6682eb2017-01-05 10:54:57 -05001616 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04001617 sources = [
1618 "tools/skdiff/skdiff.cpp",
1619 "tools/skdiff/skdiff_html.cpp",
1620 "tools/skdiff/skdiff_main.cpp",
1621 "tools/skdiff/skdiff_utils.cpp",
1622 ]
1623 deps = [
1624 ":skia",
1625 ":tool_utils",
1626 ]
bungemanfe917272016-10-13 17:36:40 -04001627 }
halcanarya73d76a2016-10-17 13:19:02 -07001628
Mike Kleine6682eb2017-01-05 10:54:57 -05001629 test_app("skp_parser") {
halcanarya73d76a2016-10-17 13:19:02 -07001630 sources = [
1631 "tools/skp_parser.cpp",
1632 ]
1633 deps = [
1634 ":skia",
1635 ":tool_utils",
1636 "//third_party/jsoncpp",
1637 ]
halcanarya73d76a2016-10-17 13:19:02 -07001638 }
Brian Osman16adfa32016-10-18 14:42:44 -04001639
Hal Canary75427132017-10-11 16:00:31 -04001640 if (!is_win) {
1641 test_app("gpucts") {
1642 sources = [
1643 "dm/DMGpuTestProcs.cpp",
1644 "tools/gpucts/gm_knowledge.c",
1645 "tools/gpucts/gm_runner.cpp",
1646 "tools/gpucts/gpucts.cpp",
1647 ]
1648 deps = [
1649 ":gm",
1650 ":gpu_tool_utils",
1651 ":skia",
1652 ":tests",
1653 "//third_party/googletest",
1654 ]
1655 }
1656 }
1657
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001658 if (skia_enable_gpu) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001659 test_app("viewer") {
1660 is_shared_library = is_android
Brian Osman16adfa32016-10-18 14:42:44 -04001661 sources = [
1662 "tools/viewer/GMSlide.cpp",
1663 "tools/viewer/ImageSlide.cpp",
1664 "tools/viewer/SKPSlide.cpp",
1665 "tools/viewer/SampleSlide.cpp",
1666 "tools/viewer/Viewer.cpp",
1667 "tools/viewer/sk_app/CommandSet.cpp",
1668 "tools/viewer/sk_app/GLWindowContext.cpp",
1669 "tools/viewer/sk_app/Window.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001670 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001671 libs = []
Brian Osman16adfa32016-10-18 14:42:44 -04001672
Jim Van Verth4e56a912016-10-21 10:58:52 -04001673 if (is_android) {
1674 sources += [
1675 "tools/viewer/sk_app/android/GLWindowContext_android.cpp",
1676 "tools/viewer/sk_app/android/RasterWindowContext_android.cpp",
1677 "tools/viewer/sk_app/android/Window_android.cpp",
1678 "tools/viewer/sk_app/android/main_android.cpp",
1679 "tools/viewer/sk_app/android/surface_glue_android.cpp",
1680 ]
Brian Osman462334e2017-02-09 11:22:57 -05001681 libs += [ "android" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001682 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001683 sources += [
1684 "tools/viewer/sk_app/unix/GLWindowContext_unix.cpp",
1685 "tools/viewer/sk_app/unix/RasterWindowContext_unix.cpp",
1686 "tools/viewer/sk_app/unix/Window_unix.cpp",
1687 "tools/viewer/sk_app/unix/main_unix.cpp",
1688 ]
1689 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001690 sources += [
1691 "tools/viewer/sk_app/win/GLWindowContext_win.cpp",
1692 "tools/viewer/sk_app/win/RasterWindowContext_win.cpp",
1693 "tools/viewer/sk_app/win/Window_win.cpp",
1694 "tools/viewer/sk_app/win/main_win.cpp",
1695 ]
Brian Salomon194db172017-08-17 14:37:06 -04001696 if (skia_use_angle) {
1697 sources += [ "tools/viewer/sk_app/win/ANGLEWindowContext_win.cpp" ]
1698 }
Mike Klein43c25262016-10-20 10:17:47 -04001699 } else if (is_mac) {
1700 sources += [
1701 "tools/viewer/sk_app/mac/GLWindowContext_mac.cpp",
1702 "tools/viewer/sk_app/mac/RasterWindowContext_mac.cpp",
1703 "tools/viewer/sk_app/mac/Window_mac.cpp",
1704 "tools/viewer/sk_app/mac/main_mac.cpp",
1705 ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001706 } else if (is_ios) {
1707 sources += [
1708 "tools/viewer/sk_app/ios/GLWindowContext_ios.cpp",
1709 "tools/viewer/sk_app/ios/RasterWindowContext_ios.cpp",
1710 "tools/viewer/sk_app/ios/Window_ios.cpp",
1711 "tools/viewer/sk_app/ios/main_ios.cpp",
1712 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001713 }
1714
1715 if (skia_use_vulkan) {
1716 sources += [ "tools/viewer/sk_app/VulkanWindowContext.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001717 if (is_android) {
1718 sources +=
1719 [ "tools/viewer/sk_app/android/VulkanWindowContext_android.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001720 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001721 sources += [ "tools/viewer/sk_app/unix/VulkanWindowContext_unix.cpp" ]
1722 libs += [ "X11-xcb" ]
1723 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001724 sources += [ "tools/viewer/sk_app/win/VulkanWindowContext_win.cpp" ]
1725 }
1726 }
1727
1728 include_dirs = []
1729 deps = [
1730 ":flags",
1731 ":gm",
1732 ":gpu_tool_utils",
1733 ":samples",
1734 ":skia",
1735 ":tool_utils",
1736 ":views",
Brian Osman79086b92017-02-10 13:36:16 -05001737 "//third_party/imgui",
Brian Osman16adfa32016-10-18 14:42:44 -04001738 "//third_party/jsoncpp",
1739 ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001740 if (is_android) {
1741 deps += [ "//third_party/native_app_glue" ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001742 } else if (is_mac || is_ios) {
Mike Klein43c25262016-10-20 10:17:47 -04001743 deps += [ "//third_party/libsdl" ]
1744 }
Brian Salomon194db172017-08-17 14:37:06 -04001745 if (skia_use_angle) {
1746 deps += [ "//third_party/angle2" ]
1747 }
Mike Kleina92c3832016-12-08 09:49:39 -05001748 }
Brian Osman16adfa32016-10-18 14:42:44 -04001749 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05001750
Jim Van Verthecfed2b2017-08-30 14:02:50 -04001751 if (skia_enable_gpu && (is_linux || is_mac || is_ios)) {
Jim Van Verth4c70c752017-07-11 12:03:01 -04001752 test_app("SkiaSDLExample") {
1753 sources = [
1754 "example/SkiaSDLExample.cpp",
1755 ]
1756 libs = []
1757 include_dirs = []
1758 deps = [
1759 ":gpu_tool_utils",
1760 ":skia",
1761 "//third_party/libsdl",
1762 ]
1763 }
1764 }
1765
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001766 if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
1767 action_foreach("generate_mocs") {
1768 script = "gn/call.py"
1769 sources = [
1770 "tools/mdbviz/MainWindow.h",
1771 ]
1772 outputs = [
1773 "$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp",
1774 ]
1775 args = [
1776 "$skia_qt_path" + "/bin/moc",
1777 "{{source}}",
1778 "-o",
1779 "gen/mdbviz/{{source_name_part}}_moc.cpp",
1780 ]
1781 }
1782 action_foreach("generate_resources") {
1783 script = "gn/call.py"
1784 sources = [
1785 "tools/mdbviz/resources.qrc",
1786 ]
1787 outputs = [
1788 "$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp",
1789 ]
1790 args = [
1791 "$skia_qt_path" + "/bin/rcc",
1792 "{{source}}",
1793 "-o",
1794 "gen/mdbviz/{{source_name_part}}_res.cpp",
1795 ]
1796 }
1797 test_app("mdbviz") {
1798 if (is_win) {
1799 # on Windows we need to disable some exception handling warnings due to the Qt headers
1800 cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
1801 }
1802 sources = [
Robert Phillips5fccf9d2017-09-05 15:10:12 -04001803 "tools/UrlDataManager.cpp",
1804 "tools/debugger/SkDebugCanvas.cpp",
1805 "tools/debugger/SkDrawCommand.cpp",
1806 "tools/debugger/SkJsonWriteBuffer.cpp",
1807 "tools/debugger/SkObjectParser.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001808 "tools/mdbviz/MainWindow.cpp",
Robert Phillipsdeaf5682017-09-06 13:07:21 -04001809 "tools/mdbviz/Model.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001810 "tools/mdbviz/main.cpp",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04001811 "tools/picture_utils.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001812
1813 # generated files
1814 "$target_gen_dir/mdbviz/MainWindow_moc.cpp",
1815 "$target_gen_dir/mdbviz/resources_res.cpp",
1816 ]
1817 lib_dirs = [ "$skia_qt_path/lib" ]
1818 libs = [
1819 "Qt5Core.lib",
1820 "Qt5Gui.lib",
1821 "Qt5Widgets.lib",
1822 ]
1823 include_dirs = [
1824 "$skia_qt_path/include",
Robert Phillips276066b2017-09-06 17:17:44 -04001825 "$skia_qt_path/include/QtCore",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001826 "$skia_qt_path/include/QtWidgets",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04001827 "tools",
1828 "tools/debugger",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001829 ]
1830 deps = [
1831 ":generate_mocs",
1832 ":generate_resources",
1833 ":skia",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04001834 "//third_party/jsoncpp",
1835 "//third_party/libpng",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001836 ]
1837 }
1838 }
1839
Mike Kleine459afd2017-03-03 09:21:30 -05001840 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05001841 copy("gdbserver") {
1842 sources = [
1843 "$ndk/$ndk_gdbserver",
1844 ]
1845 outputs = [
1846 "$root_out_dir/gdbserver",
1847 ]
1848 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05001849 }
mtklein25c81d42016-07-27 13:55:26 -07001850}
Mike Kleinc55a6cb2017-06-28 13:21:47 -04001851
1852if (skia_jumper_clang != "") {
1853 action("regen_jumper") {
1854 script = "src/jumper/build_stages.py"
1855
1856 inputs = [
1857 "src/jumper/SkJumper_stages.cpp",
Mike Klein9b2f69b2017-09-12 16:40:53 -04001858 "src/jumper/SkJumper_stages_lowp.cpp",
Mike Kleinc55a6cb2017-06-28 13:21:47 -04001859 ]
1860
1861 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it.
1862 outputs = [
1863 "$target_out_dir/" +
1864 rebase_path("src/jumper/SkJumper_generated.S", target_out_dir),
1865 "$target_out_dir/" +
1866 rebase_path("src/jumper/SkJumper_generated_win.S", target_out_dir),
1867 ]
1868
1869 args = [
1870 skia_jumper_clang,
1871 skia_jumper_objdump,
1872 skia_jumper_ccache,
1873 ] + rebase_path(inputs) + rebase_path(outputs)
1874 }
1875}