blob: 975d560278006341a1d714716b4a5ee8c1dd2284 [file] [log] [blame]
mtkleinc04ff472016-06-23 10:29:30 -07001# Copyright 2016 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
Brian Osmanf2c90142017-07-13 15:50:03 -04006import("gn/flutter_defines.gni")
mikejurka8c24f4f2016-09-12 16:51:58 -07007import("gn/shared_sources.gni")
brettwb9447282016-09-01 14:24:39 -07008
Forrest Reiling30229ac2017-04-17 13:36:39 -07009if (is_fuchsia) {
10 import("//build/vulkan/config.gni")
11}
12
Mike Klein3669a822017-03-03 10:55:02 -050013if (!defined(is_skia_standalone)) {
14 is_skia_standalone = false
15}
16is_skia_dev_build = is_skia_standalone && !is_official_build
17
mtkleinc04ff472016-06-23 10:29:30 -070018declare_args() {
Mike Kleinc168a3a2016-11-14 14:53:13 +000019 skia_use_angle = false
Kevin Lubick4a24e102017-03-29 11:19:01 -040020 skia_use_egl = false
mtklein63213812016-08-24 09:55:56 -070021 skia_use_expat = true
mtklein3cc22182016-08-29 13:26:14 -070022 skia_use_fontconfig = is_linux
mtkleincdedd0e2016-09-12 15:15:44 -070023 skia_use_freetype = is_android || is_fuchsia || is_linux
Mike Klein69f6ed42016-10-13 15:45:07 -040024 skia_use_gdi = false
Mike Klein7d302882016-11-03 14:06:31 -040025 skia_use_icu = !is_fuchsia && !is_ios && !is_win # TODO: Windows
mtklein63213812016-08-24 09:55:56 -070026 skia_use_libjpeg_turbo = true
27 skia_use_libpng = true
mtkleineb3c4252016-08-23 07:38:09 -070028 skia_use_libwebp = !is_fuchsia
Mike Klein38af9432016-11-11 11:39:44 -050029 skia_use_lua = false
mtkleina627b5c2016-09-20 13:36:47 -070030 skia_use_mesa = false
Mike Klein10d665d2016-11-01 11:46:10 -040031 skia_use_piex = !is_win
mtklein63213812016-08-24 09:55:56 -070032 skia_use_zlib = true
Greg Daniele5ddff52017-07-05 16:49:36 -040033 skia_use_metal = false
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 Daniel686bb212016-10-27 10:48:48 -040044 skia_vulkan_sdk = getenv("VULKAN_SDK")
Ethan Nicholas762466e2017-06-29 10:03:38 -040045 skia_compile_processors = false
Mike Kleinc55a6cb2017-06-28 13:21:47 -040046
47 skia_jumper_clang = ""
48 skia_jumper_objdump = ""
49 skia_jumper_ccache = ""
mtkleinc04ff472016-06-23 10:29:30 -070050}
Brian Salomon23d73ea2016-10-27 13:31:37 -040051declare_args() {
Matt Sarett189491c2017-03-20 18:09:30 -040052 skia_use_dng_sdk = !is_fuchsia && skia_use_libjpeg_turbo && skia_use_zlib
Mike Klein10d665d2016-11-01 11:46:10 -040053 skia_use_sfntly = skia_use_icu
54
Mike Klein4d598a32016-10-31 13:44:49 -040055 if (is_android) {
56 skia_use_vulkan = defined(ndk_api) && ndk_api >= 24
Forrest Reiling30229ac2017-04-17 13:36:39 -070057 } else if (is_fuchsia) {
58 skia_use_vulkan = fuchsia_use_vulkan
Mike Klein4d598a32016-10-31 13:44:49 -040059 } else {
60 skia_use_vulkan = skia_vulkan_sdk != ""
61 }
Brian Salomon23d73ea2016-10-27 13:31:37 -040062}
Greg Danielec6ae522017-04-25 13:38:26 -040063declare_args() {
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +000064 skia_vulkan_headers = ""
Greg Danielec6ae522017-04-25 13:38:26 -040065 if (skia_use_vulkan) {
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +000066 # 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 -040067 if (is_fuchsia) {
68 skia_vulkan_headers = "$fuchsia_vulkan_sdk/include"
69 } else if (is_linux || is_win) {
70 skia_vulkan_headers = "$skia_vulkan_sdk/include"
Greg Danielec6ae522017-04-25 13:38:26 -040071 }
Greg Danielec6ae522017-04-25 13:38:26 -040072 }
73}
Brian Salomon789e25e2016-09-30 13:41:03 -040074
mtklein38925aa2016-09-21 10:11:25 -070075# Our tools require static linking (they use non-exported symbols).
76skia_enable_tools = skia_enable_tools && !is_component_build
mtklein06c35c02016-09-20 12:28:12 -070077
mtkleina45be612016-08-29 15:22:10 -070078fontmgr_android_enabled = skia_use_expat && skia_use_freetype
79
mtklein1211e0c2016-07-26 13:55:45 -070080skia_public_includes = [
mtklein25c81d42016-07-27 13:55:26 -070081 "include/android",
mtkleinfa84d942016-07-28 09:45:14 -070082 "include/c",
mtklein1211e0c2016-07-26 13:55:45 -070083 "include/codec",
84 "include/config",
85 "include/core",
86 "include/effects",
Matt Sarett94fd06f2017-05-08 17:31:00 -040087 "include/encode",
mtklein1211e0c2016-07-26 13:55:45 -070088 "include/gpu",
89 "include/gpu/gl",
mtklein1211e0c2016-07-26 13:55:45 -070090 "include/pathops",
91 "include/ports",
mtklein25c81d42016-07-27 13:55:26 -070092 "include/svg",
mtklein1211e0c2016-07-26 13:55:45 -070093 "include/utils",
94 "include/utils/mac",
mtklein1211e0c2016-07-26 13:55:45 -070095]
96
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +000097if (skia_use_vulkan) {
98 skia_public_includes += [ "include/gpu/vk" ]
99}
Greg Daniele5ddff52017-07-05 16:49:36 -0400100if (skia_use_metal) {
101 skia_public_includes += [ "include/gpu/mtl" ]
102}
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000103
mtkleinc04ff472016-06-23 10:29:30 -0700104# Skia public API, generally provided by :skia.
105config("skia_public") {
mtklein1211e0c2016-07-26 13:55:45 -0700106 include_dirs = skia_public_includes
Greg Danielec6ae522017-04-25 13:38:26 -0400107 if (skia_vulkan_headers != "") {
108 include_dirs += [ skia_vulkan_headers ]
109 }
Mike Kleinae7e6712016-10-11 17:49:33 -0400110 defines = []
111 if (is_component_build) {
112 defines += [ "SKIA_DLL" ]
113 }
Mike Kleinc4cbd742016-09-26 21:37:09 -0400114 if (is_fuchsia || is_linux) {
jcgregorio5561e3d2016-08-25 09:25:11 -0700115 defines += [ "SK_SAMPLES_FOR_X" ]
116 }
Brian Osmanf2c90142017-07-13 15:50:03 -0400117 if (skia_enable_flutter_defines) {
118 defines += flutter_defines
119 }
mtklein06c35c02016-09-20 12:28:12 -0700120 if (!skia_enable_gpu) {
121 defines += [ "SK_SUPPORT_GPU=0" ]
122 }
mtkleinc04ff472016-06-23 10:29:30 -0700123}
124
125# Skia internal APIs, used by Skia itself and a few test tools.
126config("skia_private") {
127 visibility = [ ":*" ]
128
129 include_dirs = [
130 "include/private",
131 "src/c",
mtklein1211e0c2016-07-26 13:55:45 -0700132 "src/codec",
mtkleinc04ff472016-06-23 10:29:30 -0700133 "src/core",
134 "src/effects",
mtklein25c81d42016-07-27 13:55:26 -0700135 "src/fonts",
mtkleinc04ff472016-06-23 10:29:30 -0700136 "src/image",
137 "src/images",
138 "src/lazy",
139 "src/opts",
140 "src/pathops",
mtklein2b6870c2016-07-28 14:17:33 -0700141 "src/pdf",
mtkleinc04ff472016-06-23 10:29:30 -0700142 "src/ports",
143 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400144 "src/shaders",
145 "src/shaders/gradients",
mtklein9e0d9dd2016-08-30 10:37:19 -0700146 "src/sksl",
mtkleinc04ff472016-06-23 10:29:30 -0700147 "src/utils",
mtklein7a1f45f2016-08-04 06:19:33 -0700148 "src/utils/win",
Herb Derby5a8fe972017-02-14 14:42:30 -0500149 "src/xml",
scroggo19b91532016-10-24 09:03:26 -0700150 "third_party/gif",
mtkleinc04ff472016-06-23 10:29:30 -0700151 ]
mtklein150d1132016-08-01 06:56:40 -0700152
Mike Reeda9e241d2017-05-03 10:52:00 -0400153 defines = [ "SK_GAMMA_APPLY_TO_A8" ]
mtkleinb37c0342016-09-09 11:07:45 -0700154 if (is_android) {
155 defines += [
156 "SK_GAMMA_EXPONENT=1.4",
157 "SK_GAMMA_CONTRAST=0.0",
158 ]
159 }
mtklein88a7ac02016-09-14 11:16:49 -0700160 if (is_official_build || is_android) {
161 # TODO(bsalomon): it'd be nice to make Android normal.
162 defines += [ "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0" ]
163 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400164 libs = []
165 lib_dirs = []
166 if (skia_use_vulkan) {
Michael Jurkada3e5962017-04-14 17:44:09 -0700167 if (skia_vulkan_sdk != "" && !is_android && !is_fuchsia) {
Mike Klein487bfc22016-10-14 14:04:56 -0400168 if (is_win) {
Brian Salomon3b5bf352017-03-20 15:54:41 -0400169 lib_dirs += [
170 "$skia_vulkan_sdk/Bin",
171 "$skia_vulkan_sdk/Lib",
172 ]
Mike Klein487bfc22016-10-14 14:04:56 -0400173 } else {
Greg Daniel686bb212016-10-27 10:48:48 -0400174 lib_dirs += [ "$skia_vulkan_sdk/lib/" ]
Mike Klein487bfc22016-10-14 14:04:56 -0400175 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400176 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400177 }
Brian Salomon03e05842017-02-23 12:23:47 -0500178 if (skia_enable_gpu) {
179 include_dirs += [ "src/gpu" ]
180 }
Brian Osman34755e22016-12-05 09:46:02 -0500181 if (skia_use_angle) {
182 defines += [ "SK_ANGLE" ]
183 }
Brian Osman3f375d02016-12-28 11:19:22 -0500184 if (skia_enable_discrete_gpu) {
185 defines += [ "SK_ENABLE_DISCRETE_GPU" ]
186 }
Brian Salomon0c26a9d2017-07-06 10:09:38 -0400187 if (!is_official_build) {
188 defines += [ "GR_TEST_UTILS=1" ]
189 }
mtkleinc04ff472016-06-23 10:29:30 -0700190}
191
192# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
193config("skia_library") {
194 visibility = [ ":*" ]
mtkleinc04ff472016-06-23 10:29:30 -0700195 defines = [ "SKIA_IMPLEMENTATION=1" ]
196}
197
198skia_library_configs = [
199 ":skia_public",
200 ":skia_private",
201 ":skia_library",
202]
203
mtklein9b8583d2016-08-24 17:32:30 -0700204# Use for CPU-specific Skia code that needs particular compiler flags.
205template("opts") {
206 if (invoker.enabled) {
207 source_set(target_name) {
208 forward_variables_from(invoker, "*")
209 configs += skia_library_configs
210 }
211 } else {
212 # If not enabled, a phony empty target that swallows all otherwise unused variables.
213 source_set(target_name) {
214 forward_variables_from(invoker,
215 "*",
216 [
217 "sources",
218 "cflags",
219 ])
220 }
221 }
anmittala7eaf2e2016-08-17 13:57:26 -0700222}
223
mtklein422310d2016-08-16 18:28:43 -0700224is_x86 = current_cpu == "x64" || current_cpu == "x86"
mtkleinc04ff472016-06-23 10:29:30 -0700225
mtklein7d6fb2c2016-08-25 14:50:44 -0700226opts("none") {
227 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
brettwb9447282016-09-01 14:24:39 -0700228 sources = skia_opts.none_sources
anmittalb8b3f712016-08-25 04:55:19 -0700229 cflags = []
230}
231
mtklein7d6fb2c2016-08-25 14:50:44 -0700232opts("armv7") {
anmittalb8b3f712016-08-25 04:55:19 -0700233 enabled = current_cpu == "arm"
brettwb9447282016-09-01 14:24:39 -0700234 sources = skia_opts.armv7_sources + skia_opts.neon_sources
mtklein7d6fb2c2016-08-25 14:50:44 -0700235 cflags = []
anmittalb8b3f712016-08-25 04:55:19 -0700236}
237
238opts("arm64") {
239 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700240 sources = skia_opts.arm64_sources
anmittalb8b3f712016-08-25 04:55:19 -0700241 cflags = []
242}
243
244opts("crc32") {
245 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700246 sources = skia_opts.crc32_sources
anmittalb8b3f712016-08-25 04:55:19 -0700247 cflags = [ "-march=armv8-a+crc" ]
248}
249
mtklein9b8583d2016-08-24 17:32:30 -0700250opts("sse2") {
251 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700252 sources = skia_opts.sse2_sources
Mike Kleind8765e32016-10-19 13:39:13 -0400253 if (is_win) {
254 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
255 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400256 cflags = [ "-msse2" ]
257 }
mtklein9b8583d2016-08-24 17:32:30 -0700258}
mtkleinc04ff472016-06-23 10:29:30 -0700259
mtklein9b8583d2016-08-24 17:32:30 -0700260opts("ssse3") {
261 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700262 sources = skia_opts.ssse3_sources
Mike Kleind8765e32016-10-19 13:39:13 -0400263 if (is_win) {
264 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
265 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400266 cflags = [ "-mssse3" ]
267 }
mtklein9b8583d2016-08-24 17:32:30 -0700268}
mtkleinc04ff472016-06-23 10:29:30 -0700269
mtklein9b8583d2016-08-24 17:32:30 -0700270opts("sse41") {
271 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700272 sources = skia_opts.sse41_sources
Mike Kleind8765e32016-10-19 13:39:13 -0400273 if (is_win) {
274 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
275 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400276 cflags = [ "-msse4.1" ]
277 }
mtklein9b8583d2016-08-24 17:32:30 -0700278}
mtklein4e976072016-08-08 09:06:27 -0700279
mtklein9b8583d2016-08-24 17:32:30 -0700280opts("sse42") {
281 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700282 sources = skia_opts.sse42_sources
Mike Kleind8765e32016-10-19 13:39:13 -0400283 if (is_win) {
284 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
285 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400286 cflags = [ "-msse4.2" ]
287 }
mtklein9b8583d2016-08-24 17:32:30 -0700288}
289
290opts("avx") {
291 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700292 sources = skia_opts.avx_sources
Mike Klein3eb71212016-10-11 17:08:53 -0400293 if (is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000294 cflags = [ "/arch:AVX" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400295 } else {
296 cflags = [ "-mavx" ]
297 }
mtkleinc04ff472016-06-23 10:29:30 -0700298}
299
mtkleinc095df52016-08-24 12:23:52 -0700300# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700301template("optional") {
302 if (invoker.enabled) {
303 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700304 if (defined(invoker.public_defines)) {
305 defines = invoker.public_defines
306 }
mtklein457b42a2016-08-23 13:56:37 -0700307 }
308 source_set(target_name) {
mtkleincd01b032016-08-31 04:58:19 -0700309 forward_variables_from(invoker,
310 "*",
311 [
312 "public_defines",
313 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700314 "configs_to_remove",
mtkleincd01b032016-08-31 04:58:19 -0700315 ])
mtklein457b42a2016-08-23 13:56:37 -0700316 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein9b8583d2016-08-24 17:32:30 -0700317 configs += skia_library_configs
scroggof84ad642016-10-31 09:02:57 -0700318 if (defined(invoker.configs_to_remove)) {
319 configs -= invoker.configs_to_remove
320 }
mtklein457b42a2016-08-23 13:56:37 -0700321 }
322 } else {
mtklein457b42a2016-08-23 13:56:37 -0700323 source_set(target_name) {
324 forward_variables_from(invoker,
325 "*",
326 [
327 "public_defines",
mtklein457b42a2016-08-23 13:56:37 -0700328 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700329 "libs",
mtklein457b42a2016-08-23 13:56:37 -0700330 "sources",
mtkleincd01b032016-08-31 04:58:19 -0700331 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700332 "configs_to_remove",
mtklein457b42a2016-08-23 13:56:37 -0700333 ])
mtkleincd01b032016-08-31 04:58:19 -0700334 if (defined(invoker.sources_when_disabled)) {
335 sources = invoker.sources_when_disabled
336 }
337 configs += skia_library_configs
mtklein457b42a2016-08-23 13:56:37 -0700338 }
mtkleineb3c4252016-08-23 07:38:09 -0700339 }
mtklein457b42a2016-08-23 13:56:37 -0700340}
mtklein457b42a2016-08-23 13:56:37 -0700341
Mike Kleina04bb452017-02-09 12:24:07 -0500342optional("effects") {
343 enabled = skia_enable_effects
Ethan Nicholas762466e2017-06-29 10:03:38 -0400344 deps = [
345 ":compile_processors",
346 ]
Mike Kleina04bb452017-02-09 12:24:07 -0500347 sources =
348 skia_effects_sources + [ "src/ports/SkGlobalInitialization_default.cpp" ]
349 sources_when_disabled = [ "src/ports/SkGlobalInitialization_none.cpp" ]
350}
351
mtkleina45be612016-08-29 15:22:10 -0700352optional("fontmgr_android") {
353 enabled = fontmgr_android_enabled
mtkleina45be612016-08-29 15:22:10 -0700354
355 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500356 ":typeface_freetype",
mtkleina45be612016-08-29 15:22:10 -0700357 "//third_party/expat",
mtkleina45be612016-08-29 15:22:10 -0700358 ]
359 sources = [
360 "src/ports/SkFontMgr_android.cpp",
361 "src/ports/SkFontMgr_android_factory.cpp",
362 "src/ports/SkFontMgr_android_parser.cpp",
363 ]
364}
365
mtkleind2e39db2016-09-07 07:52:55 -0700366optional("fontmgr_custom") {
367 enabled = is_linux && skia_use_freetype && !skia_use_fontconfig
368
369 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500370 ":typeface_freetype",
mtkleind2e39db2016-09-07 07:52:55 -0700371 ]
372 sources = [
373 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500374 "src/ports/SkFontMgr_custom.h",
375 "src/ports/SkFontMgr_custom_directory.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700376 "src/ports/SkFontMgr_custom_directory_factory.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500377 "src/ports/SkFontMgr_custom_embedded.cpp",
378 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleind2e39db2016-09-07 07:52:55 -0700379 ]
380}
381
mtklein3cc22182016-08-29 13:26:14 -0700382optional("fontmgr_fontconfig") {
383 enabled = skia_use_freetype && skia_use_fontconfig
mtklein3cc22182016-08-29 13:26:14 -0700384
385 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500386 ":typeface_freetype",
mtklein3cc22182016-08-29 13:26:14 -0700387 "//third_party:fontconfig",
mtklein3cc22182016-08-29 13:26:14 -0700388 ]
389 sources = [
bungeman1ae0e012016-09-19 12:13:16 -0700390 "src/ports/SkFontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700391 "src/ports/SkFontConfigInterface_direct.cpp",
392 "src/ports/SkFontConfigInterface_direct_factory.cpp",
393 "src/ports/SkFontMgr_FontConfigInterface.cpp",
394 "src/ports/SkFontMgr_fontconfig.cpp",
395 "src/ports/SkFontMgr_fontconfig_factory.cpp",
396 ]
397}
398
mtkleincdedd0e2016-09-12 15:15:44 -0700399optional("fontmgr_fuchsia") {
400 enabled = is_fuchsia && skia_use_freetype
401
402 deps = [
Ben Wagnerfc497342017-02-24 11:15:26 -0500403 ":typeface_freetype",
mtkleincdedd0e2016-09-12 15:15:44 -0700404 ]
405 sources = [
406 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500407 "src/ports/SkFontMgr_custom_empty.cpp",
mtkleincdedd0e2016-09-12 15:15:44 -0700408 "src/ports/SkFontMgr_custom_empty_factory.cpp",
409 ]
410}
411
Ethan Nicholas762466e2017-06-29 10:03:38 -0400412if (skia_compile_processors) {
413 executable("skslc") {
414 defines = [ "SKSL_STANDALONE" ]
415 sources = [
416 "src/sksl/SkSLMain.cpp",
417 ]
418 sources += skia_sksl_sources
419 include_dirs = [
420 "src/gpu",
421 "src/sksl",
422 ]
423 deps = [
424 "//third_party/spirv-tools",
425 ]
426 }
427
428 skia_gpu_processor_outputs = []
429 foreach(src, skia_gpu_processor_sources) {
430 dir = get_path_info(src, "dir")
431 name = get_path_info(src, "name")
432
433 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it with a
434 # path that starts with target_out_dir and then uses ".." to back up into the src dir.
435 skia_gpu_processor_outputs += [
436 "$target_out_dir/" + rebase_path("$dir/$name.h", target_out_dir),
437 # the script also modifies the corresponding .cpp file, but if we tell GN that it gets
438 # confused due to the same file being named by two different paths
439 ]
440 }
441
442 action("compile_processors") {
443 script = "gn/compile_processors.py"
444 deps = [
445 ":skslc(//gn/toolchain:$host_toolchain)",
446 ]
447 sources = skia_gpu_processor_sources
448 outputs = skia_gpu_processor_outputs
449 skslc_path = "$root_out_dir/"
450 if (host_toolchain != default_toolchain_name) {
451 skslc_path += "$host_toolchain/"
452 }
453 skslc_path += "skslc"
454 if (host_os == "win") {
455 skslc_path += ".exe"
456 }
457 args = [ rebase_path(skslc_path) ]
458 args += rebase_path(skia_gpu_processor_sources)
459 }
460} else {
461 skia_gpu_processor_outputs = []
462 group("compile_processors") {
463 }
464}
465
mtklein06c35c02016-09-20 12:28:12 -0700466optional("gpu") {
467 enabled = skia_enable_gpu
Ethan Nicholas762466e2017-06-29 10:03:38 -0400468 deps = [
469 ":compile_processors",
470 ]
mtkleine9fb3d52016-09-20 15:11:46 -0700471 public_defines = []
472
Mike Klein29b3e582017-02-09 11:57:32 -0500473 sources = skia_gpu_sources + skia_sksl_sources +
Ethan Nicholas762466e2017-06-29 10:03:38 -0400474 [ "src/gpu/gl/GrGLDefaultInterface_native.cpp" ] +
475 skia_gpu_processor_outputs
mtklein06c35c02016-09-20 12:28:12 -0700476
477 # These paths need to be absolute to match the ones produced by shared_sources.gni.
478 sources -= get_path_info([
479 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
480 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
481 ],
482 "abspath")
Mike Klein703cf5a2016-10-13 17:18:04 -0400483 libs = []
mtklein06c35c02016-09-20 12:28:12 -0700484 if (is_android) {
485 sources += [ "src/gpu/gl/android/GrGLCreateNativeInterface_android.cpp" ]
Derek Sollenberger7a869872017-06-27 15:37:25 -0400486
487 # this lib is required to link against AHardwareBuffer
488 if (defined(ndk_api) && ndk_api >= 26) {
489 libs += [ "android" ]
490 }
Kevin Lubick4a24e102017-03-29 11:19:01 -0400491 } else if (skia_use_egl) {
492 sources += [ "src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp" ]
493 libs += [ "EGL" ]
mtklein06c35c02016-09-20 12:28:12 -0700494 } else if (is_linux) {
495 sources += [ "src/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -0500496 libs += [
497 "GL",
498 "GLU",
499 ]
mtklein06c35c02016-09-20 12:28:12 -0700500 } else if (is_mac) {
501 sources += [ "src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp" ]
Chinmay Garde130a1182016-11-23 11:43:56 -0800502 } else if (is_ios) {
503 sources += [ "src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400504 } else if (is_win) {
505 sources += [ "src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp" ]
506 libs += [ "OpenGL32.lib" ]
mtklein06c35c02016-09-20 12:28:12 -0700507 } else {
508 sources += [ "src/gpu/gl/GrGLCreateNativeInterface_none.cpp" ]
509 }
mtkleine9fb3d52016-09-20 15:11:46 -0700510
511 if (skia_use_vulkan) {
512 public_defines += [ "SK_VULKAN" ]
513 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700514 if (skia_enable_vulkan_debug_layers) {
515 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
516 }
mtkleine9fb3d52016-09-20 15:11:46 -0700517 }
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400518 if (skia_enable_spirv_validation) {
Ethan Nicholas762466e2017-06-29 10:03:38 -0400519 deps += [ "//third_party/spirv-tools" ]
Ethan Nicholasa6ae1f72017-03-16 09:56:54 -0400520 public_defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
521 }
Greg Daniele5ddff52017-07-05 16:49:36 -0400522
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400523 cflags_objcc = []
Greg Daniele5ddff52017-07-05 16:49:36 -0400524 if (skia_use_metal) {
525 public_defines += [ "SK_METAL" ]
526 sources += skia_metal_sources
527 libs += [ "Metal.framework" ]
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400528 cflags_objcc += [ "-fobjc-arc" ]
Greg Daniele5ddff52017-07-05 16:49:36 -0400529 }
mtklein06c35c02016-09-20 12:28:12 -0700530}
531
mtklein63213812016-08-24 09:55:56 -0700532optional("jpeg") {
533 enabled = skia_use_libjpeg_turbo
534 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
535
mtklein63213812016-08-24 09:55:56 -0700536 deps = [
537 "//third_party/libjpeg-turbo:libjpeg",
538 ]
539 sources = [
540 "src/codec/SkJpegCodec.cpp",
541 "src/codec/SkJpegDecoderMgr.cpp",
542 "src/codec/SkJpegUtility.cpp",
mtklein63213812016-08-24 09:55:56 -0700543 "src/images/SkJPEGWriteUtility.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400544 "src/images/SkJpegEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700545 ]
546}
547
548optional("pdf") {
Hal Canary43fb7a02016-12-30 13:09:03 -0500549 enabled = skia_use_zlib && skia_enable_pdf
550 public_defines = [ "SK_SUPPORT_PDF" ]
mtklein63213812016-08-24 09:55:56 -0700551
mtklein63213812016-08-24 09:55:56 -0700552 deps = [
553 "//third_party/zlib",
554 ]
brettwb9447282016-09-01 14:24:39 -0700555 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -0700556 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
mtklein63213812016-08-24 09:55:56 -0700557
558 if (skia_use_sfntly) {
559 deps += [ "//third_party/sfntly" ]
Hal Canary43fb7a02016-12-30 13:09:03 -0500560 public_defines += [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -0700561 }
562}
563
564optional("png") {
565 enabled = skia_use_libpng
566 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
567
mtklein63213812016-08-24 09:55:56 -0700568 deps = [
569 "//third_party/libpng",
570 ]
571 sources = [
572 "src/codec/SkIcoCodec.cpp",
573 "src/codec/SkPngCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400574 "src/images/SkPngEncoder.cpp",
mtklein63213812016-08-24 09:55:56 -0700575 ]
576}
577
scroggof84ad642016-10-31 09:02:57 -0700578optional("raw") {
Mike Klein10d665d2016-11-01 11:46:10 -0400579 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -0700580 public_defines = [ "SK_CODEC_DECODES_RAW" ]
581
582 deps = [
583 "//third_party/dng_sdk",
584 "//third_party/libjpeg-turbo:libjpeg",
585 "//third_party/piex",
586 ]
587
588 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
589 # Skia.
590 configs_to_remove = [ "//gn:no_exceptions" ]
591
592 sources = [
593 "src/codec/SkRawAdapterCodec.cpp",
594 "src/codec/SkRawCodec.cpp",
595 ]
596}
597
mtklein3cc22182016-08-29 13:26:14 -0700598optional("typeface_freetype") {
599 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -0700600
601 deps = [
602 "//third_party/freetype2",
603 ]
604 sources = [
605 "src/ports/SkFontHost_FreeType.cpp",
606 "src/ports/SkFontHost_FreeType_common.cpp",
607 ]
608}
609
mtklein457b42a2016-08-23 13:56:37 -0700610optional("webp") {
611 enabled = skia_use_libwebp
612 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
613
mtklein457b42a2016-08-23 13:56:37 -0700614 deps = [
615 "//third_party/libwebp",
616 ]
617 sources = [
618 "src/codec/SkWebpAdapterCodec.cpp",
619 "src/codec/SkWebpCodec.cpp",
Matt Sarett04c37312017-05-05 14:02:13 -0400620 "src/images/SkWebpEncoder.cpp",
mtklein457b42a2016-08-23 13:56:37 -0700621 ]
mtkleineb3c4252016-08-23 07:38:09 -0700622}
623
mtklein63213812016-08-24 09:55:56 -0700624optional("xml") {
625 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +0000626 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -0700627
mtklein63213812016-08-24 09:55:56 -0700628 deps = [
629 "//third_party/expat",
630 ]
631 sources = [
Mike Kleinbd41bcc2017-02-09 16:38:15 -0500632 "src/svg/SkSVGCanvas.cpp",
633 "src/svg/SkSVGDevice.cpp",
mtklein63213812016-08-24 09:55:56 -0700634 "src/xml/SkDOM.cpp",
635 "src/xml/SkXMLParser.cpp",
636 "src/xml/SkXMLWriter.cpp",
637 ]
638}
639
mtkleinc04ff472016-06-23 10:29:30 -0700640component("skia") {
641 public_configs = [ ":skia_public" ]
642 configs += skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -0700643
644 deps = [
anmittalb8b3f712016-08-25 04:55:19 -0700645 ":arm64",
646 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -0700647 ":avx",
anmittalb8b3f712016-08-25 04:55:19 -0700648 ":crc32",
Mike Kleina04bb452017-02-09 12:24:07 -0500649 ":effects",
mtkleina45be612016-08-29 15:22:10 -0700650 ":fontmgr_android",
mtkleind2e39db2016-09-07 07:52:55 -0700651 ":fontmgr_custom",
mtklein3cc22182016-08-29 13:26:14 -0700652 ":fontmgr_fontconfig",
mtkleincdedd0e2016-09-12 15:15:44 -0700653 ":fontmgr_fuchsia",
mtklein06c35c02016-09-20 12:28:12 -0700654 ":gpu",
mtklein63213812016-08-24 09:55:56 -0700655 ":jpeg",
mtklein9b8583d2016-08-24 17:32:30 -0700656 ":none",
mtklein63213812016-08-24 09:55:56 -0700657 ":pdf",
658 ":png",
scroggof84ad642016-10-31 09:02:57 -0700659 ":raw",
mtklein9b8583d2016-08-24 17:32:30 -0700660 ":sse2",
661 ":sse41",
662 ":sse42",
663 ":ssse3",
mtkleineb3c4252016-08-23 07:38:09 -0700664 ":webp",
mtklein63213812016-08-24 09:55:56 -0700665 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -0700666 ]
667
Chinmay Garde43f115c2016-11-16 15:04:12 -0800668 # This file (and all GN files in Skia) are designed to work with an
669 # empty sources assignment filter; we handle all that explicitly.
670 # We clear the filter here for clients who may have set up a global filter.
671 set_sources_assignment_filter([])
672
mtkleinc04ff472016-06-23 10:29:30 -0700673 sources = []
brettwb9447282016-09-01 14:24:39 -0700674 sources += skia_core_sources
brettwb9447282016-09-01 14:24:39 -0700675 sources += skia_utils_sources
Hal Canary6ad3d2f2016-12-20 16:15:56 -0500676 sources += skia_xps_sources
mtkleinc04ff472016-06-23 10:29:30 -0700677 sources += [
mtklein25c81d42016-07-27 13:55:26 -0700678 "src/android/SkBitmapRegionCodec.cpp",
679 "src/android/SkBitmapRegionDecoder.cpp",
680 "src/codec/SkAndroidCodec.cpp",
Leon Scroggins IIId81fed92017-06-01 13:42:28 -0400681 "src/codec/SkBmpBaseCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700682 "src/codec/SkBmpCodec.cpp",
683 "src/codec/SkBmpMaskCodec.cpp",
684 "src/codec/SkBmpRLECodec.cpp",
685 "src/codec/SkBmpStandardCodec.cpp",
686 "src/codec/SkCodec.cpp",
687 "src/codec/SkCodecImageGenerator.cpp",
scroggo19b91532016-10-24 09:03:26 -0700688 "src/codec/SkGifCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700689 "src/codec/SkMaskSwizzler.cpp",
690 "src/codec/SkMasks.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700691 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700692 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -0700693 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700694 "src/codec/SkSwizzler.cpp",
695 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700696 "src/images/SkImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700697 "src/ports/SkDiscardableMemory_none.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700698 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700699 "src/ports/SkMemory_malloc.cpp",
700 "src/ports/SkOSFile_stdio.cpp",
701 "src/sfnt/SkOTTable_name.cpp",
702 "src/sfnt/SkOTUtils.cpp",
703 "src/utils/mac/SkStream_mac.cpp",
scroggo3d3a65c2016-10-24 12:28:30 -0700704 "third_party/gif/SkGifImageReader.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700705 ]
brettwb9447282016-09-01 14:24:39 -0700706
mtklein7d6fb2c2016-08-25 14:50:44 -0700707 libs = []
708
mtkleinc04ff472016-06-23 10:29:30 -0700709 if (is_win) {
710 sources += [
Mike Kleinae7e6712016-10-11 17:49:33 -0400711 "src/fonts/SkFontMgr_indirect.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700712 "src/ports/SkDebug_win.cpp",
713 "src/ports/SkFontHost_win.cpp",
714 "src/ports/SkFontMgr_win_dw.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700715 "src/ports/SkImageEncoder_WIC.cpp",
716 "src/ports/SkImageGeneratorWIC.cpp",
717 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -0700718 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700719 "src/ports/SkScalerContext_win_dw.cpp",
720 "src/ports/SkTLS_win.cpp",
721 "src/ports/SkTypeface_win_dw.cpp",
722 ]
Mike Klein69f6ed42016-10-13 15:45:07 -0400723 if (skia_use_gdi) {
724 sources += [ "src/ports/SkFontMgr_win_gdi_factory.cpp" ]
725 libs += [
726 "Gdi32.lib",
727 "Usp10.lib",
728 ]
729 } else {
730 sources += [ "src/ports/SkFontMgr_win_dw_factory.cpp" ]
731 }
mtkleinb9be9792016-09-16 14:44:18 -0700732 sources -=
733 [ get_path_info("src/utils/SkThreadUtils_pthread.cpp", "abspath") ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400734 libs += [
735 "FontSub.lib",
736 "Ole32.lib",
737 "OleAut32.lib",
738 "User32.lib",
739 ]
mtkleinc04ff472016-06-23 10:29:30 -0700740 } else {
741 sources += [
mtkleinc04ff472016-06-23 10:29:30 -0700742 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -0700743 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700744 "src/ports/SkTLS_pthread.cpp",
745 ]
746 }
747
mtklein7d6fb2c2016-08-25 14:50:44 -0700748 if (is_android) {
Mike Klein1c471872017-01-13 15:27:45 -0500749 deps += [ "//third_party/expat" ]
Mike Kleine459afd2017-03-03 09:21:30 -0500750 if (defined(ndk) && ndk != "") {
Mike Klein1c471872017-01-13 15:27:45 -0500751 deps += [ "//third_party/cpu-features" ]
752 }
mtklein06c35c02016-09-20 12:28:12 -0700753 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -0700754 libs += [
755 "EGL",
756 "GLESv2",
757 "log",
758 ]
759 }
760
mtkleinc04ff472016-06-23 10:29:30 -0700761 if (is_linux) {
mtklein06c35c02016-09-20 12:28:12 -0700762 sources += [ "src/ports/SkDebug_stdio.cpp" ]
mtkleinc04ff472016-06-23 10:29:30 -0700763 }
764
765 if (is_mac) {
766 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -0700767 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700768 "src/ports/SkFontHost_mac.cpp",
769 "src/ports/SkImageEncoder_CG.cpp",
770 "src/ports/SkImageGeneratorCG.cpp",
771 ]
mtklein09e61f72016-08-23 13:35:28 -0700772 libs += [
bungeman3e306f62017-03-29 11:32:02 -0400773 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
774 "AppKit.framework",
mtklein09e61f72016-08-23 13:35:28 -0700775 "ApplicationServices.framework",
776 "OpenGL.framework",
777 ]
mtkleinc04ff472016-06-23 10:29:30 -0700778 }
abarth6fc8ff02016-07-15 15:15:15 -0700779
Mike Klein7d302882016-11-03 14:06:31 -0400780 if (is_ios) {
781 sources += [
782 "src/ports/SkDebug_stdio.cpp",
783 "src/ports/SkFontHost_mac.cpp",
784 "src/ports/SkImageEncoder_CG.cpp",
785 "src/ports/SkImageGeneratorCG.cpp",
786 ]
787 libs += [
788 "CoreFoundation.framework",
789 "CoreGraphics.framework",
790 "CoreText.framework",
791 "ImageIO.framework",
792 "MobileCoreServices.framework",
bungeman3e306f62017-03-29 11:32:02 -0400793
794 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
795 "UIKit.framework",
Mike Klein7d302882016-11-03 14:06:31 -0400796 ]
797 }
798
abarth6fc8ff02016-07-15 15:15:15 -0700799 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -0700800 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -0700801 }
mtkleinc04ff472016-06-23 10:29:30 -0700802}
803
mtkleinc095df52016-08-24 12:23:52 -0700804# Targets guarded by skia_enable_tools may use //third_party freely.
805if (skia_enable_tools) {
Mike Klein308b5ac2016-12-06 16:03:52 -0500806 # Used by gn_to_bp.py to list our public include dirs.
807 source_set("public") {
808 configs += [ ":skia_public" ]
809 }
810
Mike Kleinc36dedf2016-11-18 09:35:28 -0500811 config("skia.h_config") {
812 include_dirs = [ "$target_gen_dir" ]
813 }
814 action("skia.h") {
815 public_configs = [ ":skia.h_config" ]
816 skia_h = "$target_gen_dir/skia.h"
817 script = "gn/find_headers.py"
Greg Danielc819e662017-04-19 16:39:45 -0400818 args = [ rebase_path(skia_h, root_build_dir) ] +
Robert Phillipsfcd5fdd2017-06-14 01:43:29 +0000819 rebase_path(skia_public_includes)
Mike Kleinc36dedf2016-11-18 09:35:28 -0500820 depfile = "$skia_h.deps"
821 outputs = [
822 skia_h,
823 ]
824 }
825
826 if (skia_enable_gpu && target_cpu == "x64") {
827 # Our bots only have 64-bit libOSMesa installed.
828 # TODO: worth fixing?
829 executable("fiddle") {
830 libs = []
Mike Kleinc36dedf2016-11-18 09:35:28 -0500831 sources = [
Mike Kleinc36dedf2016-11-18 09:35:28 -0500832 "tools/fiddle/draw.cpp",
833 "tools/fiddle/fiddle_main.cpp",
834 ]
Joe Gregorioa8fabd32017-05-31 09:45:19 -0400835
836 if (skia_use_egl) {
837 sources += [ "tools/fiddle/egl_context.cpp" ]
838 } else if (skia_use_mesa) {
839 sources += [ "tools/fiddle/mesa_context.cpp" ]
840 if (is_linux) {
841 libs += [ "OSMesa" ]
842 }
843 } else {
844 sources += [ "tools/fiddle/null_context.cpp" ]
845 }
Joe Gregorio1e735c02017-04-19 14:05:14 -0400846 testonly = true
Mike Kleinc36dedf2016-11-18 09:35:28 -0500847 deps = [
Joe Gregorio1e735c02017-04-19 14:05:14 -0400848 ":flags",
Mike Kleinc36dedf2016-11-18 09:35:28 -0500849 ":skia",
850 ":skia.h",
851 ]
852 }
853 }
854
855 if (skia_enable_gpu) {
856 source_set("public_headers_warnings_check") {
857 sources = [
858 "tools/public_headers_warnings_check.cpp",
859 ]
860 configs -= [ "//gn:warnings_except_public_headers" ]
861 deps = [
862 ":skia",
863 ":skia.h",
864 ]
865 }
866 }
867
mtkleinc095df52016-08-24 12:23:52 -0700868 template("test_lib") {
869 config(target_name + "_config") {
870 include_dirs = invoker.public_include_dirs
mtkleina627b5c2016-09-20 13:36:47 -0700871 if (defined(invoker.public_defines)) {
872 defines = invoker.public_defines
873 }
mtklein25c81d42016-07-27 13:55:26 -0700874 }
mtkleinc095df52016-08-24 12:23:52 -0700875 source_set(target_name) {
876 forward_variables_from(invoker, "*", [ "public_include_dirs" ])
877 public_configs = [
878 ":" + target_name + "_config",
879 ":skia_private",
880 ]
881
882 if (!defined(deps)) {
883 deps = []
884 }
885 deps += [ ":skia" ]
886 testonly = true
887 }
mtklein25c81d42016-07-27 13:55:26 -0700888 }
mtklein25c81d42016-07-27 13:55:26 -0700889
Mike Kleine6682eb2017-01-05 10:54:57 -0500890 template("test_app") {
891 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
892 shared_library("lib" + target_name) {
893 forward_variables_from(invoker, "*", [ "is_shared_library" ])
894 testonly = true
895 }
896 } else {
Mike Klein7d921032017-01-05 12:20:41 -0500897 _executable = target_name
898 executable(_executable) {
Mike Kleine6682eb2017-01-05 10:54:57 -0500899 forward_variables_from(invoker, "*", [ "is_shared_library" ])
900 testonly = true
901 }
902 }
Mike Klein7d921032017-01-05 12:20:41 -0500903 if (is_android && skia_android_serial != "" && defined(_executable)) {
904 action("push_" + target_name) {
905 script = "gn/push_to_android.py"
906 deps = [
907 ":" + _executable,
908 ]
909 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
910 outputs = [
911 _stamp,
912 ]
913 args = [
914 rebase_path("$root_build_dir/$_executable"),
915 skia_android_serial,
916 rebase_path(_stamp),
917 ]
918 testonly = true
919 }
920 }
Mike Kleine6682eb2017-01-05 10:54:57 -0500921 }
922
mtkleinc095df52016-08-24 12:23:52 -0700923 test_lib("gpu_tool_utils") {
mtklein38925aa2016-09-21 10:11:25 -0700924 public_include_dirs = []
925 if (skia_enable_gpu) {
926 public_defines = []
927 public_include_dirs += [ "tools/gpu" ]
mtkleind68f9b02016-09-23 13:18:41 -0700928
929 deps = []
mtklein38925aa2016-09-21 10:11:25 -0700930 sources = [
931 "tools/gpu/GrContextFactory.cpp",
932 "tools/gpu/GrTest.cpp",
933 "tools/gpu/TestContext.cpp",
934 "tools/gpu/gl/GLTestContext.cpp",
mtklein605d9522016-09-21 14:01:32 -0700935 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
mtklein38925aa2016-09-21 10:11:25 -0700936 "tools/gpu/gl/debug/DebugGLTestContext.cpp",
937 "tools/gpu/gl/debug/GrBufferObj.cpp",
938 "tools/gpu/gl/debug/GrFrameBufferObj.cpp",
939 "tools/gpu/gl/debug/GrProgramObj.cpp",
940 "tools/gpu/gl/debug/GrShaderObj.cpp",
941 "tools/gpu/gl/debug/GrTextureObj.cpp",
942 "tools/gpu/gl/debug/GrTextureUnitObj.cpp",
943 "tools/gpu/gl/null/NullGLTestContext.cpp",
Brian Salomoncfe910d2017-07-06 16:40:18 -0400944 "tools/gpu/mock/MockTestContext.cpp",
mtklein38925aa2016-09-21 10:11:25 -0700945 ]
946 libs = []
mtklein25c81d42016-07-27 13:55:26 -0700947
Kevin Lubick4a24e102017-03-29 11:19:01 -0400948 if (is_android || skia_use_egl) {
mtklein38925aa2016-09-21 10:11:25 -0700949 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
Mike Klein7d302882016-11-03 14:06:31 -0400950 } else if (is_ios) {
951 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
952 libs += [ "OpenGLES.framework" ]
mtklein38925aa2016-09-21 10:11:25 -0700953 } else if (is_linux) {
954 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
Mike Kleina979a1d2017-02-23 10:31:13 -0500955 libs += [ "X11" ]
mtklein38925aa2016-09-21 10:11:25 -0700956 } else if (is_mac) {
957 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400958 } else if (is_win) {
959 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
960 libs += [
961 "Gdi32.lib",
962 "OpenGL32.lib",
963 ]
mtklein38925aa2016-09-21 10:11:25 -0700964 }
mtklein6ef69992016-09-14 06:12:09 -0700965
Greg Daniel6b7e0e22017-07-12 16:21:09 -0400966 cflags_objcc = [ "-fobjc-arc" ]
967
Mike Kleinc168a3a2016-11-14 14:53:13 +0000968 if (skia_use_angle) {
Mike Kleinc168a3a2016-11-14 14:53:13 +0000969 deps += [ "//third_party/angle2" ]
970 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
971 }
mtklein38925aa2016-09-21 10:11:25 -0700972 if (skia_use_mesa) {
973 public_defines += [ "SK_MESA" ]
974 sources += [ "tools/gpu/gl/mesa/GLTestContext_mesa.cpp" ]
975 libs += [ "OSMesa" ]
976 }
mtkleind68f9b02016-09-23 13:18:41 -0700977 if (skia_use_vulkan) {
978 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
Brian Salomon5db010b2017-04-25 16:05:29 -0400979 if (is_win) {
980 libs += [ "vulkan-1.lib" ]
981 } else {
982 libs += [ "vulkan" ]
983 }
mtkleind68f9b02016-09-23 13:18:41 -0700984 }
Greg Danielb76a72a2017-07-13 15:07:54 -0400985 if (skia_use_metal) {
986 sources += [ "tools/gpu/mtl/MtlTestContext.mm" ]
987 }
mtkleina627b5c2016-09-20 13:36:47 -0700988 }
mtklein25c81d42016-07-27 13:55:26 -0700989 }
mtklein25c81d42016-07-27 13:55:26 -0700990
mtkleinc095df52016-08-24 12:23:52 -0700991 test_lib("flags") {
992 public_include_dirs = [ "tools/flags" ]
993 sources = [
994 "tools/flags/SkCommandLineFlags.cpp",
mtklein046cb562016-09-16 10:23:12 -0700995 ]
996 }
997 test_lib("common_flags") {
998 public_include_dirs = [ "tools/flags" ]
999 sources = [
mtkleinc095df52016-08-24 12:23:52 -07001000 "tools/flags/SkCommonFlags.cpp",
1001 "tools/flags/SkCommonFlagsConfig.cpp",
1002 ]
1003 deps = [
mtklein046cb562016-09-16 10:23:12 -07001004 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001005 ":gpu_tool_utils",
1006 ]
1007 }
mtklein25c81d42016-07-27 13:55:26 -07001008
mtkleinc095df52016-08-24 12:23:52 -07001009 test_lib("tool_utils") {
1010 public_include_dirs = [
1011 "tools",
1012 "tools/debugger",
1013 "tools/timer",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001014 "tools/trace",
mtkleinc095df52016-08-24 12:23:52 -07001015 ]
1016 sources = [
mtkleinb37c0342016-09-09 11:07:45 -07001017 "tools/AndroidSkDebugToStdOut.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001018 "tools/CrashHandler.cpp",
mtklein0590fa52016-09-01 07:06:54 -07001019 "tools/LsanSuppressions.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001020 "tools/ProcStats.cpp",
1021 "tools/Resources.cpp",
1022 "tools/ThermalManager.cpp",
1023 "tools/UrlDataManager.cpp",
1024 "tools/debugger/SkDebugCanvas.cpp",
1025 "tools/debugger/SkDrawCommand.cpp",
1026 "tools/debugger/SkJsonWriteBuffer.cpp",
1027 "tools/debugger/SkObjectParser.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001028 "tools/picture_utils.cpp",
1029 "tools/random_parse_path.cpp",
1030 "tools/sk_tool_utils.cpp",
1031 "tools/sk_tool_utils_font.cpp",
1032 "tools/timer/Timer.cpp",
Brian Osman53136aa2017-07-20 15:43:35 -04001033 "tools/trace/SkChromeTracingTracer.cpp",
1034 "tools/trace/SkChromeTracingTracer.h",
Brian Salomondcbb9d92017-07-19 10:53:20 -04001035 "tools/trace/SkDebugfTracer.cpp",
1036 "tools/trace/SkDebugfTracer.h",
Brian Osman53136aa2017-07-20 15:43:35 -04001037 "tools/trace/SkEventTracingPriv.cpp",
1038 "tools/trace/SkEventTracingPriv.h",
mtkleinc095df52016-08-24 12:23:52 -07001039 ]
Mike Kleinadacaef2017-02-06 09:26:14 -05001040 libs = []
1041 if (is_ios) {
1042 sources += [ "tools/ios_utils.m" ]
1043 libs += [ "Foundation.framework" ]
1044 }
mtkleinc095df52016-08-24 12:23:52 -07001045 deps = [
mtklein046cb562016-09-16 10:23:12 -07001046 ":common_flags",
mtkleinc095df52016-08-24 12:23:52 -07001047 ":flags",
1048 "//third_party/libpng",
1049 ]
1050 public_deps = [
1051 "//third_party/jsoncpp",
1052 ]
1053 }
mtklein25c81d42016-07-27 13:55:26 -07001054
Mike Klein6e744122016-10-27 12:21:40 -04001055 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -07001056 test_lib("gm") {
1057 public_include_dirs = [ "gm" ]
1058 sources = gm_sources
1059 deps = [
scroggo19b91532016-10-24 09:03:26 -07001060 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001061 ":gpu_tool_utils",
1062 ":skia",
1063 ":tool_utils",
1064 ]
1065 }
mtklein25c81d42016-07-27 13:55:26 -07001066
Mike Klein6e744122016-10-27 12:21:40 -04001067 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -07001068 test_lib("tests") {
1069 public_include_dirs = [ "tests" ]
Mike Klein6e744122016-10-27 12:21:40 -04001070 sources = tests_sources + pathops_tests_sources
mtkleina45be612016-08-29 15:22:10 -07001071 if (!fontmgr_android_enabled) {
Mike Klein6e744122016-10-27 12:21:40 -04001072 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -07001073 }
mtkleinc095df52016-08-24 12:23:52 -07001074 deps = [
fmalita6cf896d2016-08-25 08:44:35 -07001075 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -07001076 ":flags",
mtkleinc095df52016-08-24 12:23:52 -07001077 ":skia",
1078 ":tool_utils",
1079 "//third_party/libpng",
1080 "//third_party/zlib",
1081 ]
Mike Kleind63442d2017-03-27 14:16:04 -04001082 public_deps = [
1083 ":gpu_tool_utils", # Test.h #includes headers from this target.
1084 ]
mtkleinc095df52016-08-24 12:23:52 -07001085 }
mtklein2f3416d2016-08-02 16:02:05 -07001086
Mike Klein6e744122016-10-27 12:21:40 -04001087 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -07001088 test_lib("bench") {
1089 public_include_dirs = [ "bench" ]
1090 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -07001091 deps = [
1092 ":flags",
1093 ":gm",
1094 ":gpu_tool_utils",
1095 ":skia",
1096 ":tool_utils",
1097 ]
1098 }
mtklein2b6870c2016-07-28 14:17:33 -07001099
mtkleinc095df52016-08-24 12:23:52 -07001100 test_lib("experimental_svg_model") {
1101 public_include_dirs = [ "experimental/svg/model" ]
1102 sources = [
1103 "experimental/svg/model/SkSVGAttribute.cpp",
1104 "experimental/svg/model/SkSVGAttributeParser.cpp",
1105 "experimental/svg/model/SkSVGCircle.cpp",
Florin Malitace8840e2016-12-08 09:26:47 -05001106 "experimental/svg/model/SkSVGClipPath.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001107 "experimental/svg/model/SkSVGContainer.cpp",
1108 "experimental/svg/model/SkSVGDOM.cpp",
1109 "experimental/svg/model/SkSVGEllipse.cpp",
1110 "experimental/svg/model/SkSVGLine.cpp",
fmalita28d5b722016-09-12 17:06:47 -07001111 "experimental/svg/model/SkSVGLinearGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001112 "experimental/svg/model/SkSVGNode.cpp",
1113 "experimental/svg/model/SkSVGPath.cpp",
1114 "experimental/svg/model/SkSVGPoly.cpp",
1115 "experimental/svg/model/SkSVGRect.cpp",
1116 "experimental/svg/model/SkSVGRenderContext.cpp",
1117 "experimental/svg/model/SkSVGSVG.cpp",
1118 "experimental/svg/model/SkSVGShape.cpp",
fmalita28d5b722016-09-12 17:06:47 -07001119 "experimental/svg/model/SkSVGStop.cpp",
mtkleinc095df52016-08-24 12:23:52 -07001120 "experimental/svg/model/SkSVGTransformableNode.cpp",
1121 "experimental/svg/model/SkSVGValue.cpp",
1122 ]
1123 deps = [
1124 ":skia",
1125 ]
1126 }
fmalitaa2b9fdf2016-08-03 19:53:36 -07001127
Brian Osman16adfa32016-10-18 14:42:44 -04001128 test_lib("views") {
1129 public_include_dirs = [ "include/views" ]
1130 sources = [
1131 "src/views/SkEvent.cpp",
1132 "src/views/SkEventSink.cpp",
1133 "src/views/SkOSMenu.cpp",
1134 "src/views/SkTagList.cpp",
1135 "src/views/SkTouchGesture.cpp",
1136 "src/views/SkView.cpp",
1137 "src/views/SkViewPriv.cpp",
1138 ]
1139 libs = []
Brian Osman34755e22016-12-05 09:46:02 -05001140 deps = []
Brian Osman16adfa32016-10-18 14:42:44 -04001141 if (!is_android) {
1142 sources += [ "src/views/SkWindow.cpp" ]
1143 }
Jim Van Verth4e56a912016-10-21 10:58:52 -04001144 if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001145 public_include_dirs += [ "src/views/unix" ]
1146 sources += [
1147 "src/views/unix/SkOSWindow_Unix.cpp",
1148 "src/views/unix/keysym2ucs.c",
1149 ]
Mike Kleina979a1d2017-02-23 10:31:13 -05001150 libs += [
1151 "GL",
1152 "X11",
1153 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001154 } else if (is_mac) {
1155 sources += [
1156 "src/views/mac/SkEventNotifier.mm",
1157 "src/views/mac/SkNSView.mm",
1158 "src/views/mac/SkOSWindow_Mac.mm",
1159 "src/views/mac/SkTextFieldCell.m",
1160 ]
1161 libs += [
1162 "QuartzCore.framework",
1163 "Cocoa.framework",
1164 "Foundation.framework",
1165 ]
1166 } else if (is_win) {
1167 sources += [ "src/views/win/SkOSWindow_win.cpp" ]
1168 }
Brian Osman34755e22016-12-05 09:46:02 -05001169 if (skia_use_angle) {
1170 deps += [ "//third_party/angle2" ]
1171 }
Brian Osman16adfa32016-10-18 14:42:44 -04001172 }
1173
Mike Klein38af9432016-11-11 11:39:44 -05001174 if (skia_use_lua) {
1175 test_lib("lua") {
1176 public_include_dirs = []
1177 sources = [
1178 "src/utils/SkLua.cpp",
1179 "src/utils/SkLuaCanvas.cpp",
1180 ]
1181 deps = [
1182 "//third_party/lua",
1183 ]
1184 }
1185
Mike Kleine6682eb2017-01-05 10:54:57 -05001186 test_app("lua_app") {
Mike Klein38af9432016-11-11 11:39:44 -05001187 sources = [
1188 "tools/lua/lua_app.cpp",
1189 ]
1190 deps = [
1191 ":lua",
1192 ":skia",
1193 "//third_party/lua",
1194 ]
Mike Klein38af9432016-11-11 11:39:44 -05001195 }
1196
Mike Kleine6682eb2017-01-05 10:54:57 -05001197 test_app("lua_pictures") {
Mike Klein38af9432016-11-11 11:39:44 -05001198 sources = [
1199 "tools/lua/lua_pictures.cpp",
1200 ]
1201 deps = [
1202 ":flags",
1203 ":lua",
1204 ":skia",
1205 ":tool_utils",
1206 "//third_party/lua",
1207 ]
Mike Klein38af9432016-11-11 11:39:44 -05001208 }
1209 }
1210
Mike Klein6e744122016-10-27 12:21:40 -04001211 import("gn/samples.gni")
Brian Osman16adfa32016-10-18 14:42:44 -04001212 test_lib("samples") {
Brian Osman16adfa32016-10-18 14:42:44 -04001213 public_include_dirs = [ "samplecode" ]
Mike Klein6e744122016-10-27 12:21:40 -04001214 include_dirs = [ "experimental" ]
1215 sources = samples_sources + [
Mike Klein6e744122016-10-27 12:21:40 -04001216 "experimental/SkSetPoly3To3.cpp",
1217 "experimental/SkSetPoly3To3_A.cpp",
1218 "experimental/SkSetPoly3To3_D.cpp",
Brian Osmancff94e42017-06-26 13:12:37 -04001219
1220 # Relocating these files here, so that clients don't try to build them while they're
1221 # still in active development. Clang's thread safety analysis gets tripped up by
1222 # conditional locks.
1223 "src/core/SkThreadedBMPDevice.cpp",
1224 "src/core/SkThreadedBMPDevice.h",
Mike Klein6e744122016-10-27 12:21:40 -04001225 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001226 deps = [
1227 ":experimental_svg_model",
csmartdalton8c679092017-03-27 12:32:29 -06001228 ":flags",
Mike Klein6e744122016-10-27 12:21:40 -04001229 ":gm",
Brian Osman16adfa32016-10-18 14:42:44 -04001230 ":tool_utils",
1231 ":views",
1232 ":xml",
1233 ]
Mike Klein38af9432016-11-11 11:39:44 -05001234
1235 if (skia_use_lua) {
1236 sources += [ "samplecode/SampleLua.cpp" ]
1237 deps += [
1238 ":lua",
1239 "//third_party/lua",
1240 ]
1241 }
Brian Osman16adfa32016-10-18 14:42:44 -04001242 }
1243
Mike Kleine6682eb2017-01-05 10:54:57 -05001244 test_app("dm") {
mtklein2b6870c2016-07-28 14:17:33 -07001245 sources = [
1246 "dm/DM.cpp",
1247 "dm/DMJsonWriter.cpp",
1248 "dm/DMSrcSink.cpp",
mtklein2b6870c2016-07-28 14:17:33 -07001249 ]
1250 include_dirs = [ "tests" ]
1251 deps = [
mtklein046cb562016-09-16 10:23:12 -07001252 ":common_flags",
fmalitaa2b9fdf2016-08-03 19:53:36 -07001253 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001254 ":flags",
1255 ":gm",
1256 ":gpu_tool_utils",
1257 ":skia",
mtklein2f3416d2016-08-02 16:02:05 -07001258 ":tests",
mtklein2b6870c2016-07-28 14:17:33 -07001259 ":tool_utils",
1260 "//third_party/jsoncpp",
1261 "//third_party/libpng",
1262 ]
mtklein2b6870c2016-07-28 14:17:33 -07001263 }
1264
Mike Klein06432b22017-03-21 13:14:33 -04001265 test_app("ok") {
1266 sources = [
1267 "tools/ok.cpp",
Mike Klein7ac04832017-03-25 11:29:41 -04001268 "tools/ok_dsts.cpp",
1269 "tools/ok_srcs.cpp",
Mike Kleind63442d2017-03-27 14:16:04 -04001270 "tools/ok_test.cpp",
Mike Kleinf5d1a552017-03-25 12:32:22 -04001271 "tools/ok_vias.cpp",
Mike Klein06432b22017-03-21 13:14:33 -04001272 ]
1273 deps = [
1274 ":gm",
1275 ":skia",
Mike Kleind63442d2017-03-27 14:16:04 -04001276 ":tests",
Mike Klein62669ad2017-05-09 16:03:07 -04001277 ":tool_utils",
Mike Klein06432b22017-03-21 13:14:33 -04001278 ]
1279 }
1280
Mike Kleina3430172016-09-27 16:46:29 -04001281 if (!is_debug) { # I've benchmarked debug code once too many times...
Mike Kleine6682eb2017-01-05 10:54:57 -05001282 test_app("monobench") {
Mike Kleina3430172016-09-27 16:46:29 -04001283 sources = [
1284 "tools/monobench.cpp",
1285 ]
1286 deps = [
1287 ":bench",
1288 ":skia",
1289 ]
Mike Kleina3430172016-09-27 16:46:29 -04001290 }
mtklein2b6870c2016-07-28 14:17:33 -07001291 }
1292
Mike Kleine6682eb2017-01-05 10:54:57 -05001293 test_app("nanobench") {
mtklein2b6870c2016-07-28 14:17:33 -07001294 sources = [
1295 "bench/nanobench.cpp",
1296 ]
1297 deps = [
1298 ":bench",
mtklein046cb562016-09-16 10:23:12 -07001299 ":common_flags",
fmalita6519c212016-09-14 08:05:17 -07001300 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001301 ":flags",
1302 ":gm",
1303 ":gpu_tool_utils",
1304 ":skia",
1305 ":tool_utils",
1306 "//third_party/jsoncpp",
1307 ]
mtklein2b6870c2016-07-28 14:17:33 -07001308 }
halcanary19a97202016-08-03 15:08:04 -07001309
Ravi Mistry10d36c52017-01-31 09:49:18 -05001310 test_app("skpinfo") {
1311 sources = [
1312 "tools/skpinfo.cpp",
1313 ]
1314 deps = [
1315 ":flags",
1316 ":skia",
1317 ]
1318 }
1319
Jim Van Verth57a98fc2016-10-28 13:35:50 -04001320 if (is_linux || is_win || is_mac) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001321 test_app("SampleApp") {
mtklein38925aa2016-09-21 10:11:25 -07001322 sources = [
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001323 "samplecode/SampleApp.cpp",
1324 "samplecode/SamplePictFile.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001325 ]
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001326 if (is_mac) {
1327 sources += [ "src/views/mac/skia_mac.mm" ]
1328 } else if (is_win) {
1329 sources += [ "src/views/win/skia_win.cpp" ]
1330 } else if (is_linux) {
1331 sources += [ "src/views/unix/skia_unix.cpp" ]
1332 }
mtklein38925aa2016-09-21 10:11:25 -07001333 deps = [
1334 ":flags",
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001335 ":gm",
mtklein38925aa2016-09-21 10:11:25 -07001336 ":gpu_tool_utils",
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001337 ":samples",
mtklein38925aa2016-09-21 10:11:25 -07001338 ":skia",
1339 ":tool_utils",
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001340 ":views",
mtklein38925aa2016-09-21 10:11:25 -07001341 ]
Mike Kleinc168a3a2016-11-14 14:53:13 +00001342 if (skia_use_angle) {
1343 deps += [ "//third_party/angle2" ]
1344 }
mtklein38925aa2016-09-21 10:11:25 -07001345 }
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001346 }
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001347
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001348 if (skia_enable_gpu) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001349 test_app("skpbench") {
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001350 sources = [
1351 "tools/skpbench/skpbench.cpp",
1352 ]
1353 deps = [
1354 ":flags",
1355 ":gpu_tool_utils",
1356 ":skia",
1357 ":tool_utils",
1358 ]
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001359 }
csmartdalton4b5179b2016-09-19 11:03:58 -07001360 }
1361
Mike Klein7d302882016-11-03 14:06:31 -04001362 # We can't yet build ICU on iOS or Windows.
1363 if (!is_ios && !is_win) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001364 test_app("sktexttopdf-hb") {
mtklein6f5df6a2016-08-29 16:01:10 -07001365 sources = [
1366 "tools/SkShaper_harfbuzz.cpp",
1367 "tools/using_skia_and_harfbuzz.cpp",
1368 ]
1369 deps = [
1370 ":skia",
1371 "//third_party/harfbuzz",
1372 ]
mtklein6f5df6a2016-08-29 16:01:10 -07001373 }
halcanary19a97202016-08-03 15:08:04 -07001374 }
Mike Kleine6682eb2017-01-05 10:54:57 -05001375 test_app("sktexttopdf") {
halcanary3eee9d92016-09-10 07:01:53 -07001376 sources = [
1377 "tools/SkShaper_primitive.cpp",
1378 "tools/using_skia_and_harfbuzz.cpp",
1379 ]
1380 deps = [
1381 ":skia",
1382 ]
halcanary3eee9d92016-09-10 07:01:53 -07001383 }
mtklein046cb562016-09-16 10:23:12 -07001384
Matt Sarett9f1c4032017-05-17 10:06:32 -04001385 test_app("create_flutter_test_images") {
1386 sources = [
1387 "tools/create_flutter_test_images.cpp",
1388 ]
1389 deps = [
1390 ":skia",
1391 ":tool_utils",
1392 ]
1393 }
1394
Mike Kleine6682eb2017-01-05 10:54:57 -05001395 test_app("get_images_from_skps") {
mtklein046cb562016-09-16 10:23:12 -07001396 sources = [
1397 "tools/get_images_from_skps.cpp",
1398 ]
1399 deps = [
1400 ":flags",
1401 ":skia",
1402 "//third_party/jsoncpp",
1403 ]
mtklein046cb562016-09-16 10:23:12 -07001404 }
mtkleinecbc5262016-09-22 11:51:24 -07001405
Mike Kleine6682eb2017-01-05 10:54:57 -05001406 test_app("colorspaceinfo") {
Matt Sarett8740d582016-11-11 13:59:14 -05001407 sources = [
1408 "tools/colorspaceinfo.cpp",
1409 ]
1410 deps = [
1411 ":flags",
1412 ":skia",
1413 ":tool_utils",
1414 ]
Matt Sarett8740d582016-11-11 13:59:14 -05001415 }
1416
Mike Klein7d302882016-11-03 14:06:31 -04001417 if (!is_ios) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001418 test_app("skiaserve") {
Mike Klein7d302882016-11-03 14:06:31 -04001419 sources = [
1420 "tools/skiaserve/Request.cpp",
1421 "tools/skiaserve/Response.cpp",
1422 "tools/skiaserve/skiaserve.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001423 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1424 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1425 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1426 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1427 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1428 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1429 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1430 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1431 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
Brian Salomon144a5c52016-12-20 16:48:59 -05001432 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1433 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
Mike Klein7d302882016-11-03 14:06:31 -04001434 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1435 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1436 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1437 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1438 ]
1439 deps = [
1440 ":flags",
1441 ":gpu_tool_utils",
1442 ":skia",
1443 ":tool_utils",
1444 "//third_party/jsoncpp",
1445 "//third_party/libmicrohttpd",
1446 "//third_party/libpng",
1447 ]
Mike Klein7d302882016-11-03 14:06:31 -04001448 }
mtkleinecbc5262016-09-22 11:51:24 -07001449 }
kjlubick14f984b2016-10-03 11:49:45 -07001450
Mike Kleine6682eb2017-01-05 10:54:57 -05001451 test_app("fuzz") {
kjlubick14f984b2016-10-03 11:49:45 -07001452 sources = [
1453 "fuzz/FilterFuzz.cpp",
Hal Canary24ac42b2017-02-14 13:35:14 -05001454 "fuzz/FuzzCanvas.cpp",
Kevin Lubickfec1dea2016-11-22 13:57:18 -05001455 "fuzz/FuzzDrawFunctions.cpp",
kjlubick14f984b2016-10-03 11:49:45 -07001456 "fuzz/FuzzGradients.cpp",
1457 "fuzz/FuzzParsePath.cpp",
1458 "fuzz/FuzzPathop.cpp",
1459 "fuzz/FuzzScaleToSides.cpp",
1460 "fuzz/fuzz.cpp",
1461 ]
1462 deps = [
1463 ":flags",
Hal Canary44801ca2017-03-15 11:39:06 -04001464 ":gpu_tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001465 ":skia",
Hal Canarydb683012016-11-23 08:55:18 -07001466 ":tool_utils",
kjlubick14f984b2016-10-03 11:49:45 -07001467 ]
kjlubick14f984b2016-10-03 11:49:45 -07001468 }
Mike Klein38312422016-10-05 15:41:01 -04001469
Mike Kleine6682eb2017-01-05 10:54:57 -05001470 test_app("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04001471 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04001472 rebase_path("tests/skia_test.cpp"),
1473 rebase_path("tests/Test.cpp"),
1474 ]
caryclark9feb6322016-10-25 08:58:26 -07001475 deps = [
1476 ":flags",
1477 ":gpu_tool_utils",
1478 ":skia",
1479 ":tool_utils",
1480 ]
caryclark9feb6322016-10-25 08:58:26 -07001481 }
1482
Mike Kleine6682eb2017-01-05 10:54:57 -05001483 test_app("dump_record") {
Mike Klein38312422016-10-05 15:41:01 -04001484 sources = [
1485 "tools/DumpRecord.cpp",
1486 "tools/dump_record.cpp",
1487 ]
1488 deps = [
1489 ":flags",
1490 ":skia",
1491 ]
Mike Klein38312422016-10-05 15:41:01 -04001492 }
bungemanfe917272016-10-13 17:36:40 -04001493
Mike Kleine6682eb2017-01-05 10:54:57 -05001494 test_app("skdiff") {
bungemanfe917272016-10-13 17:36:40 -04001495 sources = [
1496 "tools/skdiff/skdiff.cpp",
1497 "tools/skdiff/skdiff_html.cpp",
1498 "tools/skdiff/skdiff_main.cpp",
1499 "tools/skdiff/skdiff_utils.cpp",
1500 ]
1501 deps = [
1502 ":skia",
1503 ":tool_utils",
1504 ]
bungemanfe917272016-10-13 17:36:40 -04001505 }
halcanarya73d76a2016-10-17 13:19:02 -07001506
Mike Kleine6682eb2017-01-05 10:54:57 -05001507 test_app("skp_parser") {
halcanarya73d76a2016-10-17 13:19:02 -07001508 sources = [
1509 "tools/skp_parser.cpp",
1510 ]
1511 deps = [
1512 ":skia",
1513 ":tool_utils",
1514 "//third_party/jsoncpp",
1515 ]
halcanarya73d76a2016-10-17 13:19:02 -07001516 }
Brian Osman16adfa32016-10-18 14:42:44 -04001517
Mike Kleina92c3832016-12-08 09:49:39 -05001518 if (skia_enable_gpu && (is_android || is_linux || is_win || is_mac)) {
Mike Kleine6682eb2017-01-05 10:54:57 -05001519 test_app("viewer") {
1520 is_shared_library = is_android
Brian Osman16adfa32016-10-18 14:42:44 -04001521 sources = [
1522 "tools/viewer/GMSlide.cpp",
1523 "tools/viewer/ImageSlide.cpp",
1524 "tools/viewer/SKPSlide.cpp",
1525 "tools/viewer/SampleSlide.cpp",
1526 "tools/viewer/Viewer.cpp",
1527 "tools/viewer/sk_app/CommandSet.cpp",
1528 "tools/viewer/sk_app/GLWindowContext.cpp",
1529 "tools/viewer/sk_app/Window.cpp",
Brian Osman16adfa32016-10-18 14:42:44 -04001530 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001531 libs = []
Brian Osman16adfa32016-10-18 14:42:44 -04001532
Jim Van Verth4e56a912016-10-21 10:58:52 -04001533 if (is_android) {
1534 sources += [
1535 "tools/viewer/sk_app/android/GLWindowContext_android.cpp",
1536 "tools/viewer/sk_app/android/RasterWindowContext_android.cpp",
1537 "tools/viewer/sk_app/android/Window_android.cpp",
1538 "tools/viewer/sk_app/android/main_android.cpp",
1539 "tools/viewer/sk_app/android/surface_glue_android.cpp",
1540 ]
Brian Osman462334e2017-02-09 11:22:57 -05001541 libs += [ "android" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001542 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001543 sources += [
1544 "tools/viewer/sk_app/unix/GLWindowContext_unix.cpp",
1545 "tools/viewer/sk_app/unix/RasterWindowContext_unix.cpp",
1546 "tools/viewer/sk_app/unix/Window_unix.cpp",
1547 "tools/viewer/sk_app/unix/main_unix.cpp",
1548 ]
1549 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001550 sources += [
1551 "tools/viewer/sk_app/win/GLWindowContext_win.cpp",
1552 "tools/viewer/sk_app/win/RasterWindowContext_win.cpp",
1553 "tools/viewer/sk_app/win/Window_win.cpp",
1554 "tools/viewer/sk_app/win/main_win.cpp",
1555 ]
Mike Klein43c25262016-10-20 10:17:47 -04001556 } else if (is_mac) {
1557 sources += [
1558 "tools/viewer/sk_app/mac/GLWindowContext_mac.cpp",
1559 "tools/viewer/sk_app/mac/RasterWindowContext_mac.cpp",
1560 "tools/viewer/sk_app/mac/Window_mac.cpp",
1561 "tools/viewer/sk_app/mac/main_mac.cpp",
1562 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001563 }
1564
1565 if (skia_use_vulkan) {
1566 sources += [ "tools/viewer/sk_app/VulkanWindowContext.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001567 if (is_android) {
1568 sources +=
1569 [ "tools/viewer/sk_app/android/VulkanWindowContext_android.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001570 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001571 sources += [ "tools/viewer/sk_app/unix/VulkanWindowContext_unix.cpp" ]
1572 libs += [ "X11-xcb" ]
1573 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001574 sources += [ "tools/viewer/sk_app/win/VulkanWindowContext_win.cpp" ]
1575 }
1576 }
1577
1578 include_dirs = []
1579 deps = [
1580 ":flags",
1581 ":gm",
1582 ":gpu_tool_utils",
1583 ":samples",
1584 ":skia",
1585 ":tool_utils",
1586 ":views",
Brian Osman79086b92017-02-10 13:36:16 -05001587 "//third_party/imgui",
Brian Osman16adfa32016-10-18 14:42:44 -04001588 "//third_party/jsoncpp",
1589 ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001590 if (is_android) {
1591 deps += [ "//third_party/native_app_glue" ]
1592 } else if (is_mac) {
Mike Klein43c25262016-10-20 10:17:47 -04001593 deps += [ "//third_party/libsdl" ]
1594 }
Mike Kleina92c3832016-12-08 09:49:39 -05001595 }
Brian Osman16adfa32016-10-18 14:42:44 -04001596 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05001597
Jim Van Verth4c70c752017-07-11 12:03:01 -04001598 if (skia_enable_gpu && (is_linux || is_mac)) {
1599 test_app("SkiaSDLExample") {
1600 sources = [
1601 "example/SkiaSDLExample.cpp",
1602 ]
1603 libs = []
1604 include_dirs = []
1605 deps = [
1606 ":gpu_tool_utils",
1607 ":skia",
1608 "//third_party/libsdl",
1609 ]
1610 }
1611 }
1612
Mike Kleine459afd2017-03-03 09:21:30 -05001613 if (is_android && defined(ndk) && ndk != "") {
Derek Sollenberger70120c72017-01-05 11:39:04 -05001614 copy("gdbserver") {
1615 sources = [
1616 "$ndk/$ndk_gdbserver",
1617 ]
1618 outputs = [
1619 "$root_out_dir/gdbserver",
1620 ]
1621 }
Derek Sollenberger70120c72017-01-05 11:39:04 -05001622 }
mtklein25c81d42016-07-27 13:55:26 -07001623}
Mike Kleinc55a6cb2017-06-28 13:21:47 -04001624
1625if (skia_jumper_clang != "") {
1626 action("regen_jumper") {
1627 script = "src/jumper/build_stages.py"
1628
1629 inputs = [
1630 "src/jumper/SkJumper_stages.cpp",
1631 "src/jumper/SkJumper_stages_lowp.cpp",
1632 ]
1633
1634 # GN insists its outputs should go somewhere underneath target_out_dir, so we trick it.
1635 outputs = [
1636 "$target_out_dir/" +
1637 rebase_path("src/jumper/SkJumper_generated.S", target_out_dir),
1638 "$target_out_dir/" +
1639 rebase_path("src/jumper/SkJumper_generated_win.S", target_out_dir),
1640 ]
1641
1642 args = [
1643 skia_jumper_clang,
1644 skia_jumper_objdump,
1645 skia_jumper_ccache,
1646 ] + rebase_path(inputs) + rebase_path(outputs)
1647 }
1648}