blob: b03f1117d98e7caa9799bcf417affcee5c8a2109 [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 Klein38af9432016-11-11 11:39:44 -050028 skia_use_lua = false
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
Hal Canarya4935102017-12-08 13:35:47 -050033 skia_embed_resources = false
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
mtklein06c35c02016-09-20 12:28:12 -070039 skia_enable_gpu = true
Hal Canary43fb7a02016-12-30 13:09:03 -050040 skia_enable_pdf = true
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -040041 skia_enable_spirv_validation = is_skia_dev_build && is_debug
Mike Klein3669a822017-03-03 10:55:02 -050042 skia_enable_tools = is_skia_dev_build
43 skia_enable_vulkan_debug_layers = is_skia_dev_build && is_debug
Greg Danielafb7ec72017-12-07 12:48:30 -050044 skia_vulkan_header = ""
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
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
Mike Klein4d598a32016-10-31 13:44:49 -040059 if (is_android) {
60 skia_use_vulkan = defined(ndk_api) && ndk_api >= 24
Forrest Reiling30229ac2017-04-17 13:36:39 -070061 } else if (is_fuchsia) {
62 skia_use_vulkan = fuchsia_use_vulkan
Mike Klein4d598a32016-10-31 13:44:49 -040063 } else {
64 skia_use_vulkan = skia_vulkan_sdk != ""
65 }
Jim Van Verth4e502972017-12-07 15:16:10 -050066
67 if (is_ios) {
68 skia_ios_identity = ".*Google.*"
69 skia_ios_profile = "Google Development"
70 }
Brian Salomon23d73ea2016-10-27 13:31:37 -040071}
Greg Danielec6ae522017-04-25 13:38:26 -040072declare_args() {
Greg Danielafb7ec72017-12-07 12:48:30 -050073 skia_tools_vulkan_header_dir = ""
Greg Danielec6ae522017-04-25 13:38:26 -040074 if (skia_use_vulkan) {
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +000075 # 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 -040076 if (is_fuchsia) {
Greg Danielafb7ec72017-12-07 12:48:30 -050077 skia_tools_vulkan_header_dir = "$fuchsia_vulkan_sdk/include"
Greg Danielec6ae522017-04-25 13:38:26 -040078 } else if (is_linux || is_win) {
Greg Danielafb7ec72017-12-07 12:48:30 -050079 skia_tools_vulkan_header_dir = "$skia_vulkan_sdk/include"
Greg Danielec6ae522017-04-25 13:38:26 -040080 }
Greg Danielec6ae522017-04-25 13:38:26 -040081 }
82}
Brian Salomon789e25e2016-09-30 13:41:03 -040083
Adam Barth54ef74a2017-10-13 10:59:38 -070084if (defined(skia_settings)) {
85 import(skia_settings)
86}
87
mtklein38925aa2016-09-21 10:11:25 -070088# Our tools require static linking (they use non-exported symbols).
89skia_enable_tools = skia_enable_tools && !is_component_build
mtklein06c35c02016-09-20 12:28:12 -070090
mtkleina45be612016-08-29 15:22:10 -070091fontmgr_android_enabled = skia_use_expat && skia_use_freetype
92
mtklein1211e0c2016-07-26 13:55:45 -070093skia_public_includes = [
mtklein25c81d42016-07-27 13:55:26 -070094 "include/android",
mtkleinfa84d942016-07-28 09:45:14 -070095 "include/c",
mtklein1211e0c2016-07-26 13:55:45 -070096 "include/codec",
97 "include/config",
98 "include/core",
99 "include/effects",
Matt Sarett94fd06f2017-05-08 17:31:00 -0400100 "include/encode",
mtklein1211e0c2016-07-26 13:55:45 -0700101 "include/gpu",
102 "include/gpu/gl",
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500103 "include/atlastext",
mtklein1211e0c2016-07-26 13:55:45 -0700104 "include/pathops",
105 "include/ports",
mtklein25c81d42016-07-27 13:55:26 -0700106 "include/svg",
mtklein1211e0c2016-07-26 13:55:45 -0700107 "include/utils",
108 "include/utils/mac",
mtklein1211e0c2016-07-26 13:55:45 -0700109]
110
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000111if (skia_use_vulkan) {
112 skia_public_includes += [ "include/gpu/vk" ]
113}
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500114if (skia_enable_atlas_text) {
115 skia_public_includes += [ "include/atlastext" ]
116}
Greg Daniele5ddff52017-07-05 16:49:36 -0400117if (skia_use_metal) {
118 skia_public_includes += [ "include/gpu/mtl" ]
119}
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000120
mtkleinc04ff472016-06-23 10:29:30 -0700121# Skia public API, generally provided by :skia.
122config("skia_public") {
mtklein1211e0c2016-07-26 13:55:45 -0700123 include_dirs = skia_public_includes
Greg Danielafb7ec72017-12-07 12:48:30 -0500124 if (skia_tools_vulkan_header_dir != "") {
125 include_dirs += [ skia_tools_vulkan_header_dir ]
Greg Danielec6ae522017-04-25 13:38:26 -0400126 }
Mike Kleinae7e6712016-10-11 17:49:33 -0400127 defines = []
128 if (is_component_build) {
129 defines += [ "SKIA_DLL" ]
130 }
Mike Kleinc4cbd742016-09-26 21:37:09 -0400131 if (is_fuchsia || is_linux) {
jcgregorio5561e3d2016-08-25 09:25:11 -0700132 defines += [ "SK_SAMPLES_FOR_X" ]
133 }
Brian Osmanf2c90142017-07-13 15:50:03 -0400134 if (skia_enable_flutter_defines) {
135 defines += flutter_defines
136 }
mtklein06c35c02016-09-20 12:28:12 -0700137 if (!skia_enable_gpu) {
138 defines += [ "SK_SUPPORT_GPU=0" ]
139 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500140 if (skia_enable_atlas_text) {
141 defines += [ "SK_SUPPORT_ATLAS_TEXT=1" ]
142 }
mtkleinc04ff472016-06-23 10:29:30 -0700143}
144
145# Skia internal APIs, used by Skia itself and a few test tools.
146config("skia_private") {
147 visibility = [ ":*" ]
148
149 include_dirs = [
150 "include/private",
151 "src/c",
mtklein1211e0c2016-07-26 13:55:45 -0700152 "src/codec",
mtkleinc04ff472016-06-23 10:29:30 -0700153 "src/core",
154 "src/effects",
mtklein25c81d42016-07-27 13:55:26 -0700155 "src/fonts",
mtkleinc04ff472016-06-23 10:29:30 -0700156 "src/image",
157 "src/images",
158 "src/lazy",
159 "src/opts",
160 "src/pathops",
mtklein2b6870c2016-07-28 14:17:33 -0700161 "src/pdf",
mtkleinc04ff472016-06-23 10:29:30 -0700162 "src/ports",
163 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400164 "src/shaders",
165 "src/shaders/gradients",
mtklein9e0d9dd2016-08-30 10:37:19 -0700166 "src/sksl",
mtkleinc04ff472016-06-23 10:29:30 -0700167 "src/utils",
mtklein7a1f45f2016-08-04 06:19:33 -0700168 "src/utils/win",
Herb Derby5a8fe972017-02-14 14:42:30 -0500169 "src/xml",
scroggo19b91532016-10-24 09:03:26 -0700170 "third_party/gif",
mtkleinc04ff472016-06-23 10:29:30 -0700171 ]
mtklein150d1132016-08-01 06:56:40 -0700172
Mike Reeda9e241d2017-05-03 10:52:00 -0400173 defines = [ "SK_GAMMA_APPLY_TO_A8" ]
mtkleinb37c0342016-09-09 11:07:45 -0700174 if (is_android) {
175 defines += [
176 "SK_GAMMA_EXPONENT=1.4",
177 "SK_GAMMA_CONTRAST=0.0",
178 ]
179 }
mtklein88a7ac02016-09-14 11:16:49 -0700180 if (is_official_build || is_android) {
181 # TODO(bsalomon): it'd be nice to make Android normal.
182 defines += [ "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0" ]
183 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400184 libs = []
185 lib_dirs = []
Brian Salomon03e05842017-02-23 12:23:47 -0500186 if (skia_enable_gpu) {
187 include_dirs += [ "src/gpu" ]
Greg Danielafb7ec72017-12-07 12:48:30 -0500188 if (is_skia_dev_build && skia_use_vulkan) {
189 include_dirs += [ "tools/gpu/vk" ]
190 }
Brian Salomon03e05842017-02-23 12:23:47 -0500191 }
Brian Osman34755e22016-12-05 09:46:02 -0500192 if (skia_use_angle) {
193 defines += [ "SK_ANGLE" ]
194 }
Brian Osman3f375d02016-12-28 11:19:22 -0500195 if (skia_enable_discrete_gpu) {
196 defines += [ "SK_ENABLE_DISCRETE_GPU" ]
197 }
Brian Salomon0c26a9d2017-07-06 10:09:38 -0400198 if (!is_official_build) {
199 defines += [ "GR_TEST_UTILS=1" ]
200 }
mtkleinc04ff472016-06-23 10:29:30 -0700201}
202
203# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
204config("skia_library") {
205 visibility = [ ":*" ]
mtkleinc04ff472016-06-23 10:29:30 -0700206 defines = [ "SKIA_IMPLEMENTATION=1" ]
207}
208
209skia_library_configs = [
210 ":skia_public",
211 ":skia_private",
212 ":skia_library",
213]
214
mtklein9b8583d2016-08-24 17:32:30 -0700215# Use for CPU-specific Skia code that needs particular compiler flags.
216template("opts") {
217 if (invoker.enabled) {
218 source_set(target_name) {
219 forward_variables_from(invoker, "*")
220 configs += skia_library_configs
221 }
222 } else {
223 # If not enabled, a phony empty target that swallows all otherwise unused variables.
224 source_set(target_name) {
225 forward_variables_from(invoker,
226 "*",
227 [
228 "sources",
229 "cflags",
230 ])
231 }
232 }
anmittala7eaf2e2016-08-17 13:57:26 -0700233}
234
mtklein422310d2016-08-16 18:28:43 -0700235is_x86 = current_cpu == "x64" || current_cpu == "x86"
mtkleinc04ff472016-06-23 10:29:30 -0700236
mtklein7d6fb2c2016-08-25 14:50:44 -0700237opts("none") {
238 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
brettwb9447282016-09-01 14:24:39 -0700239 sources = skia_opts.none_sources
anmittalb8b3f712016-08-25 04:55:19 -0700240 cflags = []
241}
242
mtklein7d6fb2c2016-08-25 14:50:44 -0700243opts("armv7") {
anmittalb8b3f712016-08-25 04:55:19 -0700244 enabled = current_cpu == "arm"
brettwb9447282016-09-01 14:24:39 -0700245 sources = skia_opts.armv7_sources + skia_opts.neon_sources
mtklein7d6fb2c2016-08-25 14:50:44 -0700246 cflags = []
anmittalb8b3f712016-08-25 04:55:19 -0700247}
248
249opts("arm64") {
250 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700251 sources = skia_opts.arm64_sources
anmittalb8b3f712016-08-25 04:55:19 -0700252 cflags = []
253}
254
255opts("crc32") {
256 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700257 sources = skia_opts.crc32_sources
anmittalb8b3f712016-08-25 04:55:19 -0700258 cflags = [ "-march=armv8-a+crc" ]
259}
260
mtklein9b8583d2016-08-24 17:32:30 -0700261opts("sse2") {
262 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700263 sources = skia_opts.sse2_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400264 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400265 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
266 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400267 cflags = [ "-msse2" ]
268 }
mtklein9b8583d2016-08-24 17:32:30 -0700269}
mtkleinc04ff472016-06-23 10:29:30 -0700270
mtklein9b8583d2016-08-24 17:32:30 -0700271opts("ssse3") {
272 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700273 sources = skia_opts.ssse3_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400274 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400275 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
276 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400277 cflags = [ "-mssse3" ]
278 }
mtklein9b8583d2016-08-24 17:32:30 -0700279}
mtkleinc04ff472016-06-23 10:29:30 -0700280
mtklein9b8583d2016-08-24 17:32:30 -0700281opts("sse41") {
282 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700283 sources = skia_opts.sse41_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400284 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400285 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
286 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400287 cflags = [ "-msse4.1" ]
288 }
mtklein9b8583d2016-08-24 17:32:30 -0700289}
mtklein4e976072016-08-08 09:06:27 -0700290
mtklein9b8583d2016-08-24 17:32:30 -0700291opts("sse42") {
292 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700293 sources = skia_opts.sse42_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400294 if (!is_clang && is_win) {
Mike Kleind8765e32016-10-19 13:39:13 -0400295 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
296 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400297 cflags = [ "-msse4.2" ]
298 }
mtklein9b8583d2016-08-24 17:32:30 -0700299}
300
301opts("avx") {
302 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700303 sources = skia_opts.avx_sources
Mike Kleinc722f792017-07-31 11:57:21 -0400304 if (!is_clang && is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000305 cflags = [ "/arch:AVX" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400306 } else {
307 cflags = [ "-mavx" ]
308 }
mtkleinc04ff472016-06-23 10:29:30 -0700309}
310
mtkleinc095df52016-08-24 12:23:52 -0700311# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700312template("optional") {
313 if (invoker.enabled) {
314 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700315 if (defined(invoker.public_defines)) {
316 defines = invoker.public_defines
317 }
mtklein457b42a2016-08-23 13:56:37 -0700318 }
319 source_set(target_name) {
mtkleincd01b032016-08-31 04:58:19 -0700320 forward_variables_from(invoker,
321 "*",
322 [
323 "public_defines",
324 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700325 "configs_to_remove",
mtkleincd01b032016-08-31 04:58:19 -0700326 ])
mtklein457b42a2016-08-23 13:56:37 -0700327 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein9b8583d2016-08-24 17:32:30 -0700328 configs += skia_library_configs
scroggof84ad642016-10-31 09:02:57 -0700329 if (defined(invoker.configs_to_remove)) {
330 configs -= invoker.configs_to_remove
331 }
mtklein457b42a2016-08-23 13:56:37 -0700332 }
333 } else {
mtklein457b42a2016-08-23 13:56:37 -0700334 source_set(target_name) {
335 forward_variables_from(invoker,
336 "*",
337 [
338 "public_defines",
mtklein457b42a2016-08-23 13:56:37 -0700339 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700340 "libs",
mtklein457b42a2016-08-23 13:56:37 -0700341 "sources",
mtkleincd01b032016-08-31 04:58:19 -0700342 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700343 "configs_to_remove",
mtklein457b42a2016-08-23 13:56:37 -0700344 ])
mtkleincd01b032016-08-31 04:58:19 -0700345 if (defined(invoker.sources_when_disabled)) {
346 sources = invoker.sources_when_disabled
347 }
348 configs += skia_library_configs
mtklein457b42a2016-08-23 13:56:37 -0700349 }
mtkleineb3c4252016-08-23 07:38:09 -0700350 }
mtklein457b42a2016-08-23 13:56:37 -0700351}
mtklein457b42a2016-08-23 13:56:37 -0700352
Mike Kleina04bb452017-02-09 12:24:07 -0500353optional("effects") {
354 enabled = skia_enable_effects
Ethan Nicholas762466e2017-06-29 10:03:38 -0400355 deps = [
356 ":compile_processors",
357 ]
Mike Kleina04bb452017-02-09 12:24:07 -0500358 sources =
359 skia_effects_sources + [ "src/ports/SkGlobalInitialization_default.cpp" ]
360 sources_when_disabled = [ "src/ports/SkGlobalInitialization_none.cpp" ]
361}
362
mtkleina45be612016-08-29 15:22:10 -0700363optional("fontmgr_android") {
364 enabled = fontmgr_android_enabled
mtkleina45be612016-08-29 15:22:10 -0700365
366 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500367 ":typeface_freetype",
mtkleina45be612016-08-29 15:22:10 -0700368 "//third_party/expat",
mtkleina45be612016-08-29 15:22:10 -0700369 ]
370 sources = [
371 "src/ports/SkFontMgr_android.cpp",
372 "src/ports/SkFontMgr_android_factory.cpp",
373 "src/ports/SkFontMgr_android_parser.cpp",
374 ]
375}
376
mtkleind2e39db2016-09-07 07:52:55 -0700377optional("fontmgr_custom") {
378 enabled = is_linux && skia_use_freetype && !skia_use_fontconfig
379
380 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500381 ":typeface_freetype",
mtkleind2e39db2016-09-07 07:52:55 -0700382 ]
383 sources = [
384 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500385 "src/ports/SkFontMgr_custom.h",
386 "src/ports/SkFontMgr_custom_directory.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700387 "src/ports/SkFontMgr_custom_directory_factory.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500388 "src/ports/SkFontMgr_custom_embedded.cpp",
389 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700390 ]
391}
392
mtklein3cc22182016-08-29 13:26:14 -0700393optional("fontmgr_fontconfig") {
394 enabled = skia_use_freetype && skia_use_fontconfig
mtklein3cc22182016-08-29 13:26:14 -0700395
396 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500397 ":typeface_freetype",
mtklein3cc22182016-08-29 13:26:14 -0700398 "//third_party:fontconfig",
mtklein3cc22182016-08-29 13:26:14 -0700399 ]
400 sources = [
bungeman1ae0e012016-09-19 12:13:16 -0700401 "src/ports/SkFontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700402 "src/ports/SkFontConfigInterface_direct.cpp",
403 "src/ports/SkFontConfigInterface_direct_factory.cpp",
404 "src/ports/SkFontMgr_FontConfigInterface.cpp",
405 "src/ports/SkFontMgr_fontconfig.cpp",
406 "src/ports/SkFontMgr_fontconfig_factory.cpp",
407 ]
408}
409
mtkleincdedd0e2016-09-12 15:15:44 -0700410optional("fontmgr_fuchsia") {
411 enabled = is_fuchsia && skia_use_freetype
412
413 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500414 ":typeface_freetype",
mtkleincdedd0e2016-09-12 15:15:44 -0700415 ]
416 sources = [
417 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500418 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleincdedd0e2016-09-12 15:15:44 -0700419 "src/ports/SkFontMgr_custom_empty_factory.cpp",
420 ]
421}
422
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700423if (skia_lex) {
Ethan Nicholasca82a922017-09-07 09:39:50 -0400424 executable("sksllex") {
425 sources = [
426 "src/sksl/lex/Main.cpp",
427 "src/sksl/lex/NFA.cpp",
428 "src/sksl/lex/RegexNode.cpp",
429 "src/sksl/lex/RegexParser.cpp",
430 ]
431 include_dirs = [ "src/sksl/lex" ]
432 }
433
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700434 action("run_sksllex") {
435 script = "gn/run_sksllex.py"
Ethan Nicholase148bf72017-10-06 14:22:22 -0400436 deps = [
437 ":sksllex(//gn/toolchain:$host_toolchain)",
438 ]
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700439 sources = [
440 "src/sksl/lex/layout.lex",
441 "src/sksl/lex/sksl.lex",
442 ]
443
444 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
445 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
446 outputs = [
447 "$target_out_dir/" +
448 rebase_path("src/sksl/lex/SkSLLexer.h", target_out_dir),
449 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
450 # confused due to the same file being named by two different paths
451 ]
452 sksllex_path = "$root_out_dir/"
453 sksllex_path += "sksllex"
454 if (host_os == "win") {
455 sksllex_path += ".exe"
456 }
457 args = [
458 rebase_path(sksllex_path),
459 rebase_path("bin/clang-format"),
460 rebase_path("src"),
461 ]
462 }
463} else {
464 group("run_sksllex") {
465 }
466}
467
468if (skia_compile_processors) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400469 executable("skslc") {
470 defines = [ "SKSL_STANDALONE" ]
471 sources = [
472 "src/sksl/SkSLMain.cpp",
473 ]
474 sources += skia_sksl_sources
475 include_dirs = [
476 "src/gpu",
477 "src/sksl",
478 ]
479 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500480 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400481 "//third_party/spirv-tools",
482 ]
483 }
484
485 skia_gpu_processor_outputs = []
486 foreach(src, skia_gpu_processor_sources) {
487 dir = get_path_info(src, "dir")
488 name = get_path_info(src, "name")
489
490 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
491 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
492 skia_gpu_processor_outputs += [
493 "$target_out_dir/" + rebase_path("$dir/$name.h", target_out_dir),
494 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
495 # confused due to the same file being named by two different paths
496 ]
497 }
498
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500499 action("create_sksl_enums") {
500 script = "gn/create_sksl_enums.py"
501 sources = [
502 "include/private/GrSharedEnums.h",
503 ]
504 outputs = [
505 "$target_out_dir/" +
506 rebase_path("src/sksl/sksl_enums.include", target_out_dir),
507 ]
508 args = [
509 rebase_path(sources[0]),
510 rebase_path(outputs[0]),
511 ]
512 }
513
Ethan Nicholas762466e2017-06-29 10:03:38 -0400514 action("compile_processors") {
515 script = "gn/compile_processors.py"
516 deps = [
Ethan Nicholasaae47c82017-11-10 15:34:03 -0500517 ":create_sksl_enums",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400518 ":skslc(//gn/toolchain:$host_toolchain)",
519 ]
520 sources = skia_gpu_processor_sources
521 outputs = skia_gpu_processor_outputs
522 skslc_path = "$root_out_dir/"
523 if (host_toolchain != default_toolchain_name) {
524 skslc_path += "$host_toolchain/"
525 }
526 skslc_path += "skslc"
527 if (host_os == "win") {
528 skslc_path += ".exe"
529 }
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400530 args = [
531 rebase_path(skslc_path),
Eric Borenb121be72017-07-28 10:00:51 -0400532 rebase_path("bin/clang-format"),
Ethan Nicholasb9f6afb2017-07-27 16:02:37 -0400533 ]
Ethan Nicholas762466e2017-06-29 10:03:38 -0400534 args += rebase_path(skia_gpu_processor_sources)
535 }
536} else {
537 skia_gpu_processor_outputs = []
538 group("compile_processors") {
539 }
540}
541
mtklein06c35c02016-09-20 12:28:12 -0700542optional("gpu") {
543 enabled = skia_enable_gpu
Ethan Nicholas762466e2017-06-29 10:03:38 -0400544 deps = [
545 ":compile_processors",
Ethan Nicholas5b5f0962017-09-11 13:50:14 -0700546 ":run_sksllex",
Ethan Nicholas762466e2017-06-29 10:03:38 -0400547 ]
mtkleine9fb3d52016-09-20 15:11:46 -0700548 public_defines = []
549
Brian Salomon3d6801e2017-12-11 10:06:31 -0500550 sources = skia_gpu_sources + skia_sksl_sources + skia_gpu_processor_outputs
mtklein06c35c02016-09-20 12:28:12 -0700551
552 # These paths need to be absolute to match the ones produced by shared_sources.gni.
Brian Salomon3d6801e2017-12-11 10:06:31 -0500553 sources -= get_path_info([ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ],
mtklein06c35c02016-09-20 12:28:12 -0700554 "abspath")
Mike Klein703cf5a2016-10-13 17:18:04 -0400555 libs = []
mtklein06c35c02016-09-20 12:28:12 -0700556 if (is_android) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500557 sources += [ "src/gpu/gl/android/GrGLMakeNativeInterface_android.cpp" ]
Derek Sollenberger7a869872017-06-27 15:37:25 -0400558
559 # this lib is required to link against AHardwareBuffer
560 if (defined(ndk_api) && ndk_api >= 26) {
561 libs += [ "android" ]
562 }
Kevin Lubick4a24e102017-03-29 11:19:01 -0400563 } else if (skia_use_egl) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500564 sources += [ "src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp" ]
Kevin Lubick4a24e102017-03-29 11:19:01 -0400565 libs += [ "EGL" ]
mtklein06c35c02016-09-20 12:28:12 -0700566 } else if (is_linux) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500567 sources += [ "src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -0500568 libs += [
569 "GL",
570 "GLU",
571 ]
mtklein06c35c02016-09-20 12:28:12 -0700572 } else if (is_mac) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500573 sources += [ "src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
Chinmay Garde130a1182016-11-23 11:43:56 -0800574 } else if (is_ios) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500575 sources += [ "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400576 } else if (is_win) {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500577 sources += [ "src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400578 libs += [ "OpenGL32.lib" ]
mtklein06c35c02016-09-20 12:28:12 -0700579 } else {
Brian Salomon3d6801e2017-12-11 10:06:31 -0500580 sources += [ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ]
mtklein06c35c02016-09-20 12:28:12 -0700581 }
mtkleine9fb3d52016-09-20 15:11:46 -0700582
583 if (skia_use_vulkan) {
584 public_defines += [ "SK_VULKAN" ]
585 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700586 if (skia_enable_vulkan_debug_layers) {
587 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
588 }
Greg Danielafb7ec72017-12-07 12:48:30 -0500589 if (skia_vulkan_header != "") {
590 public_defines += [ "SK_VULKAN_HEADER=\"$skia_vulkan_header\"" ]
591 } else {
592 if (is_skia_dev_build) {
593 public_defines += [ "SK_VULKAN_HEADER=\"GrVulkanDefines.h\"" ]
594 }
595 }
mtkleine9fb3d52016-09-20 15:11:46 -0700596 }
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400597 if (skia_enable_spirv_validation) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400598 deps += [ "//third_party/spirv-tools" ]
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400599 public_defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
600 }
Greg Daniele5ddff52017-07-05 16:49:36 -0400601
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400602 cflags_objcc = []
Greg Daniele5ddff52017-07-05 16:49:36 -0400603 if (skia_use_metal) {
604 public_defines += [ "SK_METAL" ]
605 sources += skia_metal_sources
606 libs += [ "Metal.framework" ]
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400607 cflags_objcc += [ "-fobjc-arc" ]
Greg Daniele5ddff52017-07-05 16:49:36 -0400608 }
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500609
610 if (skia_enable_atlas_text) {
611 sources += skia_atlas_text_sources
612 }
mtklein06c35c02016-09-20 12:28:12 -0700613}
614
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400615optional("heif") {
616 enabled = skia_use_libheif
617 public_defines = [ "SK_HAS_HEIF_LIBRARY" ]
618
619 deps = []
620
621 sources = [
622 "src/codec/SkHeifCodec.cpp",
623 ]
624}
625
mtklein63213812016-08-24 09:55:56 -0700626optional("jpeg") {
627 enabled = skia_use_libjpeg_turbo
628 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
629
mtklein63213812016-08-24 09:55:56 -0700630 deps = [
631 "//third_party/libjpeg-turbo:libjpeg",
632 ]
633 sources = [
634 "src/codec/SkJpegCodec.cpp",
635 "src/codec/SkJpegDecoderMgr.cpp",
636 "src/codec/SkJpegUtility.cpp",
mtklein63213812016-08-24 09:55:56 -0700637 "src/images/SkJPEGWriteUtility.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400638 "src/images/SkJpegEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700639 ]
640}
641
642optional("pdf") {
Hal Canary43fb7a02016-12-30 13:09:03 -0500643 enabled = skia_use_zlib && skia_enable_pdf
644 public_defines = [ "SK_SUPPORT_PDF" ]
mtklein63213812016-08-24 09:55:56 -0700645
mtklein63213812016-08-24 09:55:56 -0700646 deps = [
647 "//third_party/zlib",
648 ]
brettwb9447282016-09-01 14:24:39 -0700649 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -0700650 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
mtklein63213812016-08-24 09:55:56 -0700651
652 if (skia_use_sfntly) {
653 deps += [ "//third_party/sfntly" ]
Hal Canary43fb7a02016-12-30 13:09:03 -0500654 public_defines += [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -0700655 }
656}
657
658optional("png") {
659 enabled = skia_use_libpng
660 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
661
mtklein63213812016-08-24 09:55:56 -0700662 deps = [
663 "//third_party/libpng",
664 ]
665 sources = [
666 "src/codec/SkIcoCodec.cpp",
667 "src/codec/SkPngCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400668 "src/images/SkPngEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700669 ]
670}
671
scroggof84ad642016-10-31 09:02:57 -0700672optional("raw") {
Mike Klein10d665d2016-11-01 11:46:10 -0400673 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -0700674 public_defines = [ "SK_CODEC_DECODES_RAW" ]
675
676 deps = [
677 "//third_party/dng_sdk",
678 "//third_party/libjpeg-turbo:libjpeg",
679 "//third_party/piex",
680 ]
681
682 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
683 # Skia.
684 configs_to_remove = [ "//gn:no_exceptions" ]
685
686 sources = [
687 "src/codec/SkRawAdapterCodec.cpp",
688 "src/codec/SkRawCodec.cpp",
689 ]
690}
691
mtklein3cc22182016-08-29 13:26:14 -0700692optional("typeface_freetype") {
693 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -0700694
695 deps = [
696 "//third_party/freetype2",
697 ]
698 sources = [
699 "src/ports/SkFontHost_FreeType.cpp",
700 "src/ports/SkFontHost_FreeType_common.cpp",
701 ]
702}
703
mtklein457b42a2016-08-23 13:56:37 -0700704optional("webp") {
705 enabled = skia_use_libwebp
706 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
707
mtklein457b42a2016-08-23 13:56:37 -0700708 deps = [
709 "//third_party/libwebp",
710 ]
711 sources = [
712 "src/codec/SkWebpAdapterCodec.cpp",
713 "src/codec/SkWebpCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400714 "src/images/SkWebpEncoder.cpp",
mtklein457b42a2016-08-23 13:56:37 -0700715 ]
mtkleineb3c4252016-08-23 07:38:09 -0700716}
717
mtklein63213812016-08-24 09:55:56 -0700718optional("xml") {
719 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +0000720 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -0700721
mtklein63213812016-08-24 09:55:56 -0700722 deps = [
723 "//third_party/expat",
724 ]
725 sources = [
Mike Kleinbd41bcc2017-02-09 16:38:15 -0500726 "src/svg/SkSVGCanvas.cpp",
727 "src/svg/SkSVGDevice.cpp",
mtklein63213812016-08-24 09:55:56 -0700728 "src/xml/SkDOM.cpp",
729 "src/xml/SkXMLParser.cpp",
730 "src/xml/SkXMLWriter.cpp",
731 ]
732}
733
mtkleinc04ff472016-06-23 10:29:30 -0700734component("skia") {
735 public_configs = [ ":skia_public" ]
736 configs += skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -0700737
738 deps = [
anmittalb8b3f712016-08-25 04:55:19 -0700739 ":arm64",
740 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -0700741 ":avx",
anmittalb8b3f712016-08-25 04:55:19 -0700742 ":crc32",
Mike Kleina04bb452017-02-09 12:24:07 -0500743 ":effects",
mtkleina45be612016-08-29 15:22:10 -0700744 ":fontmgr_android",
mtkleind2e39db2016-09-07 07:52:55 -0700745 ":fontmgr_custom",
mtklein3cc22182016-08-29 13:26:14 -0700746 ":fontmgr_fontconfig",
mtkleincdedd0e2016-09-12 15:15:44 -0700747 ":fontmgr_fuchsia",
mtklein06c35c02016-09-20 12:28:12 -0700748 ":gpu",
Leon Scroggins III04be2b52017-08-17 15:13:20 -0400749 ":heif",
mtklein63213812016-08-24 09:55:56 -0700750 ":jpeg",
mtklein9b8583d2016-08-24 17:32:30 -0700751 ":none",
mtklein63213812016-08-24 09:55:56 -0700752 ":pdf",
753 ":png",
scroggof84ad642016-10-31 09:02:57 -0700754 ":raw",
mtklein9b8583d2016-08-24 17:32:30 -0700755 ":sse2",
756 ":sse41",
757 ":sse42",
758 ":ssse3",
mtkleineb3c4252016-08-23 07:38:09 -0700759 ":webp",
mtklein63213812016-08-24 09:55:56 -0700760 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -0700761 ]
762
Chinmay Garde43f115c2016-11-16 15:04:12 -0800763 # This file (and all GN files in Skia) are designed to work with an
764 # empty sources assignment filter; we handle all that explicitly.
765 # We clear the filter here for clients who may have set up a global filter.
766 set_sources_assignment_filter([])
767
mtkleinc04ff472016-06-23 10:29:30 -0700768 sources = []
brettwb9447282016-09-01 14:24:39 -0700769 sources += skia_core_sources
brettwb9447282016-09-01 14:24:39 -0700770 sources += skia_utils_sources
Hal Canary6ad3d2f2016-12-20 16:15:56 -0500771 sources += skia_xps_sources
mtkleinc04ff472016-06-23 10:29:30 -0700772 sources += [
Stan Iliev73d8fd92017-08-02 15:36:24 -0400773 "src/android/SkAndroidFrameworkUtils.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700774 "src/android/SkBitmapRegionCodec.cpp",
775 "src/android/SkBitmapRegionDecoder.cpp",
776 "src/codec/SkAndroidCodec.cpp",
Leon Scroggins IIId81fed92017-06-01 13:42:28 -0400777 "src/codec/SkBmpBaseCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700778 "src/codec/SkBmpCodec.cpp",
779 "src/codec/SkBmpMaskCodec.cpp",
780 "src/codec/SkBmpRLECodec.cpp",
781 "src/codec/SkBmpStandardCodec.cpp",
782 "src/codec/SkCodec.cpp",
783 "src/codec/SkCodecImageGenerator.cpp",
scroggo19b91532016-10-24 09:03:26 -0700784 "src/codec/SkGifCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700785 "src/codec/SkMaskSwizzler.cpp",
786 "src/codec/SkMasks.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700787 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700788 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -0700789 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700790 "src/codec/SkSwizzler.cpp",
791 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700792 "src/images/SkImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700793 "src/ports/SkDiscardableMemory_none.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700794 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700795 "src/ports/SkMemory_malloc.cpp",
796 "src/ports/SkOSFile_stdio.cpp",
797 "src/sfnt/SkOTTable_name.cpp",
798 "src/sfnt/SkOTUtils.cpp",
799 "src/utils/mac/SkStream_mac.cpp",
scroggo3d3a65c2016-10-24 12:28:30 -0700800 "third_party/gif/SkGifImageReader.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700801 ]
brettwb9447282016-09-01 14:24:39 -0700802
mtklein7d6fb2c2016-08-25 14:50:44 -0700803 libs = []
804
mtkleinc04ff472016-06-23 10:29:30 -0700805 if (is_win) {
806 sources += [
Mike Kleinae7e6712016-10-11 17:49:33 -0400807 "src/fonts/SkFontMgr_indirect.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700808 "src/ports/SkDebug_win.cpp",
809 "src/ports/SkFontHost_win.cpp",
810 "src/ports/SkFontMgr_win_dw.cpp",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500811 "src/ports/SkFontMgr_win_dw_factory.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700812 "src/ports/SkImageEncoder_WIC.cpp",
813 "src/ports/SkImageGeneratorWIC.cpp",
814 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -0700815 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700816 "src/ports/SkScalerContext_win_dw.cpp",
817 "src/ports/SkTLS_win.cpp",
818 "src/ports/SkTypeface_win_dw.cpp",
819 ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400820 libs += [
821 "FontSub.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500822 "Gdi32.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400823 "Ole32.lib",
824 "OleAut32.lib",
825 "User32.lib",
Mike Klein0c5fdcb2017-11-13 12:40:46 -0500826 "Usp10.lib",
Mike Klein4b167fc2016-10-11 18:13:53 -0400827 ]
mtkleinc04ff472016-06-23 10:29:30 -0700828 } else {
829 sources += [
mtkleinc04ff472016-06-23 10:29:30 -0700830 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -0700831 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700832 "src/ports/SkTLS_pthread.cpp",
833 ]
Ben Wagnerbe6ae5b2017-08-31 16:45:23 -0400834 libs += [ "dl" ]
mtkleinc04ff472016-06-23 10:29:30 -0700835 }
836
mtklein7d6fb2c2016-08-25 14:50:44 -0700837 if (is_android) {
Mike Klein1c471872017-01-13 15:27:45 -0500838 deps += [ "//third_party/expat" ]
Mike Kleine459afd2017-03-03 09:21:30 -0500839 if (defined(ndk) && ndk != "") {
Mike Klein1c471872017-01-13 15:27:45 -0500840 deps += [ "//third_party/cpu-features" ]
841 }
mtklein06c35c02016-09-20 12:28:12 -0700842 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -0700843 libs += [
844 "EGL",
845 "GLESv2",
846 "log",
847 ]
848 }
849
mtkleinc04ff472016-06-23 10:29:30 -0700850 if (is_linux) {
mtklein06c35c02016-09-20 12:28:12 -0700851 sources += [ "src/ports/SkDebug_stdio.cpp" ]
mtkleinc04ff472016-06-23 10:29:30 -0700852 }
853
854 if (is_mac) {
855 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -0700856 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700857 "src/ports/SkFontHost_mac.cpp",
858 "src/ports/SkImageEncoder_CG.cpp",
859 "src/ports/SkImageGeneratorCG.cpp",
860 ]
mtklein09e61f72016-08-23 13:35:28 -0700861 libs += [
bungeman3e306f62017-03-29 11:32:02 -0400862 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
863 "AppKit.framework",
mtklein09e61f72016-08-23 13:35:28 -0700864 "ApplicationServices.framework",
865 "OpenGL.framework",
866 ]
mtkleinc04ff472016-06-23 10:29:30 -0700867 }
abarth6fc8ff02016-07-15 15:15:15 -0700868
Mike Klein7d302882016-11-03 14:06:31 -0400869 if (is_ios) {
870 sources += [
871 "src/ports/SkDebug_stdio.cpp",
872 "src/ports/SkFontHost_mac.cpp",
873 "src/ports/SkImageEncoder_CG.cpp",
874 "src/ports/SkImageGeneratorCG.cpp",
875 ]
876 libs += [
877 "CoreFoundation.framework",
878 "CoreGraphics.framework",
879 "CoreText.framework",
880 "ImageIO.framework",
881 "MobileCoreServices.framework",
bungeman3e306f62017-03-29 11:32:02 -0400882
883 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
884 "UIKit.framework",
Mike Klein7d302882016-11-03 14:06:31 -0400885 ]
886 }
887
abarth6fc8ff02016-07-15 15:15:15 -0700888 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -0700889 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -0700890 }
mtkleinc04ff472016-06-23 10:29:30 -0700891}
892
mtkleinc095df52016-08-24 12:23:52 -0700893# Targets guarded by skia_enable_tools may use //third_party freely.
894if (skia_enable_tools) {
Mike Klein308b5ac2016-12-06 16:03:52 -0500895 # Used by gn_to_bp.py to list our public include dirs.
896 source_set("public") {
897 configs += [ ":skia_public" ]
898 }
899
Mike Kleinc36dedf2016-11-18 09:35:28 -0500900 config("skia.h_config") {
901 include_dirs = [ "$target_gen_dir" ]
Greg Danielafb7ec72017-12-07 12:48:30 -0500902 if (skia_use_vulkan) {
903 # So we can get the header which includes vulkan
904 include_dirs += [ "tools/gpu/vk" ]
905 }
Mike Kleinc36dedf2016-11-18 09:35:28 -0500906 }
907 action("skia.h") {
908 public_configs = [ ":skia.h_config" ]
909 skia_h = "$target_gen_dir/skia.h"
910 script = "gn/find_headers.py"
Greg Danielc819e662017-04-19 16:39:45 -0400911 args = [ rebase_path(skia_h, root_build_dir) ] +
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000912 rebase_path(skia_public_includes)
Mike Kleinc36dedf2016-11-18 09:35:28 -0500913 depfile = "$skia_h.deps"
914 outputs = [
915 skia_h,
916 ]
917 }
918
Hal Canary316b7462017-12-13 12:39:19 -0500919 if (skia_embed_resources) {
920 action("binary_resources.cpp") {
921 script = "gn/generate_binary_asset.py"
922 args = [
923 rebase_path("resources"),
924 "gResources",
925 rebase_path("$target_gen_dir/binary_resources.cpp", root_build_dir),
926 ]
927 outputs = [
928 "$target_gen_dir/binary_resources.cpp",
929 ]
930 }
931 }
932
Mike Kleinc36dedf2016-11-18 09:35:28 -0500933 if (skia_enable_gpu && target_cpu == "x64") {
Mike Kleinc36dedf2016-11-18 09:35:28 -0500934 executable("fiddle") {
935 libs = []
Mike Kleinc36dedf2016-11-18 09:35:28 -0500936 sources = [
Mike Kleinc36dedf2016-11-18 09:35:28 -0500937 "tools/fiddle/draw.cpp",
938 "tools/fiddle/fiddle_main.cpp",
939 ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -0400940
941 if (skia_use_egl) {
942 sources += [ "tools/fiddle/egl_context.cpp" ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -0400943 } else {
944 sources += [ "tools/fiddle/null_context.cpp" ]
945 }
Joe Gregorio1e735c02017-04-19 14:05:14 -0400946 testonly = true
Mike Kleinc36dedf2016-11-18 09:35:28 -0500947 deps = [
Joe Gregorio1e735c02017-04-19 14:05:14 -0400948 ":flags",
Robert Phillips57e08282017-11-16 14:59:48 -0500949 ":gpu_tool_utils",
Mike Kleinc36dedf2016-11-18 09:35:28 -0500950 ":skia",
951 ":skia.h",
952 ]
953 }
954 }
955
956 if (skia_enable_gpu) {
957 source_set("public_headers_warnings_check") {
958 sources = [
959 "tools/public_headers_warnings_check.cpp",
960 ]
961 configs -= [ "//gn:warnings_except_public_headers" ]
962 deps = [
963 ":skia",
964 ":skia.h",
965 ]
966 }
967 }
968
mtkleinc095df52016-08-24 12:23:52 -0700969 template("test_lib") {
970 config(target_name + "_config") {
971 include_dirs = invoker.public_include_dirs
mtkleina627b5c2016-09-20 13:36:47 -0700972 if (defined(invoker.public_defines)) {
973 defines = invoker.public_defines
974 }
mtklein25c81d42016-07-27 13:55:26 -0700975 }
mtkleinc095df52016-08-24 12:23:52 -0700976 source_set(target_name) {
977 forward_variables_from(invoker, "*", [ "public_include_dirs" ])
978 public_configs = [
979 ":" + target_name + "_config",
980 ":skia_private",
981 ]
982
983 if (!defined(deps)) {
984 deps = []
985 }
986 deps += [ ":skia" ]
987 testonly = true
988 }
mtklein25c81d42016-07-27 13:55:26 -0700989 }
mtklein25c81d42016-07-27 13:55:26 -0700990
Mike Kleine6682eb2017-01-05 10:54:57 -0500991 template("test_app") {
Jim Van Verth443a9132017-11-28 09:45:26 -0500992 if (is_ios) {
993 app_name = target_name
994 gen_path = target_gen_dir
995
996 action("${app_name}_generate_info_plist") {
997 script = "//gn/gen_plist_ios.py"
998 outputs = [
999 "$gen_path/${app_name}_Info.plist",
1000 ]
1001 args = [ rebase_path("$gen_path/$app_name", root_build_dir) ]
1002 }
1003
1004 bundle_data("${app_name}_bundle_info_plist") {
1005 public_deps = [
1006 ":${app_name}_generate_info_plist",
1007 ]
1008 sources = [
1009 "$gen_path/${app_name}_Info.plist",
1010 ]
1011 outputs = [
1012 "{{bundle_root_dir}}/Info.plist",
1013 ]
1014 }
1015
Jim Van Verth329c5a62017-11-29 11:42:33 -05001016 bundle_ios_data =
1017 defined(invoker.bundle_ios_data) && invoker.bundle_ios_data
1018
1019 if (bundle_ios_data) {
1020 has_skps =
1021 "True" == exec_script("//gn/checkdir.py",
1022 [ rebase_path("skps", root_build_dir) ],
1023 "trim string")
1024 bundle_data("${app_name}_bundle_resources") {
1025 sources = [
1026 "resources",
1027 ]
1028 outputs = [
1029 # iOS reserves the folders 'Resources' and 'resources' so store one level deeper
1030 "{{bundle_resources_dir}}/data/resources",
1031 ]
1032 }
1033
1034 if (has_skps) {
1035 bundle_data("${app_name}_bundle_skps") {
1036 sources = [
1037 "skps",
1038 ]
1039 outputs = [
1040 # Store in same folder as resources
1041 "{{bundle_resources_dir}}/data/skps",
1042 ]
1043 }
1044 }
1045 }
1046
Jim Van Verth443a9132017-11-28 09:45:26 -05001047 executable("${app_name}_generate_executable") {
1048 forward_variables_from(invoker,
1049 "*",
1050 [
1051 "output_name",
1052 "visibility",
1053 "is_shared_library",
1054 ])
Mike Klein154e6da2017-07-26 15:13:47 -04001055 configs += [ ":skia_private" ]
Mike Kleine6682eb2017-01-05 10:54:57 -05001056 testonly = true
Jim Van Verth443a9132017-11-28 09:45:26 -05001057 output_name = rebase_path("$gen_path/$app_name", root_build_dir)
1058 }
1059
1060 bundle_data("${app_name}_bundle_executable") {
1061 public_deps = [
1062 ":${app_name}_generate_executable",
1063 ]
1064 sources = [
1065 "$gen_path/$app_name",
1066 ]
1067 outputs = [
1068 "{{bundle_executable_dir}}/$app_name",
1069 ]
1070 testonly = true
1071 }
1072
1073 create_bundle("$app_name") {
1074 product_type = "com.apple.product-type.application"
1075 testonly = true
1076
1077 bundle_root_dir = "${root_build_dir}/${target_name}.app"
1078 bundle_resources_dir = bundle_root_dir
1079 bundle_executable_dir = bundle_root_dir
1080 bundle_plugins_dir = bundle_root_dir + "/Plugins"
1081
1082 deps = [
1083 ":${app_name}_bundle_executable",
1084 ":${app_name}_bundle_info_plist",
1085 ]
Jim Van Verth329c5a62017-11-29 11:42:33 -05001086 if (bundle_ios_data) {
1087 deps += [ ":${app_name}_bundle_resources" ]
1088 if (has_skps) {
1089 deps += [ ":${app_name}_bundle_skps" ]
1090 }
1091 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001092
1093 # should only code sign when running on a device, not the simulator
1094 if (target_cpu != "x64") {
1095 code_signing_script = "//gn/codesign_ios.py"
1096 code_signing_sources = [ "$target_gen_dir/$app_name" ]
1097 code_signing_outputs = [
1098 "$bundle_root_dir/_CodeSignature/CodeResources",
1099 "$bundle_root_dir/embedded.mobileprovision",
1100 ]
Jim Van Verth4e502972017-12-07 15:16:10 -05001101 code_signing_args = [
1102 rebase_path("$bundle_root_dir", root_build_dir),
1103 skia_ios_identity,
1104 skia_ios_profile,
1105 ]
Jim Van Verth443a9132017-11-28 09:45:26 -05001106 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001107 }
1108 } else {
Jim Van Verth443a9132017-11-28 09:45:26 -05001109 # !is_ios
1110
1111 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
1112 shared_library("lib" + target_name) {
1113 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1114 configs += [ ":skia_private" ]
1115 testonly = true
1116 }
1117 } else {
1118 _executable = target_name
1119 executable(_executable) {
1120 forward_variables_from(invoker, "*", [ "is_shared_library" ])
1121 configs += [ ":skia_private" ]
1122 testonly = true
1123 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001124 }
Jim Van Verth443a9132017-11-28 09:45:26 -05001125 if (is_android && skia_android_serial != "" && defined(_executable)) {
1126 action("push_" + target_name) {
1127 script = "gn/push_to_android.py"
1128 deps = [
1129 ":" + _executable,
1130 ]
1131 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
1132 outputs = [
1133 _stamp,
1134 ]
1135 args = [
1136 rebase_path("$root_build_dir/$_executable"),
1137 skia_android_serial,
1138 rebase_path(_stamp),
1139 ]
1140 testonly = true
1141 }
Mike Klein7d921032017-01-05 12:20:41 -05001142 }
1143 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001144 }
1145
mtkleinc095df52016-08-24 12:23:52 -07001146 test_lib("gpu_tool_utils") {
mtklein38925aa2016-09-21 10:11:25 -07001147 public_include_dirs = []
1148 if (skia_enable_gpu) {
1149 public_defines = []
1150 public_include_dirs += [ "tools/gpu" ]
mtkleind68f9b02016-09-23 13:18:41 -07001151
1152 deps = []
mtklein38925aa2016-09-21 10:11:25 -07001153 sources = [
1154 "tools/gpu/GrContextFactory.cpp",
1155 "tools/gpu/GrTest.cpp",
1156 "tools/gpu/TestContext.cpp",
Brian Salomoncbcb0a12017-11-19 13:20:13 -05001157 "tools/gpu/atlastext/GLTestAtlasTextRenderer.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001158 "tools/gpu/gl/GLTestContext.cpp",
mtklein605d9522016-09-21 14:01:32 -07001159 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001160 "tools/gpu/gl/debug/DebugGLTestContext.cpp",
1161 "tools/gpu/gl/debug/GrBufferObj.cpp",
1162 "tools/gpu/gl/debug/GrFrameBufferObj.cpp",
1163 "tools/gpu/gl/debug/GrProgramObj.cpp",
1164 "tools/gpu/gl/debug/GrShaderObj.cpp",
1165 "tools/gpu/gl/debug/GrTextureObj.cpp",
1166 "tools/gpu/gl/debug/GrTextureUnitObj.cpp",
1167 "tools/gpu/gl/null/NullGLTestContext.cpp",
Brian Salomoncfe910d2017-07-06 16:40:18 -04001168 "tools/gpu/mock/MockTestContext.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001169 ]
1170 libs = []
mtklein25c81d42016-07-27 13:55:26 -07001171
Kevin Lubick4a24e102017-03-29 11:19:01 -04001172 if (is_android || skia_use_egl) {
mtklein38925aa2016-09-21 10:11:25 -07001173 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
Mike Klein7d302882016-11-03 14:06:31 -04001174 } else if (is_ios) {
1175 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
1176 libs += [ "OpenGLES.framework" ]
mtklein38925aa2016-09-21 10:11:25 -07001177 } else if (is_linux) {
1178 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -05001179 libs += [ "X11" ]
mtklein38925aa2016-09-21 10:11:25 -07001180 } else if (is_mac) {
1181 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
Mike Klein4b167fc2016-10-11 18:13:53 -04001182 } else if (is_win) {
1183 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
1184 libs += [
1185 "Gdi32.lib",
1186 "OpenGL32.lib",
1187 ]
mtklein38925aa2016-09-21 10:11:25 -07001188 }
mtklein6ef69992016-09-14 06:12:09 -07001189
Greg Daniel6b7e0e22017-07-12 16:21:09 -04001190 cflags_objcc = [ "-fobjc-arc" ]
1191
Mike Kleinc168a3a2016-11-14 14:53:13 +00001192 if (skia_use_angle) {
Mike Kleinc168a3a2016-11-14 14:53:13 +00001193 deps += [ "//third_party/angle2" ]
1194 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
1195 }
mtkleind68f9b02016-09-23 13:18:41 -07001196 if (skia_use_vulkan) {
1197 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
Greg Daniel35970ec2017-11-10 10:03:05 -05001198 sources += [ "tools/gpu/vk/VkTestUtils.cpp" ]
mtkleind68f9b02016-09-23 13:18:41 -07001199 }
Greg Danielb76a72a2017-07-13 15:07:54 -04001200 if (skia_use_metal) {
1201 sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
1202 }
mtkleina627b5c2016-09-20 13:36:47 -07001203 }
mtklein25c81d42016-07-27 13:55:26 -07001204 }
mtklein25c81d42016-07-27 13:55:26 -07001205
mtkleinc095df52016-08-24 12:23:52 -07001206 test_lib("flags") {
1207 public_include_dirs = [ "tools/flags" ]
1208 sources = [
1209 "tools/flags/SkCommandLineFlags.cpp",
mtklein046cb562016-09-16 10:23:12 -07001210 ]
1211 }
1212 test_lib("common_flags") {
1213 public_include_dirs = [ "tools/flags" ]
1214 sources = [
mtkleinc095df52016-08-24 12:23:52 -07001215 "tools/flags/SkCommonFlags.cpp",
1216 "tools/flags/SkCommonFlagsConfig.cpp",
1217 ]
1218 deps = [
mtklein046cb562016-09-16 10:23:12 -07001219 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001220 ":gpu_tool_utils",
1221 ]
1222 }
mtklein25c81d42016-07-27 13:55:26 -07001223
mtkleinc095df52016-08-24 12:23:52 -07001224 test_lib("tool_utils") {
1225 public_include_dirs = [
1226 "tools",
1227 "tools/debugger",
1228 "tools/timer",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001229 "tools/trace",
mtkleinc095df52016-08-24 12:23:52 -07001230 ]
1231 sources = [
mtkleinb37c0342016-09-09 11:07:45 -07001232 "tools/AndroidSkDebugToStdOut.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001233 "tools/CrashHandler.cpp",
mtklein0590fa52016-09-01 07:06:54 -07001234 "tools/LsanSuppressions.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001235 "tools/ProcStats.cpp",
1236 "tools/Resources.cpp",
Mike Klein10d66cc2017-11-10 11:33:43 -05001237 "tools/SkRandomScalerContext.cpp",
1238 "tools/SkTestScalerContext.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001239 "tools/UrlDataManager.cpp",
1240 "tools/debugger/SkDebugCanvas.cpp",
1241 "tools/debugger/SkDrawCommand.cpp",
1242 "tools/debugger/SkJsonWriteBuffer.cpp",
1243 "tools/debugger/SkObjectParser.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001244 "tools/picture_utils.cpp",
1245 "tools/random_parse_path.cpp",
1246 "tools/sk_tool_utils.cpp",
1247 "tools/sk_tool_utils_font.cpp",
1248 "tools/timer/Timer.cpp",
Brian Osman53136aa2017-07-20 15:43:35 -04001249 "tools/trace/SkChromeTracingTracer.cpp",
1250 "tools/trace/SkChromeTracingTracer.h",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001251 "tools/trace/SkDebugfTracer.cpp",
1252 "tools/trace/SkDebugfTracer.h",
Brian Osman53136aa2017-07-20 15:43:35 -04001253 "tools/trace/SkEventTracingPriv.cpp",
1254 "tools/trace/SkEventTracingPriv.h",
mtkleinc095df52016-08-24 12:23:52 -07001255 ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001256 libs = []
1257 if (is_ios) {
1258 sources += [ "tools/ios_utils.m" ]
1259 libs += [ "Foundation.framework" ]
1260 }
mtkleinc095df52016-08-24 12:23:52 -07001261 deps = [
mtklein046cb562016-09-16 10:23:12 -07001262 ":common_flags",
mtkleinc095df52016-08-24 12:23:52 -07001263 ":flags",
1264 "//third_party/libpng",
1265 ]
1266 public_deps = [
1267 "//third_party/jsoncpp",
1268 ]
Hal Canarya4935102017-12-08 13:35:47 -05001269 if (skia_embed_resources) {
1270 defines = [ "SK_EMBED_RESOURCES" ]
1271 sources += [ "$target_gen_dir/binary_resources.cpp" ]
1272 deps += [ ":binary_resources.cpp" ]
1273 }
mtkleinc095df52016-08-24 12:23:52 -07001274 }
mtklein25c81d42016-07-27 13:55:26 -07001275
Mike Klein6e744122016-10-27 12:21:40 -04001276 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -07001277 test_lib("gm") {
1278 public_include_dirs = [ "gm" ]
1279 sources = gm_sources
1280 deps = [
scroggo19b91532016-10-24 09:03:26 -07001281 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001282 ":gpu_tool_utils",
1283 ":skia",
1284 ":tool_utils",
1285 ]
1286 }
mtklein25c81d42016-07-27 13:55:26 -07001287
Mike Klein6e744122016-10-27 12:21:40 -04001288 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07001289 test_lib("tests") {
1290 public_include_dirs = [ "tests" ]
Mike Klein6e744122016-10-27 12:21:40 -04001291 sources = tests_sources + pathops_tests_sources
mtkleina45be612016-08-29 15:22:10 -07001292 if (!fontmgr_android_enabled) {
Mike Klein6e744122016-10-27 12:21:40 -04001293 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -07001294 }
mtkleinc095df52016-08-24 12:23:52 -07001295 deps = [
fmalita6cf896d2016-08-25 08:44:35 -07001296 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001297 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001298 ":skia",
1299 ":tool_utils",
1300 "//third_party/libpng",
1301 "//third_party/zlib",
1302 ]
Mike Kleind63442d2017-03-27 14:16:04 -04001303 public_deps = [
1304 ":gpu_tool_utils", # Test.h #includes headers from this target.
1305 ]
mtkleinc095df52016-08-24 12:23:52 -07001306 }
mtklein2f3416d2016-08-02 16:02:05 -07001307
Mike Klein6e744122016-10-27 12:21:40 -04001308 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07001309 test_lib("bench") {
1310 public_include_dirs = [ "bench" ]
1311 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -07001312 deps = [
1313 ":flags",
1314 ":gm",
1315 ":gpu_tool_utils",
1316 ":skia",
1317 ":tool_utils",
1318 ]
1319 }
mtklein2b6870c2016-07-28 14:17:33 -07001320
mtkleinc095df52016-08-24 12:23:52 -07001321 test_lib("experimental_svg_model") {
1322 public_include_dirs = [ "experimental/svg/model" ]
1323 sources = [
1324 "experimental/svg/model/SkSVGAttribute.cpp",
1325 "experimental/svg/model/SkSVGAttributeParser.cpp",
1326 "experimental/svg/model/SkSVGCircle.cpp",
Florin Malitace8840e2016-12-08 09:26:47 -05001327 "experimental/svg/model/SkSVGClipPath.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001328 "experimental/svg/model/SkSVGContainer.cpp",
1329 "experimental/svg/model/SkSVGDOM.cpp",
1330 "experimental/svg/model/SkSVGEllipse.cpp",
Florin Malitadf007e12017-10-09 15:14:13 -04001331 "experimental/svg/model/SkSVGGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001332 "experimental/svg/model/SkSVGLine.cpp",
fmalita28d5b722016-09-12 17:06:47 -07001333 "experimental/svg/model/SkSVGLinearGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001334 "experimental/svg/model/SkSVGNode.cpp",
1335 "experimental/svg/model/SkSVGPath.cpp",
Florin Malita1aa1bb62017-10-11 14:34:33 -04001336 "experimental/svg/model/SkSVGPattern.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001337 "experimental/svg/model/SkSVGPoly.cpp",
Florin Malitacc6cc292017-10-09 16:05:30 -04001338 "experimental/svg/model/SkSVGRadialGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001339 "experimental/svg/model/SkSVGRect.cpp",
1340 "experimental/svg/model/SkSVGRenderContext.cpp",
1341 "experimental/svg/model/SkSVGSVG.cpp",
1342 "experimental/svg/model/SkSVGShape.cpp",
fmalita28d5b722016-09-12 17:06:47 -07001343 "experimental/svg/model/SkSVGStop.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001344 "experimental/svg/model/SkSVGTransformableNode.cpp",
Florin Malita6a69c052017-10-11 14:02:11 -04001345 "experimental/svg/model/SkSVGUse.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001346 "experimental/svg/model/SkSVGValue.cpp",
1347 ]
1348 deps = [
1349 ":skia",
1350 ]
1351 }
fmalitaa2b9fdf2016-08-03 19:53:36 -07001352
Kevin Lubickebf648e2017-09-21 13:45:16 -04001353 if (target_cpu != "wasm") {
1354 test_lib("views") {
1355 public_include_dirs = [ "include/views" ]
1356 sources = [
1357 "src/views/SkEvent.cpp",
1358 "src/views/SkEventSink.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001359 "src/views/SkTouchGesture.cpp",
1360 "src/views/SkView.cpp",
Brian Osman2dd96932016-10-18 15:33:53 -04001361 ]
Brian Osman34755e22016-12-05 09:46:02 -05001362 }
Brian Osman16adfa32016-10-18 14:42:44 -04001363 }
1364
Mike Klein38af9432016-11-11 11:39:44 -05001365 if (skia_use_lua) {
1366 test_lib("lua") {
1367 public_include_dirs = []
1368 sources = [
1369 "src/utils/SkLua.cpp",
1370 "src/utils/SkLuaCanvas.cpp",
1371 ]
1372 deps = [
1373 "//third_party/lua",
1374 ]
1375 }
1376
Mike Kleine6682eb2017-01-05 10:54:57 -05001377 test_app("lua_app") {
Mike Klein38af9432016-11-11 11:39:44 -05001378 sources = [
1379 "tools/lua/lua_app.cpp",
1380 ]
1381 deps = [
1382 ":lua",
1383 ":skia",
1384 "//third_party/lua",
1385 ]
Mike Klein38af9432016-11-11 11:39:44 -05001386 }
1387
Mike Kleine6682eb2017-01-05 10:54:57 -05001388 test_app("lua_pictures") {
Mike Klein38af9432016-11-11 11:39:44 -05001389 sources = [
1390 "tools/lua/lua_pictures.cpp",
1391 ]
1392 deps = [
1393 ":flags",
1394 ":lua",
1395 ":skia",
1396 ":tool_utils",
1397 "//third_party/lua",
1398 ]
Mike Klein38af9432016-11-11 11:39:44 -05001399 }
1400 }
1401
Cary Clark8032b982017-07-28 11:04:54 -04001402 test_app("bookmaker") {
1403 sources = [
1404 "tools/bookmaker/bookmaker.cpp",
Cary Clarkbef063a2017-10-31 15:44:45 -04001405 "tools/bookmaker/cataloger.cpp",
Cary Clarka560c472017-11-27 10:44:06 -05001406 "tools/bookmaker/definition.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001407 "tools/bookmaker/fiddleParser.cpp",
1408 "tools/bookmaker/includeParser.cpp",
1409 "tools/bookmaker/includeWriter.cpp",
1410 "tools/bookmaker/mdOut.cpp",
1411 "tools/bookmaker/parserCommon.cpp",
1412 "tools/bookmaker/spellCheck.cpp",
1413 ]
1414 deps = [
1415 ":flags",
1416 ":skia",
1417 ":tool_utils",
Cary Clark2f466242017-12-11 16:03:17 -05001418 "//third_party/jsoncpp",
Cary Clark8032b982017-07-28 11:04:54 -04001419 ]
1420 }
1421
Kevin Lubickebf648e2017-09-21 13:45:16 -04001422 if (target_cpu != "wasm") {
1423 import("gn/samples.gni")
1424 test_lib("samples") {
1425 public_include_dirs = [ "samplecode" ]
1426 include_dirs = [ "experimental" ]
1427 sources = samples_sources + [
Kevin Lubickebf648e2017-09-21 13:45:16 -04001428 # Relocating these files here, so that clients don't try to build them while they're
1429 # still in active development. Clang's thread safety analysis gets tripped up by
1430 # conditional locks.
1431 "src/core/SkThreadedBMPDevice.cpp",
1432 "src/core/SkThreadedBMPDevice.h",
1433 ]
1434 deps = [
1435 ":experimental_svg_model",
1436 ":flags",
1437 ":gm",
1438 ":tool_utils",
1439 ":views",
1440 ":xml",
1441 ]
Mike Klein38af9432016-11-11 11:39:44 -05001442
Kevin Lubickebf648e2017-09-21 13:45:16 -04001443 if (skia_use_lua) {
1444 sources += [ "samplecode/SampleLua.cpp" ]
1445 deps += [
1446 ":lua",
1447 "//third_party/lua",
1448 ]
1449 }
1450 }
1451 test_app("dm") {
1452 sources = [
1453 "dm/DM.cpp",
Mike Klein31868212017-11-06 12:02:47 -05001454 "dm/DMFontMgr.cpp",
Hal Canaryb6c5e5b2017-10-09 16:13:02 -04001455 "dm/DMGpuTestProcs.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001456 "dm/DMJsonWriter.cpp",
1457 "dm/DMSrcSink.cpp",
1458 ]
1459 include_dirs = [ "tests" ]
1460 deps = [
1461 ":common_flags",
1462 ":experimental_svg_model",
1463 ":flags",
1464 ":gm",
1465 ":gpu_tool_utils",
1466 ":skia",
1467 ":tests",
1468 ":tool_utils",
1469 "//third_party/jsoncpp",
1470 "//third_party/libpng",
Mike Klein38af9432016-11-11 11:39:44 -05001471 ]
1472 }
Brian Osman16adfa32016-10-18 14:42:44 -04001473 }
1474
Mike Klein06432b22017-03-21 13:14:33 -04001475 test_app("ok") {
1476 sources = [
Mike Klein361dde02017-11-07 08:14:52 -05001477 "dm/DMFontMgr.cpp",
Mike Klein06432b22017-03-21 13:14:33 -04001478 "tools/ok.cpp",
Mike Klein7ac04832017-03-25 11:29:41 -04001479 "tools/ok_dsts.cpp",
Mike Klein154e6da2017-07-26 15:13:47 -04001480 "tools/ok_engines.cpp",
Mike Klein7ac04832017-03-25 11:29:41 -04001481 "tools/ok_srcs.cpp",
Mike Kleind63442d2017-03-27 14:16:04 -04001482 "tools/ok_test.cpp",
Mike Kleinf5d1a552017-03-25 12:32:22 -04001483 "tools/ok_vias.cpp",
Mike Klein06432b22017-03-21 13:14:33 -04001484 ]
1485 deps = [
Mike Klein4f6e2712017-08-11 10:37:35 -04001486 ":bench",
Mike Klein06432b22017-03-21 13:14:33 -04001487 ":gm",
1488 ":skia",
Mike Kleind63442d2017-03-27 14:16:04 -04001489 ":tests",
Mike Klein62669ad2017-05-09 16:03:07 -04001490 ":tool_utils",
Mike Klein06432b22017-03-21 13:14:33 -04001491 ]
1492 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001493 test_app("nanobench") {
mtklein2b6870c2016-07-28 14:17:33 -07001494 sources = [
1495 "bench/nanobench.cpp",
1496 ]
1497 deps = [
1498 ":bench",
mtklein046cb562016-09-16 10:23:12 -07001499 ":common_flags",
fmalita6519c212016-09-14 08:05:17 -07001500 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001501 ":flags",
1502 ":gm",
1503 ":gpu_tool_utils",
1504 ":skia",
1505 ":tool_utils",
1506 "//third_party/jsoncpp",
1507 ]
mtklein2b6870c2016-07-28 14:17:33 -07001508 }
halcanary19a97202016-08-03 15:08:04 -07001509
Ravi Mistry10d36c52017-01-31 09:49:18 -05001510 test_app("skpinfo") {
1511 sources = [
1512 "tools/skpinfo.cpp",
1513 ]
1514 deps = [
1515 ":flags",
1516 ":skia",
1517 ]
1518 }
1519
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001520 if (skia_enable_gpu) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001521 test_app("skpbench") {
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001522 sources = [
1523 "tools/skpbench/skpbench.cpp",
1524 ]
1525 deps = [
1526 ":flags",
1527 ":gpu_tool_utils",
1528 ":skia",
1529 ":tool_utils",
1530 ]
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001531 }
csmartdalton4b5179b2016-09-19 11:03:58 -07001532 }
1533
Mike Klein7d302882016-11-03 14:06:31 -04001534 # We can't yet build ICU on iOS or Windows.
Kevin Lubickebf648e2017-09-21 13:45:16 -04001535 if (!is_ios && !is_win && target_cpu != "wasm") {
Mike Kleine6682eb2017-01-05 10:54:57 -05001536 test_app("sktexttopdf-hb") {
mtklein6f5df6a2016-08-29 16:01:10 -07001537 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001538 "tools/shape/SkShaper_harfbuzz.cpp",
1539 "tools/shape/using_skia_and_harfbuzz.cpp",
mtklein6f5df6a2016-08-29 16:01:10 -07001540 ]
1541 deps = [
1542 ":skia",
1543 "//third_party/harfbuzz",
Ben Wagnera25fbef2017-08-30 13:56:19 -04001544 "//third_party/icu",
mtklein6f5df6a2016-08-29 16:01:10 -07001545 ]
mtklein6f5df6a2016-08-29 16:01:10 -07001546 }
halcanary19a97202016-08-03 15:08:04 -07001547 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001548 test_app("sktexttopdf") {
halcanary3eee9d92016-09-10 07:01:53 -07001549 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001550 "tools/shape/SkShaper_primitive.cpp",
1551 "tools/shape/using_skia_and_harfbuzz.cpp",
halcanary3eee9d92016-09-10 07:01:53 -07001552 ]
1553 deps = [
1554 ":skia",
1555 ]
halcanary3eee9d92016-09-10 07:01:53 -07001556 }
mtklein046cb562016-09-16 10:23:12 -07001557
Matt Sarett9f1c4032017-05-17 10:06:32 -04001558 test_app("create_flutter_test_images") {
1559 sources = [
1560 "tools/create_flutter_test_images.cpp",
1561 ]
1562 deps = [
1563 ":skia",
1564 ":tool_utils",
1565 ]
1566 }
1567
Ben Wagner219f3622017-07-17 15:32:25 -04001568 test_app("create_test_font") {
1569 sources = [
1570 "tools/create_test_font.cpp",
1571 ]
1572 deps = [
1573 ":skia",
1574 ]
1575 assert_no_deps = [
1576 # tool_utils requires the output of this app.
1577 ":tool_utils",
1578 ]
1579 }
1580
Mike Kleine6682eb2017-01-05 10:54:57 -05001581 test_app("get_images_from_skps") {
mtklein046cb562016-09-16 10:23:12 -07001582 sources = [
1583 "tools/get_images_from_skps.cpp",
1584 ]
1585 deps = [
1586 ":flags",
1587 ":skia",
1588 "//third_party/jsoncpp",
1589 ]
mtklein046cb562016-09-16 10:23:12 -07001590 }
mtkleinecbc5262016-09-22 11:51:24 -07001591
Mike Kleine6682eb2017-01-05 10:54:57 -05001592 test_app("colorspaceinfo") {
Matt Sarett8740d582016-11-11 13:59:14 -05001593 sources = [
1594 "tools/colorspaceinfo.cpp",
1595 ]
1596 deps = [
1597 ":flags",
1598 ":skia",
1599 ":tool_utils",
1600 ]
Matt Sarett8740d582016-11-11 13:59:14 -05001601 }
1602
Kevin Lubickebf648e2017-09-21 13:45:16 -04001603 if (!is_ios && target_cpu != "wasm") {
Mike Kleine6682eb2017-01-05 10:54:57 -05001604 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04001605 sources = [
1606 "tools/skiaserve/Request.cpp",
1607 "tools/skiaserve/Response.cpp",
1608 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001609 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1610 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1611 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1612 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1613 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1614 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1615 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1616 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1617 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05001618 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1619 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001620 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1621 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1622 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1623 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1624 ]
1625 deps = [
1626 ":flags",
1627 ":gpu_tool_utils",
1628 ":skia",
1629 ":tool_utils",
1630 "//third_party/jsoncpp",
1631 "//third_party/libmicrohttpd",
1632 "//third_party/libpng",
1633 ]
Mike Klein7d302882016-11-03 14:06:31 -04001634 }
mtkleinecbc5262016-09-22 11:51:24 -07001635 }
kjlubick14f984b2016-10-03 11:49:45 -07001636
Mike Kleine6682eb2017-01-05 10:54:57 -05001637 test_app("fuzz") {
kjlubick14f984b2016-10-03 11:49:45 -07001638 sources = [
1639 "fuzz/FilterFuzz.cpp",
Hal Canary24ac42b2017-02-14 13:35:14 -05001640 "fuzz/FuzzCanvas.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05001641 "fuzz/FuzzDrawFunctions.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001642 "fuzz/FuzzGradients.cpp",
1643 "fuzz/FuzzParsePath.cpp",
1644 "fuzz/FuzzPathop.cpp",
1645 "fuzz/FuzzScaleToSides.cpp",
1646 "fuzz/fuzz.cpp",
1647 ]
1648 deps = [
1649 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04001650 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001651 ":skia",
Hal Canarydb683012016-11-23 08:55:18 -07001652 ":tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001653 ]
kjlubick14f984b2016-10-03 11:49:45 -07001654 }
Mike Klein38312422016-10-05 15:41:01 -04001655
Mike Kleine6682eb2017-01-05 10:54:57 -05001656 test_app("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04001657 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04001658 rebase_path("tests/skia_test.cpp"),
1659 rebase_path("tests/Test.cpp"),
1660 ]
caryclark9feb6322016-10-25 08:58:26 -07001661 deps = [
1662 ":flags",
1663 ":gpu_tool_utils",
1664 ":skia",
1665 ":tool_utils",
1666 ]
caryclark9feb6322016-10-25 08:58:26 -07001667 }
1668
Mike Kleine6682eb2017-01-05 10:54:57 -05001669 test_app("dump_record") {
Mike Klein38312422016-10-05 15:41:01 -04001670 sources = [
1671 "tools/DumpRecord.cpp",
1672 "tools/dump_record.cpp",
1673 ]
1674 deps = [
1675 ":flags",
1676 ":skia",
1677 ]
Mike Klein38312422016-10-05 15:41:01 -04001678 }
bungemanfe917272016-10-13 17:36:40 -04001679
Mike Kleine6682eb2017-01-05 10:54:57 -05001680 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04001681 sources = [
1682 "tools/skdiff/skdiff.cpp",
1683 "tools/skdiff/skdiff_html.cpp",
1684 "tools/skdiff/skdiff_main.cpp",
1685 "tools/skdiff/skdiff_utils.cpp",
1686 ]
1687 deps = [
1688 ":skia",
1689 ":tool_utils",
1690 ]
bungemanfe917272016-10-13 17:36:40 -04001691 }
halcanarya73d76a2016-10-17 13:19:02 -07001692
Mike Kleine6682eb2017-01-05 10:54:57 -05001693 test_app("skp_parser") {
halcanarya73d76a2016-10-17 13:19:02 -07001694 sources = [
1695 "tools/skp_parser.cpp",
1696 ]
1697 deps = [
1698 ":skia",
1699 ":tool_utils",
1700 "//third_party/jsoncpp",
1701 ]
halcanarya73d76a2016-10-17 13:19:02 -07001702 }
Brian Osman16adfa32016-10-18 14:42:44 -04001703
Hal Canaryd7b38452017-12-11 17:46:26 -05001704 if (!is_win && skia_enable_gpu) {
1705 test_lib("skqp_lib") {
1706 public_include_dirs = [ "tools/skqp" ]
Hal Canary75427132017-10-11 16:00:31 -04001707 sources = [
Hal Canaryd7b38452017-12-11 17:46:26 -05001708 "dm/DMFontMgr.cpp",
Hal Canary75427132017-10-11 16:00:31 -04001709 "dm/DMGpuTestProcs.cpp",
Hal Canaryd7b38452017-12-11 17:46:26 -05001710 "tools/skqp/gm_knowledge.cpp",
1711 "tools/skqp/gm_runner.cpp",
Hal Canary75427132017-10-11 16:00:31 -04001712 ]
1713 deps = [
1714 ":gm",
1715 ":gpu_tool_utils",
1716 ":skia",
1717 ":tests",
Hal Canaryd7b38452017-12-11 17:46:26 -05001718 ":tool_utils",
1719 ]
1720 }
1721 test_app("skqp") {
1722 sources = [
1723 "tools/skqp/skqp.cpp",
1724 ]
1725 deps = [
1726 ":skia",
1727 ":skqp_lib",
Hal Canary75427132017-10-11 16:00:31 -04001728 "//third_party/googletest",
1729 ]
1730 }
1731 }
1732
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001733 if (skia_enable_gpu) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001734 test_lib("sk_app") {
1735 public_include_dirs = [ "tools/sk_app" ]
Brian Osman16adfa32016-10-18 14:42:44 -04001736 sources = [
Brian Osmaneff04b52017-11-21 13:18:02 -05001737 "tools/sk_app/CommandSet.cpp",
1738 "tools/sk_app/GLWindowContext.cpp",
1739 "tools/sk_app/Window.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001740 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001741 libs = []
Brian Osman16adfa32016-10-18 14:42:44 -04001742
Jim Van Verth4e56a912016-10-21 10:58:52 -04001743 if (is_android) {
1744 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001745 "tools/sk_app/android/GLWindowContext_android.cpp",
1746 "tools/sk_app/android/RasterWindowContext_android.cpp",
1747 "tools/sk_app/android/Window_android.cpp",
1748 "tools/sk_app/android/main_android.cpp",
1749 "tools/sk_app/android/surface_glue_android.cpp",
Jim Van Verth4e56a912016-10-21 10:58:52 -04001750 ]
Brian Osman462334e2017-02-09 11:22:57 -05001751 libs += [ "android" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001752 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001753 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001754 "tools/sk_app/unix/GLWindowContext_unix.cpp",
1755 "tools/sk_app/unix/RasterWindowContext_unix.cpp",
1756 "tools/sk_app/unix/Window_unix.cpp",
Brian Osmanfa916272017-12-01 09:18:20 -05001757 "tools/sk_app/unix/keysym2ucs.c",
Brian Osmaneff04b52017-11-21 13:18:02 -05001758 "tools/sk_app/unix/main_unix.cpp",
Brian Osman2dd96932016-10-18 15:33:53 -04001759 ]
Brian Osmanfa916272017-12-01 09:18:20 -05001760 libs += [
1761 "GL",
1762 "X11",
1763 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001764 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001765 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001766 "tools/sk_app/win/GLWindowContext_win.cpp",
1767 "tools/sk_app/win/RasterWindowContext_win.cpp",
1768 "tools/sk_app/win/Window_win.cpp",
1769 "tools/sk_app/win/main_win.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001770 ]
Brian Salomon194db172017-08-17 14:37:06 -04001771 if (skia_use_angle) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001772 sources += [ "tools/sk_app/win/ANGLEWindowContext_win.cpp" ]
Brian Salomon194db172017-08-17 14:37:06 -04001773 }
Mike Klein43c25262016-10-20 10:17:47 -04001774 } else if (is_mac) {
1775 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001776 "tools/sk_app/mac/GLWindowContext_mac.cpp",
1777 "tools/sk_app/mac/RasterWindowContext_mac.cpp",
1778 "tools/sk_app/mac/Window_mac.cpp",
1779 "tools/sk_app/mac/main_mac.cpp",
Mike Klein43c25262016-10-20 10:17:47 -04001780 ]
Brian Osmanfa916272017-12-01 09:18:20 -05001781 libs += [
1782 "QuartzCore.framework",
1783 "Cocoa.framework",
1784 "Foundation.framework",
1785 ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001786 } else if (is_ios) {
1787 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001788 "tools/sk_app/ios/GLWindowContext_ios.cpp",
1789 "tools/sk_app/ios/RasterWindowContext_ios.cpp",
1790 "tools/sk_app/ios/Window_ios.cpp",
1791 "tools/sk_app/ios/main_ios.cpp",
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001792 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001793 }
1794
1795 if (skia_use_vulkan) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001796 sources += [ "tools/sk_app/VulkanWindowContext.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001797 if (is_android) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001798 sources += [ "tools/sk_app/android/VulkanWindowContext_android.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001799 } else if (is_linux) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001800 sources += [ "tools/sk_app/unix/VulkanWindowContext_unix.cpp" ]
Brian Osman2dd96932016-10-18 15:33:53 -04001801 libs += [ "X11-xcb" ]
1802 } else if (is_win) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001803 sources += [ "tools/sk_app/win/VulkanWindowContext_win.cpp" ]
Brian Osman16adfa32016-10-18 14:42:44 -04001804 }
1805 }
1806
Brian Osman16adfa32016-10-18 14:42:44 -04001807 deps = [
Brian Osman16adfa32016-10-18 14:42:44 -04001808 ":gpu_tool_utils",
Brian Osman16adfa32016-10-18 14:42:44 -04001809 ":skia",
1810 ":tool_utils",
1811 ":views",
Brian Osman16adfa32016-10-18 14:42:44 -04001812 ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001813 if (is_android) {
1814 deps += [ "//third_party/native_app_glue" ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001815 } else if (is_mac || is_ios) {
Mike Klein43c25262016-10-20 10:17:47 -04001816 deps += [ "//third_party/libsdl" ]
1817 }
Brian Salomon194db172017-08-17 14:37:06 -04001818 if (skia_use_angle) {
1819 deps += [ "//third_party/angle2" ]
1820 }
Mike Kleina92c3832016-12-08 09:49:39 -05001821 }
Brian Osman16adfa32016-10-18 14:42:44 -04001822 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05001823
Brian Osmaneff04b52017-11-21 13:18:02 -05001824 if (skia_enable_gpu) {
1825 test_app("viewer") {
1826 is_shared_library = is_android
Jim Van Verth329c5a62017-11-29 11:42:33 -05001827 if (is_ios) {
1828 bundle_ios_data = true
1829 }
Brian Osmaneff04b52017-11-21 13:18:02 -05001830 sources = [
1831 "tools/viewer/GMSlide.cpp",
Brian Osmand67e5182017-12-08 16:46:09 -05001832 "tools/viewer/ImGuiLayer.cpp",
Brian Osmaneff04b52017-11-21 13:18:02 -05001833 "tools/viewer/ImageSlide.cpp",
1834 "tools/viewer/SKPSlide.cpp",
1835 "tools/viewer/SampleSlide.cpp",
1836 "tools/viewer/Viewer.cpp",
1837 ]
1838 libs = []
1839
1840 include_dirs = []
1841 deps = [
1842 ":flags",
1843 ":gm",
1844 ":gpu_tool_utils",
1845 ":samples",
1846 ":sk_app",
1847 ":skia",
1848 ":tool_utils",
1849 ":views",
1850 "//third_party/imgui",
1851 "//third_party/jsoncpp",
1852 ]
1853 }
1854 }
1855
1856 if (skia_enable_gpu && !skia_use_angle && (is_linux || is_win || is_mac)) {
1857 test_app("HelloWorld") {
1858 sources = [
1859 "example/HelloWorld.cpp",
1860 ]
1861 libs = []
1862
1863 include_dirs = []
1864 deps = [
1865 ":flags",
1866 ":gpu_tool_utils",
1867 ":sk_app",
1868 ":skia",
1869 ":tool_utils",
1870 ":views",
1871 ]
1872 }
1873 }
1874
Jim Van Verthecfed2b2017-08-30 14:02:50 -04001875 if (skia_enable_gpu && (is_linux || is_mac || is_ios)) {
Jim Van Verth4c70c752017-07-11 12:03:01 -04001876 test_app("SkiaSDLExample") {
1877 sources = [
1878 "example/SkiaSDLExample.cpp",
1879 ]
1880 libs = []
1881 include_dirs = []
1882 deps = [
1883 ":gpu_tool_utils",
1884 ":skia",
1885 "//third_party/libsdl",
1886 ]
1887 }
1888 }
1889
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001890 if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
1891 action_foreach("generate_mocs") {
1892 script = "gn/call.py"
1893 sources = [
1894 "tools/mdbviz/MainWindow.h",
1895 ]
1896 outputs = [
1897 "$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp",
1898 ]
1899 args = [
1900 "$skia_qt_path" + "/bin/moc",
1901 "{{source}}",
1902 "-o",
1903 "gen/mdbviz/{{source_name_part}}_moc.cpp",
1904 ]
1905 }
1906 action_foreach("generate_resources") {
1907 script = "gn/call.py"
1908 sources = [
1909 "tools/mdbviz/resources.qrc",
1910 ]
1911 outputs = [
1912 "$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp",
1913 ]
1914 args = [
1915 "$skia_qt_path" + "/bin/rcc",
1916 "{{source}}",
1917 "-o",
1918 "gen/mdbviz/{{source_name_part}}_res.cpp",
1919 ]
1920 }
1921 test_app("mdbviz") {
1922 if (is_win) {
1923 # on Windows we need to disable some exception handling warnings due to the Qt headers
1924 cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
1925 }
1926 sources = [
Robert Phillips5fccf9d2017-09-05 15:10:12 -04001927 "tools/UrlDataManager.cpp",
1928 "tools/debugger/SkDebugCanvas.cpp",
1929 "tools/debugger/SkDrawCommand.cpp",
1930 "tools/debugger/SkJsonWriteBuffer.cpp",
1931 "tools/debugger/SkObjectParser.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001932 "tools/mdbviz/MainWindow.cpp",
Robert Phillipsdeaf5682017-09-06 13:07:21 -04001933 "tools/mdbviz/Model.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001934 "tools/mdbviz/main.cpp",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04001935 "tools/picture_utils.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001936
1937 # generated files
1938 "$target_gen_dir/mdbviz/MainWindow_moc.cpp",
1939 "$target_gen_dir/mdbviz/resources_res.cpp",
1940 ]
1941 lib_dirs = [ "$skia_qt_path/lib" ]
1942 libs = [
1943 "Qt5Core.lib",
1944 "Qt5Gui.lib",
1945 "Qt5Widgets.lib",
1946 ]
1947 include_dirs = [
1948 "$skia_qt_path/include",
Robert Phillips276066b2017-09-06 17:17:44 -04001949 "$skia_qt_path/include/QtCore",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001950 "$skia_qt_path/include/QtWidgets",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04001951 "tools",
1952 "tools/debugger",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001953 ]
1954 deps = [
1955 ":generate_mocs",
1956 ":generate_resources",
1957 ":skia",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04001958 "//third_party/jsoncpp",
1959 "//third_party/libpng",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001960 ]
1961 }
1962 }
1963
Mike Kleine459afd2017-03-03 09:21:30 -05001964 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05001965 copy("gdbserver") {
1966 sources = [
1967 "$ndk/$ndk_gdbserver",
1968 ]
1969 outputs = [
1970 "$root_out_dir/gdbserver",
1971 ]
1972 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05001973 }
mtklein25c81d42016-07-27 13:55:26 -07001974}
Mike Kleinc55a6cb2017-06-28 13:21:47 -04001975
1976if (skia_jumper_clang != "") {
1977 action("regen_jumper") {
1978 script = "src/jumper/build_stages.py"
1979
1980 inputs = [
1981 "src/jumper/SkJumper_stages.cpp",
Mike Klein9b2f69b2017-09-12 16:40:53 -04001982 "src/jumper/SkJumper_stages_lowp.cpp",
Mike Kleinc55a6cb2017-06-28 13:21:47 -04001983 ]
1984
1985 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it.
1986 outputs = [
1987 "$target_out_dir/" +
1988 rebase_path("src/jumper/SkJumper_generated.S", target_out_dir),
1989 "$target_out_dir/" +
1990 rebase_path("src/jumper/SkJumper_generated_win.S", target_out_dir),
1991 ]
1992
1993 args = [
1994 skia_jumper_clang,
1995 skia_jumper_objdump,
1996 skia_jumper_ccache,
1997 ] + rebase_path(inputs) + rebase_path(outputs)
1998 }
1999}