blob: 64792d22956424db028c2484414dd474522d5a35 [file] [log] [blame]
mtkleinc04ff472016-06-23 10:29:30 -07001# Copyright 2016 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
Brian Osmanf2c90142017-07-13 15:50:03 -04006import("gn/flutter_defines.gni")
mikejurka8c24f4f2016-09-12 16:51:58 -07007import("gn/shared_sources.gni")
brettwb9447282016-09-01 14:24:39 -07008
Forrest Reiling30229ac2017-04-17 13:36:39 -07009if (is_fuchsia) {
10 import("//build/vulkan/config.gni")
11}
12
Mike Klein3669a822017-03-03 10:55:02 -050013if (!defined(is_skia_standalone)) {
14 is_skia_standalone = false
15}
16is_skia_dev_build = is_skia_standalone && !is_official_build
17
mtkleinc04ff472016-06-23 10:29:30 -070018declare_args() {
Mike Kleinc168a3a2016-11-14 14:53:13 +000019 skia_use_angle = false
Kevin Lubick4a24e102017-03-29 11:19:01 -040020 skia_use_egl = false
mtklein63213812016-08-24 09:55:56 -070021 skia_use_expat = true
mtklein3cc22182016-08-29 13:26:14 -070022 skia_use_fontconfig = is_linux
mtkleincdedd0e2016-09-12 15:15:44 -070023 skia_use_freetype = is_android || is_fuchsia || is_linux
Mike Klein7d302882016-11-03 14:06:31 -040024 skia_use_icu = !is_fuchsia && !is_ios && !is_win # TODO: Windows
mtklein63213812016-08-24 09:55:56 -070025 skia_use_libjpeg_turbo = true
26 skia_use_libpng = true
mtkleineb3c4252016-08-23 07:38:09 -070027 skia_use_libwebp = !is_fuchsia
Mike Kleinfae86b72018-01-08 15:49:09 -050028 skia_use_lua = is_skia_dev_build && !is_ios
Mike Klein10d665d2016-11-01 11:46:10 -040029 skia_use_piex = !is_win
mtklein63213812016-08-24 09:55:56 -070030 skia_use_zlib = true
Greg Daniele5ddff52017-07-05 16:49:36 -040031 skia_use_metal = false
Mike Klein36f182f2017-10-20 12:33:53 -040032 skia_use_libheif = is_skia_dev_build
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 = [
Florin Malita4aa44412017-12-19 12:21:02 -05001281 ":experimental_sksg",
scroggo19b91532016-10-24 09:03:26 -07001282 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001283 ":gpu_tool_utils",
1284 ":skia",
1285 ":tool_utils",
1286 ]
1287 }
mtklein25c81d42016-07-27 13:55:26 -07001288
Mike Klein6e744122016-10-27 12:21:40 -04001289 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07001290 test_lib("tests") {
1291 public_include_dirs = [ "tests" ]
Mike Klein6e744122016-10-27 12:21:40 -04001292 sources = tests_sources + pathops_tests_sources
mtkleina45be612016-08-29 15:22:10 -07001293 if (!fontmgr_android_enabled) {
Mike Klein6e744122016-10-27 12:21:40 -04001294 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -07001295 }
mtkleinc095df52016-08-24 12:23:52 -07001296 deps = [
Florin Malita4aa44412017-12-19 12:21:02 -05001297 ":experimental_sksg",
fmalita6cf896d2016-08-25 08:44:35 -07001298 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001299 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001300 ":skia",
1301 ":tool_utils",
1302 "//third_party/libpng",
1303 "//third_party/zlib",
1304 ]
Mike Kleind63442d2017-03-27 14:16:04 -04001305 public_deps = [
1306 ":gpu_tool_utils", # Test.h #includes headers from this target.
1307 ]
mtkleinc095df52016-08-24 12:23:52 -07001308 }
mtklein2f3416d2016-08-02 16:02:05 -07001309
Mike Klein6e744122016-10-27 12:21:40 -04001310 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07001311 test_lib("bench") {
1312 public_include_dirs = [ "bench" ]
1313 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -07001314 deps = [
1315 ":flags",
1316 ":gm",
1317 ":gpu_tool_utils",
1318 ":skia",
1319 ":tool_utils",
1320 ]
1321 }
mtklein2b6870c2016-07-28 14:17:33 -07001322
Florin Malita094ccde2017-12-30 12:27:00 -05001323 test_lib("experimental_skotty") {
1324 public_include_dirs = [ "experimental/skotty" ]
1325 include_dirs = [ "tools" ]
1326 sources = [
1327 "experimental/skotty/Skotty.cpp",
1328 "experimental/skotty/SkottyAnimator.cpp",
1329 "experimental/skotty/SkottyProperties.cpp",
1330 ]
1331 deps = [
1332 ":experimental_sksg",
1333 ":skia",
1334 "//third_party/jsoncpp",
1335 ]
1336 }
1337
mtkleinc095df52016-08-24 12:23:52 -07001338 test_lib("experimental_svg_model") {
1339 public_include_dirs = [ "experimental/svg/model" ]
1340 sources = [
1341 "experimental/svg/model/SkSVGAttribute.cpp",
1342 "experimental/svg/model/SkSVGAttributeParser.cpp",
1343 "experimental/svg/model/SkSVGCircle.cpp",
Florin Malitace8840e2016-12-08 09:26:47 -05001344 "experimental/svg/model/SkSVGClipPath.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001345 "experimental/svg/model/SkSVGContainer.cpp",
1346 "experimental/svg/model/SkSVGDOM.cpp",
1347 "experimental/svg/model/SkSVGEllipse.cpp",
Florin Malitadf007e12017-10-09 15:14:13 -04001348 "experimental/svg/model/SkSVGGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001349 "experimental/svg/model/SkSVGLine.cpp",
fmalita28d5b722016-09-12 17:06:47 -07001350 "experimental/svg/model/SkSVGLinearGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001351 "experimental/svg/model/SkSVGNode.cpp",
1352 "experimental/svg/model/SkSVGPath.cpp",
Florin Malita1aa1bb62017-10-11 14:34:33 -04001353 "experimental/svg/model/SkSVGPattern.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001354 "experimental/svg/model/SkSVGPoly.cpp",
Florin Malitacc6cc292017-10-09 16:05:30 -04001355 "experimental/svg/model/SkSVGRadialGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001356 "experimental/svg/model/SkSVGRect.cpp",
1357 "experimental/svg/model/SkSVGRenderContext.cpp",
1358 "experimental/svg/model/SkSVGSVG.cpp",
1359 "experimental/svg/model/SkSVGShape.cpp",
fmalita28d5b722016-09-12 17:06:47 -07001360 "experimental/svg/model/SkSVGStop.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001361 "experimental/svg/model/SkSVGTransformableNode.cpp",
Florin Malita6a69c052017-10-11 14:02:11 -04001362 "experimental/svg/model/SkSVGUse.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001363 "experimental/svg/model/SkSVGValue.cpp",
1364 ]
1365 deps = [
1366 ":skia",
1367 ]
1368 }
fmalitaa2b9fdf2016-08-03 19:53:36 -07001369
Florin Malita4aa44412017-12-19 12:21:02 -05001370 test_lib("experimental_sksg") {
1371 public_include_dirs = [
1372 "experimental/sksg",
1373 "experimental/sksg/effects",
1374 "experimental/sksg/geometry",
1375 "experimental/sksg/paint",
1376 ]
1377 sources = [
1378 "experimental/sksg/SkSGDraw.cpp",
1379 "experimental/sksg/SkSGEffectNode.cpp",
1380 "experimental/sksg/SkSGGeometryNode.cpp",
1381 "experimental/sksg/SkSGGroup.cpp",
Florin Malita49328072018-01-08 12:51:12 -05001382 "experimental/sksg/SkSGImage.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001383 "experimental/sksg/SkSGInvalidationController.cpp",
1384 "experimental/sksg/SkSGNode.cpp",
1385 "experimental/sksg/SkSGPaintNode.cpp",
1386 "experimental/sksg/SkSGRenderNode.cpp",
Florin Malitac0034172018-01-08 16:42:59 -05001387 "experimental/sksg/effects/SkSGOpacityEffect.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001388 "experimental/sksg/effects/SkSGTransform.cpp",
Florin Malitae6345d92018-01-03 23:37:54 -05001389 "experimental/sksg/geometry/SkSGMerge.cpp",
Florin Malita047ae272017-12-27 11:13:13 -05001390 "experimental/sksg/geometry/SkSGPath.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001391 "experimental/sksg/geometry/SkSGRect.cpp",
Florin Malita51b8c892018-01-07 08:54:24 -05001392 "experimental/sksg/geometry/SkSGTrimEffect.cpp",
Florin Malita4aa44412017-12-19 12:21:02 -05001393 "experimental/sksg/paint/SkSGColor.cpp",
1394 ]
1395 deps = [
1396 ":skia",
1397 ]
1398 }
1399
Kevin Lubickebf648e2017-09-21 13:45:16 -04001400 if (target_cpu != "wasm") {
1401 test_lib("views") {
1402 public_include_dirs = [ "include/views" ]
1403 sources = [
1404 "src/views/SkEvent.cpp",
1405 "src/views/SkEventSink.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001406 "src/views/SkTouchGesture.cpp",
1407 "src/views/SkView.cpp",
Brian Osman2dd96932016-10-18 15:33:53 -04001408 ]
Brian Osman34755e22016-12-05 09:46:02 -05001409 }
Brian Osman16adfa32016-10-18 14:42:44 -04001410 }
1411
Mike Klein38af9432016-11-11 11:39:44 -05001412 if (skia_use_lua) {
1413 test_lib("lua") {
1414 public_include_dirs = []
1415 sources = [
1416 "src/utils/SkLua.cpp",
1417 "src/utils/SkLuaCanvas.cpp",
1418 ]
1419 deps = [
1420 "//third_party/lua",
1421 ]
1422 }
1423
Mike Kleine6682eb2017-01-05 10:54:57 -05001424 test_app("lua_app") {
Mike Klein38af9432016-11-11 11:39:44 -05001425 sources = [
1426 "tools/lua/lua_app.cpp",
1427 ]
1428 deps = [
1429 ":lua",
1430 ":skia",
1431 "//third_party/lua",
1432 ]
Mike Klein38af9432016-11-11 11:39:44 -05001433 }
1434
Mike Kleine6682eb2017-01-05 10:54:57 -05001435 test_app("lua_pictures") {
Mike Klein38af9432016-11-11 11:39:44 -05001436 sources = [
1437 "tools/lua/lua_pictures.cpp",
1438 ]
1439 deps = [
1440 ":flags",
1441 ":lua",
1442 ":skia",
1443 ":tool_utils",
1444 "//third_party/lua",
1445 ]
Mike Klein38af9432016-11-11 11:39:44 -05001446 }
1447 }
1448
Cary Clark8032b982017-07-28 11:04:54 -04001449 test_app("bookmaker") {
1450 sources = [
1451 "tools/bookmaker/bookmaker.cpp",
Cary Clarkbef063a2017-10-31 15:44:45 -04001452 "tools/bookmaker/cataloger.cpp",
Cary Clarka560c472017-11-27 10:44:06 -05001453 "tools/bookmaker/definition.cpp",
Cary Clark8032b982017-07-28 11:04:54 -04001454 "tools/bookmaker/fiddleParser.cpp",
1455 "tools/bookmaker/includeParser.cpp",
1456 "tools/bookmaker/includeWriter.cpp",
1457 "tools/bookmaker/mdOut.cpp",
1458 "tools/bookmaker/parserCommon.cpp",
1459 "tools/bookmaker/spellCheck.cpp",
1460 ]
1461 deps = [
1462 ":flags",
1463 ":skia",
1464 ":tool_utils",
Cary Clark2f466242017-12-11 16:03:17 -05001465 "//third_party/jsoncpp",
Cary Clark8032b982017-07-28 11:04:54 -04001466 ]
1467 }
1468
Kevin Lubickebf648e2017-09-21 13:45:16 -04001469 if (target_cpu != "wasm") {
1470 import("gn/samples.gni")
1471 test_lib("samples") {
1472 public_include_dirs = [ "samplecode" ]
1473 include_dirs = [ "experimental" ]
1474 sources = samples_sources + [
Kevin Lubickebf648e2017-09-21 13:45:16 -04001475 # Relocating these files here, so that clients don't try to build them while they're
1476 # still in active development. Clang's thread safety analysis gets tripped up by
1477 # conditional locks.
1478 "src/core/SkThreadedBMPDevice.cpp",
1479 "src/core/SkThreadedBMPDevice.h",
1480 ]
1481 deps = [
Florin Malita4aa44412017-12-19 12:21:02 -05001482 ":experimental_sksg",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001483 ":experimental_svg_model",
1484 ":flags",
1485 ":gm",
1486 ":tool_utils",
1487 ":views",
1488 ":xml",
1489 ]
Mike Klein38af9432016-11-11 11:39:44 -05001490
Kevin Lubickebf648e2017-09-21 13:45:16 -04001491 if (skia_use_lua) {
1492 sources += [ "samplecode/SampleLua.cpp" ]
1493 deps += [
1494 ":lua",
1495 "//third_party/lua",
1496 ]
1497 }
1498 }
1499 test_app("dm") {
1500 sources = [
1501 "dm/DM.cpp",
Mike Klein31868212017-11-06 12:02:47 -05001502 "dm/DMFontMgr.cpp",
Hal Canaryb6c5e5b2017-10-09 16:13:02 -04001503 "dm/DMGpuTestProcs.cpp",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001504 "dm/DMJsonWriter.cpp",
1505 "dm/DMSrcSink.cpp",
1506 ]
1507 include_dirs = [ "tests" ]
1508 deps = [
1509 ":common_flags",
Florin Malitafc043dc2017-12-31 11:08:42 -05001510 ":experimental_skotty",
Florin Malita4aa44412017-12-19 12:21:02 -05001511 ":experimental_sksg",
Kevin Lubickebf648e2017-09-21 13:45:16 -04001512 ":experimental_svg_model",
1513 ":flags",
1514 ":gm",
1515 ":gpu_tool_utils",
1516 ":skia",
1517 ":tests",
1518 ":tool_utils",
1519 "//third_party/jsoncpp",
1520 "//third_party/libpng",
Mike Klein38af9432016-11-11 11:39:44 -05001521 ]
1522 }
Brian Osman16adfa32016-10-18 14:42:44 -04001523 }
1524
Mike Klein06432b22017-03-21 13:14:33 -04001525 test_app("ok") {
1526 sources = [
Mike Klein361dde02017-11-07 08:14:52 -05001527 "dm/DMFontMgr.cpp",
Mike Klein06432b22017-03-21 13:14:33 -04001528 "tools/ok.cpp",
Mike Klein7ac04832017-03-25 11:29:41 -04001529 "tools/ok_dsts.cpp",
Mike Klein154e6da2017-07-26 15:13:47 -04001530 "tools/ok_engines.cpp",
Mike Klein7ac04832017-03-25 11:29:41 -04001531 "tools/ok_srcs.cpp",
Mike Kleind63442d2017-03-27 14:16:04 -04001532 "tools/ok_test.cpp",
Mike Kleinf5d1a552017-03-25 12:32:22 -04001533 "tools/ok_vias.cpp",
Mike Klein06432b22017-03-21 13:14:33 -04001534 ]
1535 deps = [
Mike Klein4f6e2712017-08-11 10:37:35 -04001536 ":bench",
Mike Klein06432b22017-03-21 13:14:33 -04001537 ":gm",
1538 ":skia",
Mike Kleind63442d2017-03-27 14:16:04 -04001539 ":tests",
Mike Klein62669ad2017-05-09 16:03:07 -04001540 ":tool_utils",
Mike Klein06432b22017-03-21 13:14:33 -04001541 ]
1542 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001543 test_app("nanobench") {
mtklein2b6870c2016-07-28 14:17:33 -07001544 sources = [
1545 "bench/nanobench.cpp",
1546 ]
1547 deps = [
1548 ":bench",
mtklein046cb562016-09-16 10:23:12 -07001549 ":common_flags",
Florin Malita4aa44412017-12-19 12:21:02 -05001550 ":experimental_sksg",
fmalita6519c212016-09-14 08:05:17 -07001551 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001552 ":flags",
1553 ":gm",
1554 ":gpu_tool_utils",
1555 ":skia",
1556 ":tool_utils",
1557 "//third_party/jsoncpp",
1558 ]
mtklein2b6870c2016-07-28 14:17:33 -07001559 }
halcanary19a97202016-08-03 15:08:04 -07001560
Ravi Mistry10d36c52017-01-31 09:49:18 -05001561 test_app("skpinfo") {
1562 sources = [
1563 "tools/skpinfo.cpp",
1564 ]
1565 deps = [
1566 ":flags",
1567 ":skia",
1568 ]
1569 }
1570
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001571 if (skia_enable_gpu) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001572 test_app("skpbench") {
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001573 sources = [
1574 "tools/skpbench/skpbench.cpp",
1575 ]
1576 deps = [
1577 ":flags",
1578 ":gpu_tool_utils",
1579 ":skia",
1580 ":tool_utils",
1581 ]
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001582 }
csmartdalton4b5179b2016-09-19 11:03:58 -07001583 }
1584
Mike Klein7d302882016-11-03 14:06:31 -04001585 # We can't yet build ICU on iOS or Windows.
Kevin Lubickebf648e2017-09-21 13:45:16 -04001586 if (!is_ios && !is_win && target_cpu != "wasm") {
Mike Kleine6682eb2017-01-05 10:54:57 -05001587 test_app("sktexttopdf-hb") {
mtklein6f5df6a2016-08-29 16:01:10 -07001588 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001589 "tools/shape/SkShaper_harfbuzz.cpp",
1590 "tools/shape/using_skia_and_harfbuzz.cpp",
mtklein6f5df6a2016-08-29 16:01:10 -07001591 ]
1592 deps = [
1593 ":skia",
1594 "//third_party/harfbuzz",
Ben Wagnera25fbef2017-08-30 13:56:19 -04001595 "//third_party/icu",
mtklein6f5df6a2016-08-29 16:01:10 -07001596 ]
mtklein6f5df6a2016-08-29 16:01:10 -07001597 }
halcanary19a97202016-08-03 15:08:04 -07001598 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001599 test_app("sktexttopdf") {
halcanary3eee9d92016-09-10 07:01:53 -07001600 sources = [
Ben Wagnera25fbef2017-08-30 13:56:19 -04001601 "tools/shape/SkShaper_primitive.cpp",
1602 "tools/shape/using_skia_and_harfbuzz.cpp",
halcanary3eee9d92016-09-10 07:01:53 -07001603 ]
1604 deps = [
1605 ":skia",
1606 ]
halcanary3eee9d92016-09-10 07:01:53 -07001607 }
mtklein046cb562016-09-16 10:23:12 -07001608
Matt Sarett9f1c4032017-05-17 10:06:32 -04001609 test_app("create_flutter_test_images") {
1610 sources = [
1611 "tools/create_flutter_test_images.cpp",
1612 ]
1613 deps = [
1614 ":skia",
1615 ":tool_utils",
1616 ]
1617 }
1618
Ben Wagner219f3622017-07-17 15:32:25 -04001619 test_app("create_test_font") {
1620 sources = [
1621 "tools/create_test_font.cpp",
1622 ]
1623 deps = [
1624 ":skia",
1625 ]
1626 assert_no_deps = [
1627 # tool_utils requires the output of this app.
1628 ":tool_utils",
1629 ]
1630 }
1631
Mike Kleine6682eb2017-01-05 10:54:57 -05001632 test_app("get_images_from_skps") {
mtklein046cb562016-09-16 10:23:12 -07001633 sources = [
1634 "tools/get_images_from_skps.cpp",
1635 ]
1636 deps = [
1637 ":flags",
1638 ":skia",
1639 "//third_party/jsoncpp",
1640 ]
mtklein046cb562016-09-16 10:23:12 -07001641 }
mtkleinecbc5262016-09-22 11:51:24 -07001642
Mike Kleine6682eb2017-01-05 10:54:57 -05001643 test_app("colorspaceinfo") {
Matt Sarett8740d582016-11-11 13:59:14 -05001644 sources = [
1645 "tools/colorspaceinfo.cpp",
1646 ]
1647 deps = [
1648 ":flags",
1649 ":skia",
1650 ":tool_utils",
1651 ]
Matt Sarett8740d582016-11-11 13:59:14 -05001652 }
1653
Kevin Lubickebf648e2017-09-21 13:45:16 -04001654 if (!is_ios && target_cpu != "wasm") {
Mike Kleine6682eb2017-01-05 10:54:57 -05001655 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04001656 sources = [
1657 "tools/skiaserve/Request.cpp",
1658 "tools/skiaserve/Response.cpp",
1659 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001660 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1661 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1662 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1663 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1664 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1665 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1666 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1667 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1668 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05001669 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1670 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001671 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1672 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1673 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1674 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1675 ]
1676 deps = [
1677 ":flags",
1678 ":gpu_tool_utils",
1679 ":skia",
1680 ":tool_utils",
1681 "//third_party/jsoncpp",
1682 "//third_party/libmicrohttpd",
1683 "//third_party/libpng",
1684 ]
Mike Klein7d302882016-11-03 14:06:31 -04001685 }
mtkleinecbc5262016-09-22 11:51:24 -07001686 }
kjlubick14f984b2016-10-03 11:49:45 -07001687
Mike Kleine6682eb2017-01-05 10:54:57 -05001688 test_app("fuzz") {
kjlubick14f984b2016-10-03 11:49:45 -07001689 sources = [
1690 "fuzz/FilterFuzz.cpp",
Hal Canary24ac42b2017-02-14 13:35:14 -05001691 "fuzz/FuzzCanvas.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05001692 "fuzz/FuzzDrawFunctions.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001693 "fuzz/FuzzGradients.cpp",
1694 "fuzz/FuzzParsePath.cpp",
1695 "fuzz/FuzzPathop.cpp",
1696 "fuzz/FuzzScaleToSides.cpp",
1697 "fuzz/fuzz.cpp",
1698 ]
1699 deps = [
1700 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04001701 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001702 ":skia",
Hal Canarydb683012016-11-23 08:55:18 -07001703 ":tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001704 ]
kjlubick14f984b2016-10-03 11:49:45 -07001705 }
Mike Klein38312422016-10-05 15:41:01 -04001706
Mike Kleine6682eb2017-01-05 10:54:57 -05001707 test_app("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04001708 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04001709 rebase_path("tests/skia_test.cpp"),
1710 rebase_path("tests/Test.cpp"),
1711 ]
caryclark9feb6322016-10-25 08:58:26 -07001712 deps = [
1713 ":flags",
1714 ":gpu_tool_utils",
1715 ":skia",
1716 ":tool_utils",
1717 ]
caryclark9feb6322016-10-25 08:58:26 -07001718 }
1719
Mike Kleine6682eb2017-01-05 10:54:57 -05001720 test_app("dump_record") {
Mike Klein38312422016-10-05 15:41:01 -04001721 sources = [
1722 "tools/DumpRecord.cpp",
1723 "tools/dump_record.cpp",
1724 ]
1725 deps = [
1726 ":flags",
1727 ":skia",
1728 ]
Mike Klein38312422016-10-05 15:41:01 -04001729 }
bungemanfe917272016-10-13 17:36:40 -04001730
Mike Kleine6682eb2017-01-05 10:54:57 -05001731 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04001732 sources = [
1733 "tools/skdiff/skdiff.cpp",
1734 "tools/skdiff/skdiff_html.cpp",
1735 "tools/skdiff/skdiff_main.cpp",
1736 "tools/skdiff/skdiff_utils.cpp",
1737 ]
1738 deps = [
1739 ":skia",
1740 ":tool_utils",
1741 ]
bungemanfe917272016-10-13 17:36:40 -04001742 }
halcanarya73d76a2016-10-17 13:19:02 -07001743
Mike Kleine6682eb2017-01-05 10:54:57 -05001744 test_app("skp_parser") {
halcanarya73d76a2016-10-17 13:19:02 -07001745 sources = [
1746 "tools/skp_parser.cpp",
1747 ]
1748 deps = [
1749 ":skia",
1750 ":tool_utils",
1751 "//third_party/jsoncpp",
1752 ]
halcanarya73d76a2016-10-17 13:19:02 -07001753 }
Brian Osman16adfa32016-10-18 14:42:44 -04001754
Hal Canaryd7b38452017-12-11 17:46:26 -05001755 if (!is_win && skia_enable_gpu) {
1756 test_lib("skqp_lib") {
1757 public_include_dirs = [ "tools/skqp" ]
Hal Canary75427132017-10-11 16:00:31 -04001758 sources = [
Hal Canaryd7b38452017-12-11 17:46:26 -05001759 "dm/DMFontMgr.cpp",
Hal Canary75427132017-10-11 16:00:31 -04001760 "dm/DMGpuTestProcs.cpp",
Hal Canaryd7b38452017-12-11 17:46:26 -05001761 "tools/skqp/gm_knowledge.cpp",
1762 "tools/skqp/gm_runner.cpp",
Hal Canary75427132017-10-11 16:00:31 -04001763 ]
1764 deps = [
1765 ":gm",
1766 ":gpu_tool_utils",
1767 ":skia",
1768 ":tests",
Hal Canaryd7b38452017-12-11 17:46:26 -05001769 ":tool_utils",
1770 ]
1771 }
1772 test_app("skqp") {
1773 sources = [
1774 "tools/skqp/skqp.cpp",
1775 ]
1776 deps = [
1777 ":skia",
1778 ":skqp_lib",
Hal Canary75427132017-10-11 16:00:31 -04001779 "//third_party/googletest",
1780 ]
1781 }
1782 }
Hal Canary28f89382017-12-12 09:42:14 -05001783 if (is_android && skia_enable_gpu) {
1784 test_app("skqp_app") {
1785 is_shared_library = true
1786 sources = [
1787 "tools/skqp/jni/org_skia_skqp_SkQPRunner.cpp",
1788 ]
1789 deps = [
1790 ":skia",
1791 ":skqp_lib",
1792 ]
1793 libs = [ "android" ]
1794 }
1795 }
Hal Canary75427132017-10-11 16:00:31 -04001796
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001797 if (skia_enable_gpu) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001798 test_lib("sk_app") {
1799 public_include_dirs = [ "tools/sk_app" ]
Brian Osman16adfa32016-10-18 14:42:44 -04001800 sources = [
Brian Osmaneff04b52017-11-21 13:18:02 -05001801 "tools/sk_app/CommandSet.cpp",
1802 "tools/sk_app/GLWindowContext.cpp",
1803 "tools/sk_app/Window.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001804 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001805 libs = []
Brian Osman16adfa32016-10-18 14:42:44 -04001806
Jim Van Verth4e56a912016-10-21 10:58:52 -04001807 if (is_android) {
1808 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001809 "tools/sk_app/android/GLWindowContext_android.cpp",
1810 "tools/sk_app/android/RasterWindowContext_android.cpp",
1811 "tools/sk_app/android/Window_android.cpp",
1812 "tools/sk_app/android/main_android.cpp",
1813 "tools/sk_app/android/surface_glue_android.cpp",
Jim Van Verth4e56a912016-10-21 10:58:52 -04001814 ]
Brian Osman462334e2017-02-09 11:22:57 -05001815 libs += [ "android" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001816 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001817 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001818 "tools/sk_app/unix/GLWindowContext_unix.cpp",
1819 "tools/sk_app/unix/RasterWindowContext_unix.cpp",
1820 "tools/sk_app/unix/Window_unix.cpp",
Brian Osmanfa916272017-12-01 09:18:20 -05001821 "tools/sk_app/unix/keysym2ucs.c",
Brian Osmaneff04b52017-11-21 13:18:02 -05001822 "tools/sk_app/unix/main_unix.cpp",
Brian Osman2dd96932016-10-18 15:33:53 -04001823 ]
Brian Osmanfa916272017-12-01 09:18:20 -05001824 libs += [
1825 "GL",
1826 "X11",
1827 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001828 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001829 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001830 "tools/sk_app/win/GLWindowContext_win.cpp",
1831 "tools/sk_app/win/RasterWindowContext_win.cpp",
1832 "tools/sk_app/win/Window_win.cpp",
1833 "tools/sk_app/win/main_win.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001834 ]
Brian Salomon194db172017-08-17 14:37:06 -04001835 if (skia_use_angle) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001836 sources += [ "tools/sk_app/win/ANGLEWindowContext_win.cpp" ]
Brian Salomon194db172017-08-17 14:37:06 -04001837 }
Mike Klein43c25262016-10-20 10:17:47 -04001838 } else if (is_mac) {
1839 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001840 "tools/sk_app/mac/GLWindowContext_mac.cpp",
1841 "tools/sk_app/mac/RasterWindowContext_mac.cpp",
1842 "tools/sk_app/mac/Window_mac.cpp",
1843 "tools/sk_app/mac/main_mac.cpp",
Mike Klein43c25262016-10-20 10:17:47 -04001844 ]
Brian Osmanfa916272017-12-01 09:18:20 -05001845 libs += [
1846 "QuartzCore.framework",
1847 "Cocoa.framework",
1848 "Foundation.framework",
1849 ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001850 } else if (is_ios) {
1851 sources += [
Brian Osmaneff04b52017-11-21 13:18:02 -05001852 "tools/sk_app/ios/GLWindowContext_ios.cpp",
1853 "tools/sk_app/ios/RasterWindowContext_ios.cpp",
1854 "tools/sk_app/ios/Window_ios.cpp",
1855 "tools/sk_app/ios/main_ios.cpp",
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001856 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001857 }
1858
1859 if (skia_use_vulkan) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001860 sources += [ "tools/sk_app/VulkanWindowContext.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001861 if (is_android) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001862 sources += [ "tools/sk_app/android/VulkanWindowContext_android.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001863 } else if (is_linux) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001864 sources += [ "tools/sk_app/unix/VulkanWindowContext_unix.cpp" ]
Brian Osman2dd96932016-10-18 15:33:53 -04001865 libs += [ "X11-xcb" ]
1866 } else if (is_win) {
Brian Osmaneff04b52017-11-21 13:18:02 -05001867 sources += [ "tools/sk_app/win/VulkanWindowContext_win.cpp" ]
Brian Osman16adfa32016-10-18 14:42:44 -04001868 }
1869 }
1870
Brian Osman16adfa32016-10-18 14:42:44 -04001871 deps = [
Brian Osman16adfa32016-10-18 14:42:44 -04001872 ":gpu_tool_utils",
Brian Osman16adfa32016-10-18 14:42:44 -04001873 ":skia",
1874 ":tool_utils",
1875 ":views",
Brian Osman16adfa32016-10-18 14:42:44 -04001876 ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001877 if (is_android) {
1878 deps += [ "//third_party/native_app_glue" ]
Jim Van Verthdbb24ef2017-09-01 11:01:51 -04001879 } else if (is_mac || is_ios) {
Mike Klein43c25262016-10-20 10:17:47 -04001880 deps += [ "//third_party/libsdl" ]
1881 }
Brian Salomon194db172017-08-17 14:37:06 -04001882 if (skia_use_angle) {
1883 deps += [ "//third_party/angle2" ]
1884 }
Mike Kleina92c3832016-12-08 09:49:39 -05001885 }
Brian Osman16adfa32016-10-18 14:42:44 -04001886 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05001887
Brian Osmaneff04b52017-11-21 13:18:02 -05001888 if (skia_enable_gpu) {
1889 test_app("viewer") {
1890 is_shared_library = is_android
Jim Van Verth329c5a62017-11-29 11:42:33 -05001891 if (is_ios) {
1892 bundle_ios_data = true
1893 }
Brian Osmaneff04b52017-11-21 13:18:02 -05001894 sources = [
1895 "tools/viewer/GMSlide.cpp",
Brian Osmand67e5182017-12-08 16:46:09 -05001896 "tools/viewer/ImGuiLayer.cpp",
Brian Osmaneff04b52017-11-21 13:18:02 -05001897 "tools/viewer/ImageSlide.cpp",
1898 "tools/viewer/SKPSlide.cpp",
1899 "tools/viewer/SampleSlide.cpp",
Florin Malita094ccde2017-12-30 12:27:00 -05001900 "tools/viewer/SkottySlide.cpp",
Mike Reed29859872018-01-08 08:25:27 -05001901 "tools/viewer/SkottySlide2.cpp",
Brian Osman56a24812017-12-19 11:15:16 -05001902 "tools/viewer/StatsLayer.cpp",
Brian Osmaneff04b52017-11-21 13:18:02 -05001903 "tools/viewer/Viewer.cpp",
1904 ]
1905 libs = []
1906
1907 include_dirs = []
1908 deps = [
Florin Malita094ccde2017-12-30 12:27:00 -05001909 ":experimental_skotty",
Brian Osmaneff04b52017-11-21 13:18:02 -05001910 ":flags",
1911 ":gm",
1912 ":gpu_tool_utils",
1913 ":samples",
1914 ":sk_app",
1915 ":skia",
1916 ":tool_utils",
1917 ":views",
1918 "//third_party/imgui",
1919 "//third_party/jsoncpp",
1920 ]
1921 }
1922 }
1923
1924 if (skia_enable_gpu && !skia_use_angle && (is_linux || is_win || is_mac)) {
1925 test_app("HelloWorld") {
1926 sources = [
1927 "example/HelloWorld.cpp",
1928 ]
1929 libs = []
1930
1931 include_dirs = []
1932 deps = [
1933 ":flags",
1934 ":gpu_tool_utils",
1935 ":sk_app",
1936 ":skia",
1937 ":tool_utils",
1938 ":views",
1939 ]
1940 }
1941 }
1942
Jim Van Verthecfed2b2017-08-30 14:02:50 -04001943 if (skia_enable_gpu && (is_linux || is_mac || is_ios)) {
Jim Van Verth4c70c752017-07-11 12:03:01 -04001944 test_app("SkiaSDLExample") {
1945 sources = [
1946 "example/SkiaSDLExample.cpp",
1947 ]
1948 libs = []
1949 include_dirs = []
1950 deps = [
1951 ":gpu_tool_utils",
1952 ":skia",
1953 "//third_party/libsdl",
1954 ]
1955 }
1956 }
1957
Robert Phillipsa6d2d702017-09-01 12:17:03 -04001958 if (skia_qt_path != "" && (is_win || is_linux || is_mac)) {
1959 action_foreach("generate_mocs") {
1960 script = "gn/call.py"
1961 sources = [
1962 "tools/mdbviz/MainWindow.h",
1963 ]
1964 outputs = [
1965 "$target_gen_dir/mdbviz/{{source_name_part}}_moc.cpp",
1966 ]
1967 args = [
1968 "$skia_qt_path" + "/bin/moc",
1969 "{{source}}",
1970 "-o",
1971 "gen/mdbviz/{{source_name_part}}_moc.cpp",
1972 ]
1973 }
1974 action_foreach("generate_resources") {
1975 script = "gn/call.py"
1976 sources = [
1977 "tools/mdbviz/resources.qrc",
1978 ]
1979 outputs = [
1980 "$target_gen_dir/mdbviz/{{source_name_part}}_res.cpp",
1981 ]
1982 args = [
1983 "$skia_qt_path" + "/bin/rcc",
1984 "{{source}}",
1985 "-o",
1986 "gen/mdbviz/{{source_name_part}}_res.cpp",
1987 ]
1988 }
1989 test_app("mdbviz") {
1990 if (is_win) {
1991 # on Windows we need to disable some exception handling warnings due to the Qt headers
1992 cflags = [ "/Wv:18" ] # 18 -> VS2013, 19 -> VS2015, 1910 -> VS2017
1993 }
1994 sources = [
Robert Phillips5fccf9d2017-09-05 15:10:12 -04001995 "tools/UrlDataManager.cpp",
1996 "tools/debugger/SkDebugCanvas.cpp",
1997 "tools/debugger/SkDrawCommand.cpp",
1998 "tools/debugger/SkJsonWriteBuffer.cpp",
1999 "tools/debugger/SkObjectParser.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002000 "tools/mdbviz/MainWindow.cpp",
Robert Phillipsdeaf5682017-09-06 13:07:21 -04002001 "tools/mdbviz/Model.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002002 "tools/mdbviz/main.cpp",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002003 "tools/picture_utils.cpp",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002004
2005 # generated files
2006 "$target_gen_dir/mdbviz/MainWindow_moc.cpp",
2007 "$target_gen_dir/mdbviz/resources_res.cpp",
2008 ]
2009 lib_dirs = [ "$skia_qt_path/lib" ]
2010 libs = [
2011 "Qt5Core.lib",
2012 "Qt5Gui.lib",
2013 "Qt5Widgets.lib",
2014 ]
2015 include_dirs = [
2016 "$skia_qt_path/include",
Robert Phillips276066b2017-09-06 17:17:44 -04002017 "$skia_qt_path/include/QtCore",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002018 "$skia_qt_path/include/QtWidgets",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002019 "tools",
2020 "tools/debugger",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002021 ]
2022 deps = [
2023 ":generate_mocs",
2024 ":generate_resources",
2025 ":skia",
Robert Phillips5fccf9d2017-09-05 15:10:12 -04002026 "//third_party/jsoncpp",
2027 "//third_party/libpng",
Robert Phillipsa6d2d702017-09-01 12:17:03 -04002028 ]
2029 }
2030 }
2031
Mike Kleine459afd2017-03-03 09:21:30 -05002032 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05002033 copy("gdbserver") {
2034 sources = [
2035 "$ndk/$ndk_gdbserver",
2036 ]
2037 outputs = [
2038 "$root_out_dir/gdbserver",
2039 ]
2040 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05002041 }
mtklein25c81d42016-07-27 13:55:26 -07002042}
Mike Kleinc55a6cb2017-06-28 13:21:47 -04002043
2044if (skia_jumper_clang != "") {
2045 action("regen_jumper") {
2046 script = "src/jumper/build_stages.py"
2047
2048 inputs = [
2049 "src/jumper/SkJumper_stages.cpp",
Mike Klein9b2f69b2017-09-12 16:40:53 -04002050 "src/jumper/SkJumper_stages_lowp.cpp",
Mike Kleinc55a6cb2017-06-28 13:21:47 -04002051 ]
2052
2053 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it.
2054 outputs = [
2055 "$target_out_dir/" +
2056 rebase_path("src/jumper/SkJumper_generated.S", target_out_dir),
2057 "$target_out_dir/" +
2058 rebase_path("src/jumper/SkJumper_generated_win.S", target_out_dir),
2059 ]
2060
2061 args = [
2062 skia_jumper_clang,
2063 skia_jumper_objdump,
2064 skia_jumper_ccache,
2065 ] + rebase_path(inputs) + rebase_path(outputs)
2066 }
2067}