blob: c25458a62b7e47e71f2c9f32180779226d6355c5 [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
Mike Kleincfc4f442016-10-26 17:19:03 -04006import("gn/android_framework_defines.gni")
mikejurka8c24f4f2016-09-12 16:51:58 -07007import("gn/shared_sources.gni")
brettwb9447282016-09-01 14:24:39 -07008
mtklein3e8012e2016-09-21 09:14:19 -07009if (!defined(is_skia_standalone)) {
10 is_skia_standalone = false
11}
12
mtkleinc04ff472016-06-23 10:29:30 -070013declare_args() {
Mike Kleinc168a3a2016-11-14 14:53:13 +000014 skia_use_angle = false
mtklein63213812016-08-24 09:55:56 -070015 skia_use_expat = true
mtklein3cc22182016-08-29 13:26:14 -070016 skia_use_fontconfig = is_linux
mtkleincdedd0e2016-09-12 15:15:44 -070017 skia_use_freetype = is_android || is_fuchsia || is_linux
Mike Klein69f6ed42016-10-13 15:45:07 -040018 skia_use_gdi = false
Mike Klein7d302882016-11-03 14:06:31 -040019 skia_use_icu = !is_fuchsia && !is_ios && !is_win # TODO: Windows
mtklein63213812016-08-24 09:55:56 -070020 skia_use_libjpeg_turbo = true
21 skia_use_libpng = true
mtkleineb3c4252016-08-23 07:38:09 -070022 skia_use_libwebp = !is_fuchsia
Mike Klein38af9432016-11-11 11:39:44 -050023 skia_use_lua = false
mtkleina627b5c2016-09-20 13:36:47 -070024 skia_use_mesa = false
Mike Klein10d665d2016-11-01 11:46:10 -040025 skia_use_piex = !is_win
mtklein63213812016-08-24 09:55:56 -070026 skia_use_zlib = true
mtklein1bd72ba2016-09-16 07:45:52 -070027
28 skia_enable_android_framework_defines = false
mtklein06c35c02016-09-20 12:28:12 -070029 skia_enable_gpu = true
mtklein3e8012e2016-09-21 09:14:19 -070030 skia_enable_tools = is_skia_standalone
31 skia_enable_vulkan_debug_layers = is_skia_standalone && is_debug
Greg Daniel686bb212016-10-27 10:48:48 -040032 skia_vulkan_sdk = getenv("VULKAN_SDK")
mtkleinc04ff472016-06-23 10:29:30 -070033}
Brian Salomon23d73ea2016-10-27 13:31:37 -040034declare_args() {
James Robinson14b748d2016-11-12 18:29:39 -080035 skia_use_dng_sdk =
36 !is_fuchsia && !is_win && skia_use_libjpeg_turbo && skia_use_zlib
Mike Klein10d665d2016-11-01 11:46:10 -040037 skia_use_sfntly = skia_use_icu
38
Mike Klein4d598a32016-10-31 13:44:49 -040039 if (is_android) {
40 skia_use_vulkan = defined(ndk_api) && ndk_api >= 24
41 } else {
42 skia_use_vulkan = skia_vulkan_sdk != ""
43 }
Brian Salomon23d73ea2016-10-27 13:31:37 -040044}
Brian Salomon789e25e2016-09-30 13:41:03 -040045
mtklein38925aa2016-09-21 10:11:25 -070046# Our tools require static linking (they use non-exported symbols).
47skia_enable_tools = skia_enable_tools && !is_component_build
mtklein06c35c02016-09-20 12:28:12 -070048
mtkleina45be612016-08-29 15:22:10 -070049fontmgr_android_enabled = skia_use_expat && skia_use_freetype
50
mtklein1211e0c2016-07-26 13:55:45 -070051skia_public_includes = [
mtklein25c81d42016-07-27 13:55:26 -070052 "include/android",
mtkleinfa84d942016-07-28 09:45:14 -070053 "include/c",
mtklein1211e0c2016-07-26 13:55:45 -070054 "include/codec",
55 "include/config",
56 "include/core",
57 "include/effects",
58 "include/gpu",
59 "include/gpu/gl",
60 "include/images",
61 "include/pathops",
62 "include/ports",
mtklein25c81d42016-07-27 13:55:26 -070063 "include/svg",
mtklein1211e0c2016-07-26 13:55:45 -070064 "include/utils",
65 "include/utils/mac",
mtklein25c81d42016-07-27 13:55:26 -070066 "include/xml",
mtklein1211e0c2016-07-26 13:55:45 -070067]
68
mtkleinc04ff472016-06-23 10:29:30 -070069# Skia public API, generally provided by :skia.
70config("skia_public") {
mtklein1211e0c2016-07-26 13:55:45 -070071 include_dirs = skia_public_includes
Mike Kleinae7e6712016-10-11 17:49:33 -040072 defines = []
73 if (is_component_build) {
74 defines += [ "SKIA_DLL" ]
75 }
Mike Kleinc4cbd742016-09-26 21:37:09 -040076 if (is_fuchsia || is_linux) {
jcgregorio5561e3d2016-08-25 09:25:11 -070077 defines += [ "SK_SAMPLES_FOR_X" ]
78 }
mtkleincae1be52016-09-20 08:24:34 -070079 if (skia_enable_android_framework_defines) {
Mike Kleincfc4f442016-10-26 17:19:03 -040080 defines += android_framework_defines
mtkleincae1be52016-09-20 08:24:34 -070081 }
mtklein06c35c02016-09-20 12:28:12 -070082 if (!skia_enable_gpu) {
83 defines += [ "SK_SUPPORT_GPU=0" ]
84 }
mtkleinc04ff472016-06-23 10:29:30 -070085}
86
87# Skia internal APIs, used by Skia itself and a few test tools.
88config("skia_private") {
89 visibility = [ ":*" ]
90
91 include_dirs = [
92 "include/private",
93 "src/c",
mtklein1211e0c2016-07-26 13:55:45 -070094 "src/codec",
mtkleinc04ff472016-06-23 10:29:30 -070095 "src/config",
96 "src/core",
97 "src/effects",
mtklein25c81d42016-07-27 13:55:26 -070098 "src/effects/gradients",
99 "src/fonts",
mtkleinc04ff472016-06-23 10:29:30 -0700100 "src/gpu",
101 "src/image",
102 "src/images",
103 "src/lazy",
104 "src/opts",
105 "src/pathops",
mtklein2b6870c2016-07-28 14:17:33 -0700106 "src/pdf",
mtkleinc04ff472016-06-23 10:29:30 -0700107 "src/ports",
108 "src/sfnt",
mtklein9e0d9dd2016-08-30 10:37:19 -0700109 "src/sksl",
mtkleinc04ff472016-06-23 10:29:30 -0700110 "src/utils",
mtklein7a1f45f2016-08-04 06:19:33 -0700111 "src/utils/win",
mtkleinc04ff472016-06-23 10:29:30 -0700112 "third_party/etc1",
scroggo19b91532016-10-24 09:03:26 -0700113 "third_party/gif",
mtkleinc04ff472016-06-23 10:29:30 -0700114 "third_party/ktx",
115 ]
mtklein150d1132016-08-01 06:56:40 -0700116
Jim Van Verthb6c5e532016-10-28 10:38:08 -0400117 defines = [
118 "SK_GAMMA_APPLY_TO_A8",
119 "SK_INTERNAL",
120 ]
mtkleinb37c0342016-09-09 11:07:45 -0700121 if (is_android) {
122 defines += [
123 "SK_GAMMA_EXPONENT=1.4",
124 "SK_GAMMA_CONTRAST=0.0",
125 ]
126 }
mtklein88a7ac02016-09-14 11:16:49 -0700127 if (is_official_build || is_android) {
128 # TODO(bsalomon): it'd be nice to make Android normal.
129 defines += [ "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0" ]
130 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400131 libs = []
132 lib_dirs = []
133 if (skia_use_vulkan) {
Greg Danielab563d42016-10-31 11:19:59 -0400134 if (skia_vulkan_sdk != "" && !is_android) {
Mike Klein487bfc22016-10-14 14:04:56 -0400135 if (is_win) {
136 include_dirs += [ "$skia_vulkan_sdk/Include/" ]
137 lib_dirs += [ "$skia_vulkan_sdk/Bin" ]
138 } else {
Greg Daniel686bb212016-10-27 10:48:48 -0400139 include_dirs += [ "$skia_vulkan_sdk/include/" ]
140 lib_dirs += [ "$skia_vulkan_sdk/lib/" ]
Mike Klein487bfc22016-10-14 14:04:56 -0400141 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400142 }
Mike Klein487bfc22016-10-14 14:04:56 -0400143 if (is_win) {
144 libs += [ "vulkan-1.lib" ]
145 } else {
146 libs += [ "vulkan" ]
147 }
Brian Salomon789e25e2016-09-30 13:41:03 -0400148 }
mtkleinc04ff472016-06-23 10:29:30 -0700149}
150
151# Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
152config("skia_library") {
153 visibility = [ ":*" ]
mtkleinc04ff472016-06-23 10:29:30 -0700154 defines = [ "SKIA_IMPLEMENTATION=1" ]
155}
156
157skia_library_configs = [
158 ":skia_public",
159 ":skia_private",
160 ":skia_library",
161]
162
mtklein9b8583d2016-08-24 17:32:30 -0700163# Use for CPU-specific Skia code that needs particular compiler flags.
164template("opts") {
165 if (invoker.enabled) {
166 source_set(target_name) {
167 forward_variables_from(invoker, "*")
168 configs += skia_library_configs
169 }
170 } else {
171 # If not enabled, a phony empty target that swallows all otherwise unused variables.
172 source_set(target_name) {
173 forward_variables_from(invoker,
174 "*",
175 [
176 "sources",
177 "cflags",
178 ])
179 }
180 }
anmittala7eaf2e2016-08-17 13:57:26 -0700181}
182
mtklein422310d2016-08-16 18:28:43 -0700183is_x86 = current_cpu == "x64" || current_cpu == "x86"
mtkleinc04ff472016-06-23 10:29:30 -0700184
mtklein7d6fb2c2016-08-25 14:50:44 -0700185opts("none") {
186 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
brettwb9447282016-09-01 14:24:39 -0700187 sources = skia_opts.none_sources
anmittalb8b3f712016-08-25 04:55:19 -0700188 cflags = []
189}
190
mtklein7d6fb2c2016-08-25 14:50:44 -0700191opts("armv7") {
anmittalb8b3f712016-08-25 04:55:19 -0700192 enabled = current_cpu == "arm"
brettwb9447282016-09-01 14:24:39 -0700193 sources = skia_opts.armv7_sources + skia_opts.neon_sources
mtklein7d6fb2c2016-08-25 14:50:44 -0700194 cflags = []
anmittalb8b3f712016-08-25 04:55:19 -0700195}
196
197opts("arm64") {
198 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700199 sources = skia_opts.arm64_sources
anmittalb8b3f712016-08-25 04:55:19 -0700200 cflags = []
201}
202
203opts("crc32") {
204 enabled = current_cpu == "arm64"
brettwb9447282016-09-01 14:24:39 -0700205 sources = skia_opts.crc32_sources
anmittalb8b3f712016-08-25 04:55:19 -0700206 cflags = [ "-march=armv8-a+crc" ]
207}
208
mtklein9b8583d2016-08-24 17:32:30 -0700209opts("sse2") {
210 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700211 sources = skia_opts.sse2_sources
Mike Kleind8765e32016-10-19 13:39:13 -0400212 if (is_win) {
213 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
214 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400215 cflags = [ "-msse2" ]
216 }
mtklein9b8583d2016-08-24 17:32:30 -0700217}
mtkleinc04ff472016-06-23 10:29:30 -0700218
mtklein9b8583d2016-08-24 17:32:30 -0700219opts("ssse3") {
220 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700221 sources = skia_opts.ssse3_sources
Mike Kleind8765e32016-10-19 13:39:13 -0400222 if (is_win) {
223 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
224 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400225 cflags = [ "-mssse3" ]
226 }
mtklein9b8583d2016-08-24 17:32:30 -0700227}
mtkleinc04ff472016-06-23 10:29:30 -0700228
mtklein9b8583d2016-08-24 17:32:30 -0700229opts("sse41") {
230 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700231 sources = skia_opts.sse41_sources
Mike Kleind8765e32016-10-19 13:39:13 -0400232 if (is_win) {
233 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
234 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400235 cflags = [ "-msse4.1" ]
236 }
mtklein9b8583d2016-08-24 17:32:30 -0700237}
mtklein4e976072016-08-08 09:06:27 -0700238
mtklein9b8583d2016-08-24 17:32:30 -0700239opts("sse42") {
240 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700241 sources = skia_opts.sse42_sources
Mike Kleind8765e32016-10-19 13:39:13 -0400242 if (is_win) {
243 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
244 } else {
Mike Klein3eb71212016-10-11 17:08:53 -0400245 cflags = [ "-msse4.2" ]
246 }
mtklein9b8583d2016-08-24 17:32:30 -0700247}
248
249opts("avx") {
250 enabled = is_x86
brettwb9447282016-09-01 14:24:39 -0700251 sources = skia_opts.avx_sources
Mike Klein3eb71212016-10-11 17:08:53 -0400252 if (is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000253 cflags = [ "/arch:AVX" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400254 } else {
255 cflags = [ "-mavx" ]
256 }
mtkleinc04ff472016-06-23 10:29:30 -0700257}
258
Mike Klein78d5a3b2016-09-30 10:48:01 -0400259opts("hsw") {
260 enabled = is_x86
261 sources = skia_opts.hsw_sources
Mike Klein3eb71212016-10-11 17:08:53 -0400262 if (is_win) {
Mike Klein17b6e482016-11-18 22:11:41 +0000263 cflags = [ "/arch:AVX2" ]
Mike Klein3eb71212016-10-11 17:08:53 -0400264 } else {
265 cflags = [
266 "-mavx2",
267 "-mbmi",
268 "-mbmi2",
269 "-mf16c",
270 "-mfma",
271 ]
272 }
Mike Klein78d5a3b2016-09-30 10:48:01 -0400273}
274
mtklein349cece2016-08-26 08:13:04 -0700275opts("dsp") {
276 enabled = current_cpu == "mipsel"
brettwb9447282016-09-01 14:24:39 -0700277 sources = skia_opts.mips_dsp_sources
mtkleinb6064ef2016-08-30 11:49:24 -0700278 cflags = []
mtklein349cece2016-08-26 08:13:04 -0700279}
280
mtkleinc095df52016-08-24 12:23:52 -0700281# Any feature of Skia that requires third-party code should be optional and use this template.
mtklein457b42a2016-08-23 13:56:37 -0700282template("optional") {
283 if (invoker.enabled) {
284 config(target_name + "_public") {
mtkleincd01b032016-08-31 04:58:19 -0700285 if (defined(invoker.public_defines)) {
286 defines = invoker.public_defines
287 }
mtklein457b42a2016-08-23 13:56:37 -0700288 }
289 source_set(target_name) {
mtkleincd01b032016-08-31 04:58:19 -0700290 forward_variables_from(invoker,
291 "*",
292 [
293 "public_defines",
294 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700295 "configs_to_remove",
mtkleincd01b032016-08-31 04:58:19 -0700296 ])
mtklein457b42a2016-08-23 13:56:37 -0700297 all_dependent_configs = [ ":" + target_name + "_public" ]
mtklein9b8583d2016-08-24 17:32:30 -0700298 configs += skia_library_configs
scroggof84ad642016-10-31 09:02:57 -0700299 if (defined(invoker.configs_to_remove)) {
300 configs -= invoker.configs_to_remove
301 }
mtklein457b42a2016-08-23 13:56:37 -0700302 }
303 } else {
mtklein457b42a2016-08-23 13:56:37 -0700304 source_set(target_name) {
305 forward_variables_from(invoker,
306 "*",
307 [
308 "public_defines",
mtklein457b42a2016-08-23 13:56:37 -0700309 "deps",
mtklein6ef69992016-09-14 06:12:09 -0700310 "libs",
mtklein457b42a2016-08-23 13:56:37 -0700311 "sources",
mtkleincd01b032016-08-31 04:58:19 -0700312 "sources_when_disabled",
scroggof84ad642016-10-31 09:02:57 -0700313 "configs_to_remove",
mtklein457b42a2016-08-23 13:56:37 -0700314 ])
mtkleincd01b032016-08-31 04:58:19 -0700315 if (defined(invoker.sources_when_disabled)) {
316 sources = invoker.sources_when_disabled
317 }
318 configs += skia_library_configs
mtklein457b42a2016-08-23 13:56:37 -0700319 }
mtkleineb3c4252016-08-23 07:38:09 -0700320 }
mtklein457b42a2016-08-23 13:56:37 -0700321}
mtklein457b42a2016-08-23 13:56:37 -0700322
mtkleina45be612016-08-29 15:22:10 -0700323optional("fontmgr_android") {
324 enabled = fontmgr_android_enabled
mtkleina45be612016-08-29 15:22:10 -0700325
326 deps = [
327 "//third_party/expat",
328 "//third_party/freetype2",
329 ]
330 sources = [
331 "src/ports/SkFontMgr_android.cpp",
332 "src/ports/SkFontMgr_android_factory.cpp",
333 "src/ports/SkFontMgr_android_parser.cpp",
334 ]
335}
336
mtkleind2e39db2016-09-07 07:52:55 -0700337optional("fontmgr_custom") {
338 enabled = is_linux && skia_use_freetype && !skia_use_fontconfig
339
340 deps = [
341 "//third_party/freetype2",
342 ]
343 sources = [
344 "src/ports/SkFontMgr_custom.cpp",
345 "src/ports/SkFontMgr_custom_directory_factory.cpp",
346 ]
347}
348
mtklein3cc22182016-08-29 13:26:14 -0700349optional("fontmgr_fontconfig") {
350 enabled = skia_use_freetype && skia_use_fontconfig
mtklein3cc22182016-08-29 13:26:14 -0700351
352 deps = [
353 "//third_party:fontconfig",
354 "//third_party/freetype2",
355 ]
356 sources = [
bungeman1ae0e012016-09-19 12:13:16 -0700357 "src/ports/SkFontConfigInterface.cpp",
mtklein3cc22182016-08-29 13:26:14 -0700358 "src/ports/SkFontConfigInterface_direct.cpp",
359 "src/ports/SkFontConfigInterface_direct_factory.cpp",
360 "src/ports/SkFontMgr_FontConfigInterface.cpp",
361 "src/ports/SkFontMgr_fontconfig.cpp",
362 "src/ports/SkFontMgr_fontconfig_factory.cpp",
363 ]
364}
365
mtkleincdedd0e2016-09-12 15:15:44 -0700366optional("fontmgr_fuchsia") {
367 enabled = is_fuchsia && skia_use_freetype
368
369 deps = [
370 "//third_party/freetype2",
371 ]
372 sources = [
373 "src/ports/SkFontMgr_custom.cpp",
374 "src/ports/SkFontMgr_custom_empty_factory.cpp",
375 ]
376}
377
mtklein06c35c02016-09-20 12:28:12 -0700378optional("gpu") {
379 enabled = skia_enable_gpu
mtkleine9fb3d52016-09-20 15:11:46 -0700380 public_defines = []
381
mtklein06c35c02016-09-20 12:28:12 -0700382 sources = skia_gpu_sources + [ "src/gpu/gl/GrGLDefaultInterface_native.cpp" ]
383
384 # These paths need to be absolute to match the ones produced by shared_sources.gni.
385 sources -= get_path_info([
386 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
387 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
388 ],
389 "abspath")
Mike Klein703cf5a2016-10-13 17:18:04 -0400390 libs = []
mtklein06c35c02016-09-20 12:28:12 -0700391 if (is_android) {
392 sources += [ "src/gpu/gl/android/GrGLCreateNativeInterface_android.cpp" ]
393 } else if (is_linux) {
394 sources += [ "src/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp" ]
395 } else if (is_mac) {
396 sources += [ "src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp" ]
Mike Klein703cf5a2016-10-13 17:18:04 -0400397 } else if (is_win) {
398 sources += [ "src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp" ]
399 libs += [ "OpenGL32.lib" ]
mtklein06c35c02016-09-20 12:28:12 -0700400 } else {
401 sources += [ "src/gpu/gl/GrGLCreateNativeInterface_none.cpp" ]
402 }
mtkleine9fb3d52016-09-20 15:11:46 -0700403
404 if (skia_use_vulkan) {
405 public_defines += [ "SK_VULKAN" ]
406 sources += skia_vk_sources
egdaniele4a9bd72016-09-21 07:36:14 -0700407 if (skia_enable_vulkan_debug_layers) {
408 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
409 }
mtkleine9fb3d52016-09-20 15:11:46 -0700410 }
mtklein06c35c02016-09-20 12:28:12 -0700411}
412
mtklein63213812016-08-24 09:55:56 -0700413optional("jpeg") {
414 enabled = skia_use_libjpeg_turbo
415 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
416
mtklein63213812016-08-24 09:55:56 -0700417 deps = [
418 "//third_party/libjpeg-turbo:libjpeg",
419 ]
420 sources = [
421 "src/codec/SkJpegCodec.cpp",
422 "src/codec/SkJpegDecoderMgr.cpp",
423 "src/codec/SkJpegUtility.cpp",
424 "src/images/SkJPEGImageEncoder.cpp",
425 "src/images/SkJPEGWriteUtility.cpp",
426 ]
427}
428
429optional("pdf") {
430 enabled = skia_use_zlib
mtklein63213812016-08-24 09:55:56 -0700431
mtklein63213812016-08-24 09:55:56 -0700432 deps = [
433 "//third_party/zlib",
434 ]
brettwb9447282016-09-01 14:24:39 -0700435 sources = skia_pdf_sources
mtkleincd01b032016-08-31 04:58:19 -0700436 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
mtklein63213812016-08-24 09:55:56 -0700437
438 if (skia_use_sfntly) {
439 deps += [ "//third_party/sfntly" ]
mtkleincd01b032016-08-31 04:58:19 -0700440 public_defines = [ "SK_PDF_USE_SFNTLY" ]
mtklein63213812016-08-24 09:55:56 -0700441 }
442}
443
444optional("png") {
445 enabled = skia_use_libpng
446 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
447
mtklein63213812016-08-24 09:55:56 -0700448 deps = [
449 "//third_party/libpng",
450 ]
451 sources = [
452 "src/codec/SkIcoCodec.cpp",
453 "src/codec/SkPngCodec.cpp",
454 "src/images/SkPNGImageEncoder.cpp",
455 ]
456}
457
scroggof84ad642016-10-31 09:02:57 -0700458optional("raw") {
Mike Klein10d665d2016-11-01 11:46:10 -0400459 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
scroggof84ad642016-10-31 09:02:57 -0700460 public_defines = [ "SK_CODEC_DECODES_RAW" ]
461
462 deps = [
463 "//third_party/dng_sdk",
464 "//third_party/libjpeg-turbo:libjpeg",
465 "//third_party/piex",
466 ]
467
468 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
469 # Skia.
470 configs_to_remove = [ "//gn:no_exceptions" ]
471
472 sources = [
473 "src/codec/SkRawAdapterCodec.cpp",
474 "src/codec/SkRawCodec.cpp",
475 ]
476}
477
mtklein3cc22182016-08-29 13:26:14 -0700478optional("typeface_freetype") {
479 enabled = skia_use_freetype
mtklein3cc22182016-08-29 13:26:14 -0700480
481 deps = [
482 "//third_party/freetype2",
483 ]
484 sources = [
485 "src/ports/SkFontHost_FreeType.cpp",
486 "src/ports/SkFontHost_FreeType_common.cpp",
487 ]
488}
489
mtklein457b42a2016-08-23 13:56:37 -0700490optional("webp") {
491 enabled = skia_use_libwebp
492 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
493
mtklein457b42a2016-08-23 13:56:37 -0700494 deps = [
495 "//third_party/libwebp",
496 ]
497 sources = [
498 "src/codec/SkWebpAdapterCodec.cpp",
499 "src/codec/SkWebpCodec.cpp",
500 "src/images/SkWEBPImageEncoder.cpp",
501 ]
mtkleineb3c4252016-08-23 07:38:09 -0700502}
503
mtklein63213812016-08-24 09:55:56 -0700504optional("xml") {
505 enabled = skia_use_expat
Florin Malita442fff92016-11-08 16:07:52 +0000506 public_defines = [ "SK_XML" ]
mtklein63213812016-08-24 09:55:56 -0700507
mtklein63213812016-08-24 09:55:56 -0700508 deps = [
509 "//third_party/expat",
510 ]
511 sources = [
512 "src/xml/SkDOM.cpp",
513 "src/xml/SkXMLParser.cpp",
514 "src/xml/SkXMLWriter.cpp",
515 ]
516}
517
mtkleinc04ff472016-06-23 10:29:30 -0700518component("skia") {
519 public_configs = [ ":skia_public" ]
520 configs += skia_library_configs
mtkleinc04ff472016-06-23 10:29:30 -0700521
522 deps = [
anmittalb8b3f712016-08-25 04:55:19 -0700523 ":arm64",
524 ":armv7",
mtklein9b8583d2016-08-24 17:32:30 -0700525 ":avx",
anmittalb8b3f712016-08-25 04:55:19 -0700526 ":crc32",
mtklein349cece2016-08-26 08:13:04 -0700527 ":dsp",
mtkleina45be612016-08-29 15:22:10 -0700528 ":fontmgr_android",
mtkleind2e39db2016-09-07 07:52:55 -0700529 ":fontmgr_custom",
mtklein3cc22182016-08-29 13:26:14 -0700530 ":fontmgr_fontconfig",
mtkleincdedd0e2016-09-12 15:15:44 -0700531 ":fontmgr_fuchsia",
mtklein06c35c02016-09-20 12:28:12 -0700532 ":gpu",
Mike Klein78d5a3b2016-09-30 10:48:01 -0400533 ":hsw",
mtklein63213812016-08-24 09:55:56 -0700534 ":jpeg",
mtklein9b8583d2016-08-24 17:32:30 -0700535 ":none",
mtklein63213812016-08-24 09:55:56 -0700536 ":pdf",
537 ":png",
scroggof84ad642016-10-31 09:02:57 -0700538 ":raw",
mtklein9b8583d2016-08-24 17:32:30 -0700539 ":sse2",
540 ":sse41",
541 ":sse42",
542 ":ssse3",
mtklein3cc22182016-08-29 13:26:14 -0700543 ":typeface_freetype",
mtkleineb3c4252016-08-23 07:38:09 -0700544 ":webp",
mtklein63213812016-08-24 09:55:56 -0700545 ":xml",
mtkleinc04ff472016-06-23 10:29:30 -0700546 ]
547
Chinmay Garde43f115c2016-11-16 15:04:12 -0800548 # This file (and all GN files in Skia) are designed to work with an
549 # empty sources assignment filter; we handle all that explicitly.
550 # We clear the filter here for clients who may have set up a global filter.
551 set_sources_assignment_filter([])
552
mtkleinc04ff472016-06-23 10:29:30 -0700553 sources = []
brettwb9447282016-09-01 14:24:39 -0700554 sources += skia_core_sources
555 sources += skia_effects_sources
brettwb9447282016-09-01 14:24:39 -0700556 sources += skia_sksl_sources
557 sources += skia_utils_sources
mtkleinc04ff472016-06-23 10:29:30 -0700558 sources += [
mtklein25c81d42016-07-27 13:55:26 -0700559 "src/android/SkBitmapRegionCodec.cpp",
560 "src/android/SkBitmapRegionDecoder.cpp",
561 "src/codec/SkAndroidCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700562 "src/codec/SkBmpCodec.cpp",
563 "src/codec/SkBmpMaskCodec.cpp",
564 "src/codec/SkBmpRLECodec.cpp",
565 "src/codec/SkBmpStandardCodec.cpp",
566 "src/codec/SkCodec.cpp",
567 "src/codec/SkCodecImageGenerator.cpp",
scroggo19b91532016-10-24 09:03:26 -0700568 "src/codec/SkGifCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700569 "src/codec/SkMaskSwizzler.cpp",
570 "src/codec/SkMasks.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700571 "src/codec/SkSampledCodec.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700572 "src/codec/SkSampler.cpp",
scroggo19b91532016-10-24 09:03:26 -0700573 "src/codec/SkStreamBuffer.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700574 "src/codec/SkSwizzler.cpp",
575 "src/codec/SkWbmpCodec.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700576 "src/images/SkImageEncoder.cpp",
577 "src/images/SkImageEncoder_Factory.cpp",
mtklein2b6870c2016-07-28 14:17:33 -0700578 "src/images/SkKTXImageEncoder.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700579 "src/ports/SkDiscardableMemory_none.cpp",
580 "src/ports/SkGlobalInitialization_default.cpp",
mtklein1211e0c2016-07-26 13:55:45 -0700581 "src/ports/SkImageGenerator_skia.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700582 "src/ports/SkMemory_malloc.cpp",
583 "src/ports/SkOSFile_stdio.cpp",
584 "src/sfnt/SkOTTable_name.cpp",
585 "src/sfnt/SkOTUtils.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700586 "src/svg/SkSVGCanvas.cpp",
587 "src/svg/SkSVGDevice.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700588 "src/utils/mac/SkStream_mac.cpp",
589 "third_party/etc1/etc1.cpp",
scroggo3d3a65c2016-10-24 12:28:30 -0700590 "third_party/gif/SkGifImageReader.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700591 "third_party/ktx/ktx.cpp",
592 ]
brettwb9447282016-09-01 14:24:39 -0700593
mtklein7d6fb2c2016-08-25 14:50:44 -0700594 libs = []
595
mtkleinc04ff472016-06-23 10:29:30 -0700596 if (is_win) {
597 sources += [
Mike Kleinae7e6712016-10-11 17:49:33 -0400598 "src/fonts/SkFontMgr_indirect.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700599 "src/ports/SkDebug_win.cpp",
600 "src/ports/SkFontHost_win.cpp",
601 "src/ports/SkFontMgr_win_dw.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700602 "src/ports/SkImageEncoder_WIC.cpp",
603 "src/ports/SkImageGeneratorWIC.cpp",
604 "src/ports/SkOSFile_win.cpp",
mtklein605d9522016-09-21 14:01:32 -0700605 "src/ports/SkOSLibrary_win.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700606 "src/ports/SkScalerContext_win_dw.cpp",
607 "src/ports/SkTLS_win.cpp",
608 "src/ports/SkTypeface_win_dw.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700609 "src/xps/SkDocument_XPS.cpp",
Mike Klein4b167fc2016-10-11 18:13:53 -0400610 "src/xps/SkXPSDevice.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700611 ]
Mike Klein69f6ed42016-10-13 15:45:07 -0400612 if (skia_use_gdi) {
613 sources += [ "src/ports/SkFontMgr_win_gdi_factory.cpp" ]
614 libs += [
615 "Gdi32.lib",
616 "Usp10.lib",
617 ]
618 } else {
619 sources += [ "src/ports/SkFontMgr_win_dw_factory.cpp" ]
620 }
mtkleinb9be9792016-09-16 14:44:18 -0700621 sources -=
622 [ get_path_info("src/utils/SkThreadUtils_pthread.cpp", "abspath") ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400623 libs += [
624 "FontSub.lib",
625 "Ole32.lib",
626 "OleAut32.lib",
627 "User32.lib",
628 ]
mtkleinc04ff472016-06-23 10:29:30 -0700629 } else {
630 sources += [
mtkleinc04ff472016-06-23 10:29:30 -0700631 "src/ports/SkOSFile_posix.cpp",
mtklein605d9522016-09-21 14:01:32 -0700632 "src/ports/SkOSLibrary_posix.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700633 "src/ports/SkTLS_pthread.cpp",
mtklein25c81d42016-07-27 13:55:26 -0700634 "src/xps/SkDocument_XPS_None.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700635 ]
636 }
637
mtklein7d6fb2c2016-08-25 14:50:44 -0700638 if (is_android) {
639 deps += [
640 "//third_party/cpu-features",
641 "//third_party/expat",
mtklein7d6fb2c2016-08-25 14:50:44 -0700642 ]
mtklein06c35c02016-09-20 12:28:12 -0700643 sources += [ "src/ports/SkDebug_android.cpp" ]
mtklein7d6fb2c2016-08-25 14:50:44 -0700644 libs += [
645 "EGL",
646 "GLESv2",
647 "log",
648 ]
649 }
650
mtkleinc04ff472016-06-23 10:29:30 -0700651 if (is_linux) {
mtklein09e61f72016-08-23 13:35:28 -0700652 libs += [
653 "GL",
654 "GLU",
655 "X11",
656 ]
mtklein06c35c02016-09-20 12:28:12 -0700657 sources += [ "src/ports/SkDebug_stdio.cpp" ]
mtkleinc04ff472016-06-23 10:29:30 -0700658 }
659
660 if (is_mac) {
661 sources += [
mtklein7d6fb2c2016-08-25 14:50:44 -0700662 "src/ports/SkDebug_stdio.cpp",
mtkleinc04ff472016-06-23 10:29:30 -0700663 "src/ports/SkFontHost_mac.cpp",
664 "src/ports/SkImageEncoder_CG.cpp",
665 "src/ports/SkImageGeneratorCG.cpp",
666 ]
mtklein09e61f72016-08-23 13:35:28 -0700667 libs += [
668 "ApplicationServices.framework",
669 "OpenGL.framework",
670 ]
mtkleinc04ff472016-06-23 10:29:30 -0700671 }
abarth6fc8ff02016-07-15 15:15:15 -0700672
Mike Klein7d302882016-11-03 14:06:31 -0400673 if (is_ios) {
674 sources += [
675 "src/ports/SkDebug_stdio.cpp",
676 "src/ports/SkFontHost_mac.cpp",
677 "src/ports/SkImageEncoder_CG.cpp",
678 "src/ports/SkImageGeneratorCG.cpp",
679 ]
680 libs += [
681 "CoreFoundation.framework",
682 "CoreGraphics.framework",
683 "CoreText.framework",
684 "ImageIO.framework",
685 "MobileCoreServices.framework",
686 ]
687 }
688
abarth6fc8ff02016-07-15 15:15:15 -0700689 if (is_fuchsia) {
mtklein06c35c02016-09-20 12:28:12 -0700690 sources += [ "src/ports/SkDebug_stdio.cpp" ]
abarth6fc8ff02016-07-15 15:15:15 -0700691 }
mtkleinc04ff472016-06-23 10:29:30 -0700692}
693
mtkleinc095df52016-08-24 12:23:52 -0700694# Targets guarded by skia_enable_tools may use //third_party freely.
695if (skia_enable_tools) {
Mike Kleinc36dedf2016-11-18 09:35:28 -0500696 config("skia.h_config") {
697 include_dirs = [ "$target_gen_dir" ]
698 }
699 action("skia.h") {
700 public_configs = [ ":skia.h_config" ]
701 skia_h = "$target_gen_dir/skia.h"
702 script = "gn/find_headers.py"
703 args = [ rebase_path(skia_h, root_build_dir) ] +
704 rebase_path(skia_public_includes)
705 depfile = "$skia_h.deps"
706 outputs = [
707 skia_h,
708 ]
709 }
710
711 if (skia_enable_gpu && target_cpu == "x64") {
712 # Our bots only have 64-bit libOSMesa installed.
713 # TODO: worth fixing?
714 executable("fiddle") {
715 libs = []
716 if (is_linux) {
717 libs += [ "OSMesa" ]
718 }
719
720 sources = [
721 "src/images/SkForceLinking.cpp",
722 "tools/fiddle/draw.cpp",
723 "tools/fiddle/fiddle_main.cpp",
724 ]
725 deps = [
726 ":skia",
727 ":skia.h",
728 ]
729 }
730 }
731
732 if (skia_enable_gpu) {
733 source_set("public_headers_warnings_check") {
734 sources = [
735 "tools/public_headers_warnings_check.cpp",
736 ]
737 configs -= [ "//gn:warnings_except_public_headers" ]
738 deps = [
739 ":skia",
740 ":skia.h",
741 ]
742 }
743 }
744
mtkleinc095df52016-08-24 12:23:52 -0700745 template("test_lib") {
746 config(target_name + "_config") {
747 include_dirs = invoker.public_include_dirs
mtkleina627b5c2016-09-20 13:36:47 -0700748 if (defined(invoker.public_defines)) {
749 defines = invoker.public_defines
750 }
mtklein25c81d42016-07-27 13:55:26 -0700751 }
mtkleinc095df52016-08-24 12:23:52 -0700752 source_set(target_name) {
753 forward_variables_from(invoker, "*", [ "public_include_dirs" ])
754 public_configs = [
755 ":" + target_name + "_config",
756 ":skia_private",
757 ]
758
759 if (!defined(deps)) {
760 deps = []
761 }
762 deps += [ ":skia" ]
763 testonly = true
764 }
mtklein25c81d42016-07-27 13:55:26 -0700765 }
mtklein25c81d42016-07-27 13:55:26 -0700766
mtkleinc095df52016-08-24 12:23:52 -0700767 test_lib("gpu_tool_utils") {
mtklein38925aa2016-09-21 10:11:25 -0700768 public_include_dirs = []
769 if (skia_enable_gpu) {
770 public_defines = []
771 public_include_dirs += [ "tools/gpu" ]
mtkleind68f9b02016-09-23 13:18:41 -0700772
773 deps = []
mtklein38925aa2016-09-21 10:11:25 -0700774 sources = [
775 "tools/gpu/GrContextFactory.cpp",
776 "tools/gpu/GrTest.cpp",
777 "tools/gpu/TestContext.cpp",
778 "tools/gpu/gl/GLTestContext.cpp",
mtklein605d9522016-09-21 14:01:32 -0700779 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
mtklein38925aa2016-09-21 10:11:25 -0700780 "tools/gpu/gl/debug/DebugGLTestContext.cpp",
781 "tools/gpu/gl/debug/GrBufferObj.cpp",
782 "tools/gpu/gl/debug/GrFrameBufferObj.cpp",
783 "tools/gpu/gl/debug/GrProgramObj.cpp",
784 "tools/gpu/gl/debug/GrShaderObj.cpp",
785 "tools/gpu/gl/debug/GrTextureObj.cpp",
786 "tools/gpu/gl/debug/GrTextureUnitObj.cpp",
787 "tools/gpu/gl/null/NullGLTestContext.cpp",
788 ]
789 libs = []
mtklein25c81d42016-07-27 13:55:26 -0700790
mtklein38925aa2016-09-21 10:11:25 -0700791 if (is_android) {
792 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
Mike Klein7d302882016-11-03 14:06:31 -0400793 } else if (is_ios) {
794 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
795 libs += [ "OpenGLES.framework" ]
mtklein38925aa2016-09-21 10:11:25 -0700796 } else if (is_linux) {
797 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
798 } else if (is_mac) {
799 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
Mike Klein4b167fc2016-10-11 18:13:53 -0400800 } else if (is_win) {
801 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
802 libs += [
803 "Gdi32.lib",
804 "OpenGL32.lib",
805 ]
mtklein38925aa2016-09-21 10:11:25 -0700806 }
mtklein6ef69992016-09-14 06:12:09 -0700807
Mike Kleinc168a3a2016-11-14 14:53:13 +0000808 if (skia_use_angle) {
809 public_defines += [ "SK_ANGLE" ]
810 deps += [ "//third_party/angle2" ]
811 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
812 }
mtklein38925aa2016-09-21 10:11:25 -0700813 if (skia_use_mesa) {
814 public_defines += [ "SK_MESA" ]
815 sources += [ "tools/gpu/gl/mesa/GLTestContext_mesa.cpp" ]
816 libs += [ "OSMesa" ]
817 }
mtkleind68f9b02016-09-23 13:18:41 -0700818 if (skia_use_vulkan) {
819 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
820 }
mtkleina627b5c2016-09-20 13:36:47 -0700821 }
mtklein25c81d42016-07-27 13:55:26 -0700822 }
mtklein25c81d42016-07-27 13:55:26 -0700823
mtkleinc095df52016-08-24 12:23:52 -0700824 test_lib("flags") {
825 public_include_dirs = [ "tools/flags" ]
826 sources = [
827 "tools/flags/SkCommandLineFlags.cpp",
mtklein046cb562016-09-16 10:23:12 -0700828 ]
829 }
830 test_lib("common_flags") {
831 public_include_dirs = [ "tools/flags" ]
832 sources = [
mtkleinc095df52016-08-24 12:23:52 -0700833 "tools/flags/SkCommonFlags.cpp",
834 "tools/flags/SkCommonFlagsConfig.cpp",
835 ]
836 deps = [
mtklein046cb562016-09-16 10:23:12 -0700837 ":flags",
mtkleinc095df52016-08-24 12:23:52 -0700838 ":gpu_tool_utils",
839 ]
840 }
mtklein25c81d42016-07-27 13:55:26 -0700841
mtkleinc095df52016-08-24 12:23:52 -0700842 test_lib("tool_utils") {
843 public_include_dirs = [
844 "tools",
845 "tools/debugger",
846 "tools/timer",
847 ]
848 sources = [
849 "src/images/SkForceLinking.cpp",
850 "src/utils/SkMultiPictureDocumentReader.cpp", # TODO(halcanary): move to tools?
mtkleinb37c0342016-09-09 11:07:45 -0700851 "tools/AndroidSkDebugToStdOut.cpp",
mtkleinc095df52016-08-24 12:23:52 -0700852 "tools/CrashHandler.cpp",
mtklein0590fa52016-09-01 07:06:54 -0700853 "tools/LsanSuppressions.cpp",
mtkleinc095df52016-08-24 12:23:52 -0700854 "tools/ProcStats.cpp",
855 "tools/Resources.cpp",
856 "tools/ThermalManager.cpp",
857 "tools/UrlDataManager.cpp",
858 "tools/debugger/SkDebugCanvas.cpp",
859 "tools/debugger/SkDrawCommand.cpp",
860 "tools/debugger/SkJsonWriteBuffer.cpp",
861 "tools/debugger/SkObjectParser.cpp",
mtkleinc095df52016-08-24 12:23:52 -0700862 "tools/picture_utils.cpp",
863 "tools/random_parse_path.cpp",
864 "tools/sk_tool_utils.cpp",
865 "tools/sk_tool_utils_font.cpp",
866 "tools/timer/Timer.cpp",
867 ]
868 deps = [
mtklein046cb562016-09-16 10:23:12 -0700869 ":common_flags",
mtkleinc095df52016-08-24 12:23:52 -0700870 ":flags",
871 "//third_party/libpng",
872 ]
873 public_deps = [
874 "//third_party/jsoncpp",
875 ]
876 }
mtklein25c81d42016-07-27 13:55:26 -0700877
Mike Klein6e744122016-10-27 12:21:40 -0400878 import("gn/gm.gni")
mtkleinc095df52016-08-24 12:23:52 -0700879 test_lib("gm") {
880 public_include_dirs = [ "gm" ]
881 sources = gm_sources
882 deps = [
scroggo19b91532016-10-24 09:03:26 -0700883 ":flags",
mtkleinc095df52016-08-24 12:23:52 -0700884 ":gpu_tool_utils",
885 ":skia",
886 ":tool_utils",
887 ]
888 }
mtklein25c81d42016-07-27 13:55:26 -0700889
Mike Klein6e744122016-10-27 12:21:40 -0400890 import("gn/tests.gni")
mtkleinc095df52016-08-24 12:23:52 -0700891 test_lib("tests") {
892 public_include_dirs = [ "tests" ]
Mike Klein6e744122016-10-27 12:21:40 -0400893 sources = tests_sources + pathops_tests_sources
mtkleina45be612016-08-29 15:22:10 -0700894 if (!fontmgr_android_enabled) {
Mike Klein6e744122016-10-27 12:21:40 -0400895 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
mtkleina45be612016-08-29 15:22:10 -0700896 }
mtkleinc095df52016-08-24 12:23:52 -0700897 deps = [
fmalita6cf896d2016-08-25 08:44:35 -0700898 ":experimental_svg_model",
mtkleinc095df52016-08-24 12:23:52 -0700899 ":flags",
900 ":gpu_tool_utils",
901 ":skia",
902 ":tool_utils",
903 "//third_party/libpng",
904 "//third_party/zlib",
905 ]
906 }
mtklein2f3416d2016-08-02 16:02:05 -0700907
Mike Klein6e744122016-10-27 12:21:40 -0400908 import("gn/bench.gni")
mtkleinc095df52016-08-24 12:23:52 -0700909 test_lib("bench") {
910 public_include_dirs = [ "bench" ]
911 sources = bench_sources
mtkleinc095df52016-08-24 12:23:52 -0700912 deps = [
913 ":flags",
914 ":gm",
915 ":gpu_tool_utils",
916 ":skia",
917 ":tool_utils",
918 ]
919 }
mtklein2b6870c2016-07-28 14:17:33 -0700920
mtkleinc095df52016-08-24 12:23:52 -0700921 test_lib("experimental_svg_model") {
922 public_include_dirs = [ "experimental/svg/model" ]
923 sources = [
924 "experimental/svg/model/SkSVGAttribute.cpp",
925 "experimental/svg/model/SkSVGAttributeParser.cpp",
926 "experimental/svg/model/SkSVGCircle.cpp",
927 "experimental/svg/model/SkSVGContainer.cpp",
928 "experimental/svg/model/SkSVGDOM.cpp",
929 "experimental/svg/model/SkSVGEllipse.cpp",
930 "experimental/svg/model/SkSVGLine.cpp",
fmalita28d5b722016-09-12 17:06:47 -0700931 "experimental/svg/model/SkSVGLinearGradient.cpp",
mtkleinc095df52016-08-24 12:23:52 -0700932 "experimental/svg/model/SkSVGNode.cpp",
933 "experimental/svg/model/SkSVGPath.cpp",
934 "experimental/svg/model/SkSVGPoly.cpp",
935 "experimental/svg/model/SkSVGRect.cpp",
936 "experimental/svg/model/SkSVGRenderContext.cpp",
937 "experimental/svg/model/SkSVGSVG.cpp",
938 "experimental/svg/model/SkSVGShape.cpp",
fmalita28d5b722016-09-12 17:06:47 -0700939 "experimental/svg/model/SkSVGStop.cpp",
mtkleinc095df52016-08-24 12:23:52 -0700940 "experimental/svg/model/SkSVGTransformableNode.cpp",
941 "experimental/svg/model/SkSVGValue.cpp",
942 ]
943 deps = [
944 ":skia",
945 ]
946 }
fmalitaa2b9fdf2016-08-03 19:53:36 -0700947
Brian Osman16adfa32016-10-18 14:42:44 -0400948 test_lib("views") {
949 public_include_dirs = [ "include/views" ]
950 sources = [
951 "src/views/SkEvent.cpp",
952 "src/views/SkEventSink.cpp",
953 "src/views/SkOSMenu.cpp",
954 "src/views/SkTagList.cpp",
955 "src/views/SkTouchGesture.cpp",
956 "src/views/SkView.cpp",
957 "src/views/SkViewPriv.cpp",
958 ]
959 libs = []
960 if (!is_android) {
961 sources += [ "src/views/SkWindow.cpp" ]
962 }
Jim Van Verth4e56a912016-10-21 10:58:52 -0400963 if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -0400964 public_include_dirs += [ "src/views/unix" ]
965 sources += [
966 "src/views/unix/SkOSWindow_Unix.cpp",
967 "src/views/unix/keysym2ucs.c",
968 ]
Brian Osman16adfa32016-10-18 14:42:44 -0400969 } else if (is_mac) {
970 sources += [
971 "src/views/mac/SkEventNotifier.mm",
972 "src/views/mac/SkNSView.mm",
973 "src/views/mac/SkOSWindow_Mac.mm",
974 "src/views/mac/SkTextFieldCell.m",
975 ]
976 libs += [
977 "QuartzCore.framework",
978 "Cocoa.framework",
979 "Foundation.framework",
980 ]
981 } else if (is_win) {
982 sources += [ "src/views/win/SkOSWindow_win.cpp" ]
983 }
984 }
985
Mike Klein38af9432016-11-11 11:39:44 -0500986 if (skia_use_lua) {
987 test_lib("lua") {
988 public_include_dirs = []
989 sources = [
990 "src/utils/SkLua.cpp",
991 "src/utils/SkLuaCanvas.cpp",
992 ]
993 deps = [
994 "//third_party/lua",
995 ]
996 }
997
998 executable("lua_app") {
999 sources = [
1000 "tools/lua/lua_app.cpp",
1001 ]
1002 deps = [
1003 ":lua",
1004 ":skia",
1005 "//third_party/lua",
1006 ]
1007 testonly = true
1008 }
1009
1010 executable("lua_pictures") {
1011 sources = [
1012 "tools/lua/lua_pictures.cpp",
1013 ]
1014 deps = [
1015 ":flags",
1016 ":lua",
1017 ":skia",
1018 ":tool_utils",
1019 "//third_party/lua",
1020 ]
1021 testonly = true
1022 }
1023 }
1024
Mike Klein6e744122016-10-27 12:21:40 -04001025 import("gn/samples.gni")
Brian Osman16adfa32016-10-18 14:42:44 -04001026 test_lib("samples") {
Brian Osman16adfa32016-10-18 14:42:44 -04001027 public_include_dirs = [ "samplecode" ]
Mike Klein6e744122016-10-27 12:21:40 -04001028 include_dirs = [ "experimental" ]
1029 sources = samples_sources + [
1030 "experimental/SkPerlinNoiseShader2/SkPerlinNoiseShader2.cpp",
1031 "experimental/SkSetPoly3To3.cpp",
1032 "experimental/SkSetPoly3To3_A.cpp",
1033 "experimental/SkSetPoly3To3_D.cpp",
1034 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001035 deps = [
1036 ":experimental_svg_model",
Mike Klein6e744122016-10-27 12:21:40 -04001037 ":gm",
Brian Osman16adfa32016-10-18 14:42:44 -04001038 ":tool_utils",
1039 ":views",
1040 ":xml",
1041 ]
Mike Klein38af9432016-11-11 11:39:44 -05001042
1043 if (skia_use_lua) {
1044 sources += [ "samplecode/SampleLua.cpp" ]
1045 deps += [
1046 ":lua",
1047 "//third_party/lua",
1048 ]
1049 }
Brian Osman16adfa32016-10-18 14:42:44 -04001050 }
1051
mtklein2b6870c2016-07-28 14:17:33 -07001052 executable("dm") {
1053 sources = [
1054 "dm/DM.cpp",
1055 "dm/DMJsonWriter.cpp",
1056 "dm/DMSrcSink.cpp",
mtklein2b6870c2016-07-28 14:17:33 -07001057 ]
1058 include_dirs = [ "tests" ]
1059 deps = [
mtklein046cb562016-09-16 10:23:12 -07001060 ":common_flags",
fmalitaa2b9fdf2016-08-03 19:53:36 -07001061 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001062 ":flags",
1063 ":gm",
1064 ":gpu_tool_utils",
1065 ":skia",
mtklein2f3416d2016-08-02 16:02:05 -07001066 ":tests",
mtklein2b6870c2016-07-28 14:17:33 -07001067 ":tool_utils",
1068 "//third_party/jsoncpp",
1069 "//third_party/libpng",
1070 ]
1071 testonly = true
1072 }
1073
Mike Kleina3430172016-09-27 16:46:29 -04001074 if (!is_debug) { # I've benchmarked debug code once too many times...
1075 executable("monobench") {
1076 sources = [
1077 "tools/monobench.cpp",
1078 ]
1079 deps = [
1080 ":bench",
1081 ":skia",
1082 ]
1083 testonly = true
1084 }
mtklein2b6870c2016-07-28 14:17:33 -07001085 }
1086
1087 executable("nanobench") {
1088 sources = [
1089 "bench/nanobench.cpp",
1090 ]
1091 deps = [
1092 ":bench",
mtklein046cb562016-09-16 10:23:12 -07001093 ":common_flags",
fmalita6519c212016-09-14 08:05:17 -07001094 ":experimental_svg_model",
mtklein2b6870c2016-07-28 14:17:33 -07001095 ":flags",
1096 ":gm",
1097 ":gpu_tool_utils",
1098 ":skia",
1099 ":tool_utils",
1100 "//third_party/jsoncpp",
1101 ]
1102 testonly = true
1103 }
halcanary19a97202016-08-03 15:08:04 -07001104
Jim Van Verth57a98fc2016-10-28 13:35:50 -04001105 if (is_linux || is_win || is_mac) {
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001106 executable("SampleApp") {
mtklein38925aa2016-09-21 10:11:25 -07001107 sources = [
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001108 "samplecode/SampleApp.cpp",
1109 "samplecode/SamplePictFile.cpp",
mtklein38925aa2016-09-21 10:11:25 -07001110 ]
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001111 if (is_mac) {
1112 sources += [ "src/views/mac/skia_mac.mm" ]
1113 } else if (is_win) {
1114 sources += [ "src/views/win/skia_win.cpp" ]
1115 } else if (is_linux) {
1116 sources += [ "src/views/unix/skia_unix.cpp" ]
1117 }
mtklein38925aa2016-09-21 10:11:25 -07001118 deps = [
1119 ":flags",
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001120 ":gm",
mtklein38925aa2016-09-21 10:11:25 -07001121 ":gpu_tool_utils",
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001122 ":samples",
mtklein38925aa2016-09-21 10:11:25 -07001123 ":skia",
1124 ":tool_utils",
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001125 ":views",
mtklein38925aa2016-09-21 10:11:25 -07001126 ]
Mike Kleinc168a3a2016-11-14 14:53:13 +00001127 if (skia_use_angle) {
1128 deps += [ "//third_party/angle2" ]
1129 }
mtklein38925aa2016-09-21 10:11:25 -07001130 testonly = true
1131 }
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001132 }
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001133
Jim Van Verth8f5468f2016-10-31 09:52:33 -04001134 if (skia_enable_gpu) {
1135 executable("skpbench") {
1136 sources = [
1137 "tools/skpbench/skpbench.cpp",
1138 ]
1139 deps = [
1140 ":flags",
1141 ":gpu_tool_utils",
1142 ":skia",
1143 ":tool_utils",
1144 ]
1145 testonly = true
Jim Van Verthb6c5e532016-10-28 10:38:08 -04001146 }
csmartdalton4b5179b2016-09-19 11:03:58 -07001147 }
1148
Mike Klein7d302882016-11-03 14:06:31 -04001149 # We can't yet build ICU on iOS or Windows.
1150 if (!is_ios && !is_win) {
halcanary3eee9d92016-09-10 07:01:53 -07001151 executable("sktexttopdf-hb") {
mtklein6f5df6a2016-08-29 16:01:10 -07001152 sources = [
1153 "tools/SkShaper_harfbuzz.cpp",
1154 "tools/using_skia_and_harfbuzz.cpp",
1155 ]
1156 deps = [
1157 ":skia",
1158 "//third_party/harfbuzz",
1159 ]
1160 testonly = true
1161 }
halcanary19a97202016-08-03 15:08:04 -07001162 }
halcanary3eee9d92016-09-10 07:01:53 -07001163 executable("sktexttopdf") {
1164 sources = [
1165 "tools/SkShaper_primitive.cpp",
1166 "tools/using_skia_and_harfbuzz.cpp",
1167 ]
1168 deps = [
1169 ":skia",
1170 ]
1171 testonly = true
1172 }
mtklein046cb562016-09-16 10:23:12 -07001173
1174 executable("get_images_from_skps") {
1175 sources = [
1176 "tools/get_images_from_skps.cpp",
1177 ]
1178 deps = [
1179 ":flags",
1180 ":skia",
1181 "//third_party/jsoncpp",
1182 ]
1183 testonly = true
1184 }
mtkleinecbc5262016-09-22 11:51:24 -07001185
Matt Sarett8740d582016-11-11 13:59:14 -05001186 executable("colorspaceinfo") {
1187 sources = [
1188 "tools/colorspaceinfo.cpp",
1189 ]
1190 deps = [
1191 ":flags",
1192 ":skia",
1193 ":tool_utils",
1194 ]
1195 testonly = true
1196 }
1197
Mike Klein7d302882016-11-03 14:06:31 -04001198 if (!is_ios) {
1199 executable("skiaserve") {
1200 sources = [
1201 "tools/skiaserve/Request.cpp",
1202 "tools/skiaserve/Response.cpp",
1203 "tools/skiaserve/skiaserve.cpp",
1204 "tools/skiaserve/urlhandlers/BatchBoundsHandler.cpp",
1205 "tools/skiaserve/urlhandlers/BatchesHandler.cpp",
1206 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1207 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1208 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1209 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1210 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1211 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1212 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1213 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1214 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
1215 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1216 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1217 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1218 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1219 ]
1220 deps = [
1221 ":flags",
1222 ":gpu_tool_utils",
1223 ":skia",
1224 ":tool_utils",
1225 "//third_party/jsoncpp",
1226 "//third_party/libmicrohttpd",
1227 "//third_party/libpng",
1228 ]
1229 testonly = true
1230 }
mtkleinecbc5262016-09-22 11:51:24 -07001231 }
kjlubick14f984b2016-10-03 11:49:45 -07001232
1233 executable("fuzz") {
1234 sources = [
1235 "fuzz/FilterFuzz.cpp",
1236 "fuzz/FuzzGradients.cpp",
1237 "fuzz/FuzzParsePath.cpp",
1238 "fuzz/FuzzPathop.cpp",
1239 "fuzz/FuzzScaleToSides.cpp",
1240 "fuzz/fuzz.cpp",
1241 ]
1242 deps = [
1243 ":flags",
1244 ":skia",
1245 ]
1246 testonly = true
1247 }
Mike Klein38312422016-10-05 15:41:01 -04001248
caryclark9feb6322016-10-25 08:58:26 -07001249 executable("pathops_unittest") {
Mike Klein6e744122016-10-27 12:21:40 -04001250 sources = pathops_tests_sources + [
Mike Klein6e55fef2016-10-26 11:41:47 -04001251 rebase_path("tests/skia_test.cpp"),
1252 rebase_path("tests/Test.cpp"),
1253 ]
caryclark9feb6322016-10-25 08:58:26 -07001254 deps = [
1255 ":flags",
1256 ":gpu_tool_utils",
1257 ":skia",
1258 ":tool_utils",
1259 ]
1260 testonly = true
1261 }
1262
Mike Klein38312422016-10-05 15:41:01 -04001263 executable("dump_record") {
1264 sources = [
1265 "tools/DumpRecord.cpp",
1266 "tools/dump_record.cpp",
1267 ]
1268 deps = [
1269 ":flags",
1270 ":skia",
1271 ]
1272 testonly = true
1273 }
bungemanfe917272016-10-13 17:36:40 -04001274
1275 executable("skdiff") {
1276 sources = [
1277 "tools/skdiff/skdiff.cpp",
1278 "tools/skdiff/skdiff_html.cpp",
1279 "tools/skdiff/skdiff_main.cpp",
1280 "tools/skdiff/skdiff_utils.cpp",
1281 ]
1282 deps = [
1283 ":skia",
1284 ":tool_utils",
1285 ]
1286 testonly = true
1287 }
halcanarya73d76a2016-10-17 13:19:02 -07001288
1289 executable("skp_parser") {
1290 sources = [
1291 "tools/skp_parser.cpp",
1292 ]
1293 deps = [
1294 ":skia",
1295 ":tool_utils",
1296 "//third_party/jsoncpp",
1297 ]
1298 testonly = true
1299 }
Brian Osman16adfa32016-10-18 14:42:44 -04001300
Mike Klein43c25262016-10-20 10:17:47 -04001301 if (skia_enable_gpu && (is_linux || is_win || is_mac)) {
Brian Osman16adfa32016-10-18 14:42:44 -04001302 executable("viewer") {
1303 sources = [
1304 "tools/viewer/GMSlide.cpp",
1305 "tools/viewer/ImageSlide.cpp",
1306 "tools/viewer/SKPSlide.cpp",
1307 "tools/viewer/SampleSlide.cpp",
1308 "tools/viewer/Viewer.cpp",
1309 "tools/viewer/sk_app/CommandSet.cpp",
1310 "tools/viewer/sk_app/GLWindowContext.cpp",
1311 "tools/viewer/sk_app/Window.cpp",
1312 "tools/viewer/sk_app/WindowContext.cpp",
1313 ]
Brian Osman2dd96932016-10-18 15:33:53 -04001314 libs = []
Brian Osman16adfa32016-10-18 14:42:44 -04001315
Jim Van Verth4e56a912016-10-21 10:58:52 -04001316 if (is_android) {
1317 sources += [
1318 "tools/viewer/sk_app/android/GLWindowContext_android.cpp",
1319 "tools/viewer/sk_app/android/RasterWindowContext_android.cpp",
1320 "tools/viewer/sk_app/android/Window_android.cpp",
1321 "tools/viewer/sk_app/android/main_android.cpp",
1322 "tools/viewer/sk_app/android/surface_glue_android.cpp",
1323 ]
1324 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001325 sources += [
1326 "tools/viewer/sk_app/unix/GLWindowContext_unix.cpp",
1327 "tools/viewer/sk_app/unix/RasterWindowContext_unix.cpp",
1328 "tools/viewer/sk_app/unix/Window_unix.cpp",
1329 "tools/viewer/sk_app/unix/main_unix.cpp",
1330 ]
1331 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001332 sources += [
1333 "tools/viewer/sk_app/win/GLWindowContext_win.cpp",
1334 "tools/viewer/sk_app/win/RasterWindowContext_win.cpp",
1335 "tools/viewer/sk_app/win/Window_win.cpp",
1336 "tools/viewer/sk_app/win/main_win.cpp",
1337 ]
Mike Klein43c25262016-10-20 10:17:47 -04001338 } else if (is_mac) {
1339 sources += [
1340 "tools/viewer/sk_app/mac/GLWindowContext_mac.cpp",
1341 "tools/viewer/sk_app/mac/RasterWindowContext_mac.cpp",
1342 "tools/viewer/sk_app/mac/Window_mac.cpp",
1343 "tools/viewer/sk_app/mac/main_mac.cpp",
1344 ]
Brian Osman16adfa32016-10-18 14:42:44 -04001345 }
1346
1347 if (skia_use_vulkan) {
1348 sources += [ "tools/viewer/sk_app/VulkanWindowContext.cpp" ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001349 if (is_android) {
1350 sources +=
1351 [ "tools/viewer/sk_app/android/VulkanWindowContext_android.cpp" ]
1352 libs += [ "android" ]
1353 } else if (is_linux) {
Brian Osman2dd96932016-10-18 15:33:53 -04001354 sources += [ "tools/viewer/sk_app/unix/VulkanWindowContext_unix.cpp" ]
1355 libs += [ "X11-xcb" ]
1356 } else if (is_win) {
Brian Osman16adfa32016-10-18 14:42:44 -04001357 sources += [ "tools/viewer/sk_app/win/VulkanWindowContext_win.cpp" ]
1358 }
1359 }
1360
1361 include_dirs = []
1362 deps = [
1363 ":flags",
1364 ":gm",
1365 ":gpu_tool_utils",
1366 ":samples",
1367 ":skia",
1368 ":tool_utils",
1369 ":views",
1370 "//third_party/jsoncpp",
1371 ]
Jim Van Verth4e56a912016-10-21 10:58:52 -04001372 if (is_android) {
1373 deps += [ "//third_party/native_app_glue" ]
1374 } else if (is_mac) {
Mike Klein43c25262016-10-20 10:17:47 -04001375 deps += [ "//third_party/libsdl" ]
1376 }
Brian Osman16adfa32016-10-18 14:42:44 -04001377 testonly = true
1378 }
1379 }
Ethan Nicholas4f3985c2016-11-14 11:16:37 -05001380
1381 if (skia_enable_gpu) {
1382 executable("skslc") {
1383 sources = [
1384 "src/sksl/SkSLMain.cpp",
1385 ]
1386 deps = [
1387 ":flags",
1388 ":skia",
1389 ]
1390 testonly = true
1391 }
1392 }
mtklein25c81d42016-07-27 13:55:26 -07001393}