1 # Copyright 2016 Google Inc.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
6 import("gn/android_framework_defines.gni")
7 import("gn/shared_sources.gni")
10 import("//build/vulkan/config.gni")
13 if (!defined(is_skia_standalone)) {
14 is_skia_standalone = false
16 is_skia_dev_build = is_skia_standalone && !is_official_build
19 skia_use_angle = false
22 skia_use_fontconfig = is_linux
23 skia_use_freetype = is_android || is_fuchsia || is_linux
25 skia_use_icu = !is_fuchsia && !is_ios && !is_win # TODO: Windows
26 skia_use_libjpeg_turbo = true
27 skia_use_libpng = true
28 skia_use_libwebp = !is_fuchsia
31 skia_use_piex = !is_win
34 skia_android_serial = ""
35 skia_enable_android_framework_defines = false
36 skia_enable_discrete_gpu = true
37 skia_enable_effects = true
38 skia_enable_gpu = true
39 skia_enable_pdf = true
40 skia_enable_spirv_validation = is_skia_dev_build && is_debug
41 skia_enable_tools = is_skia_dev_build
42 skia_enable_vulkan_debug_layers = is_skia_dev_build && is_debug
43 skia_vulkan_sdk = getenv("VULKAN_SDK")
46 skia_use_dng_sdk = !is_fuchsia && skia_use_libjpeg_turbo && skia_use_zlib
47 skia_use_sfntly = skia_use_icu
50 skia_use_vulkan = defined(ndk_api) && ndk_api >= 24
51 } else if (is_fuchsia) {
52 skia_use_vulkan = fuchsia_use_vulkan
54 skia_use_vulkan = skia_vulkan_sdk != ""
58 if (skia_use_vulkan) {
60 skia_vulkan_headers = "$fuchsia_vulkan_sdk/include"
61 } else if (is_linux || is_win) {
62 skia_vulkan_headers = "$skia_vulkan_sdk/include"
64 # When buliding on Android we get the header via the NDK
65 skia_vulkan_headers = ""
68 skia_vulkan_headers = "third_party/vulkan"
72 # Our tools require static linking (they use non-exported symbols).
73 skia_enable_tools = skia_enable_tools && !is_component_build
75 fontmgr_android_enabled = skia_use_expat && skia_use_freetype
77 skia_public_includes = [
94 # Skia public API, generally provided by :skia.
95 config("skia_public") {
96 include_dirs = skia_public_includes
97 if (skia_vulkan_headers != "") {
98 include_dirs += [ skia_vulkan_headers ]
101 if (is_component_build) {
102 defines += [ "SKIA_DLL" ]
104 if (is_fuchsia || is_linux) {
105 defines += [ "SK_SAMPLES_FOR_X" ]
107 if (skia_enable_android_framework_defines) {
108 defines += android_framework_defines
110 if (!skia_enable_gpu) {
111 defines += [ "SK_SUPPORT_GPU=0" ]
115 # Skia internal APIs, used by Skia itself and a few test tools.
116 config("skia_private") {
117 visibility = [ ":*" ]
125 "src/effects/gradients",
142 defines = [ "SK_GAMMA_APPLY_TO_A8" ]
145 "SK_GAMMA_EXPONENT=1.4",
146 "SK_GAMMA_CONTRAST=0.0",
149 if (is_official_build || is_android) {
150 # TODO(bsalomon): it'd be nice to make Android normal.
151 defines += [ "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0" ]
155 if (skia_use_vulkan) {
156 if (skia_vulkan_sdk != "" && !is_android && !is_fuchsia) {
159 "$skia_vulkan_sdk/Bin",
160 "$skia_vulkan_sdk/Lib",
163 lib_dirs += [ "$skia_vulkan_sdk/lib/" ]
167 if (skia_enable_gpu) {
168 include_dirs += [ "src/gpu" ]
170 if (skia_use_angle) {
171 defines += [ "SK_ANGLE" ]
173 if (skia_enable_discrete_gpu) {
174 defines += [ "SK_ENABLE_DISCRETE_GPU" ]
178 # Any code that's linked into Skia-the-library should use this config via += skia_library_configs.
179 config("skia_library") {
180 visibility = [ ":*" ]
181 defines = [ "SKIA_IMPLEMENTATION=1" ]
184 skia_library_configs = [
190 # Use for CPU-specific Skia code that needs particular compiler flags.
192 if (invoker.enabled) {
193 source_set(target_name) {
194 forward_variables_from(invoker, "*")
195 configs += skia_library_configs
198 # If not enabled, a phony empty target that swallows all otherwise unused variables.
199 source_set(target_name) {
200 forward_variables_from(invoker,
210 is_x86 = current_cpu == "x64" || current_cpu == "x86"
213 enabled = !is_x86 && current_cpu != "arm" && current_cpu != "arm64"
214 sources = skia_opts.none_sources
219 enabled = current_cpu == "arm"
220 sources = skia_opts.armv7_sources + skia_opts.neon_sources
225 enabled = current_cpu == "arm64"
226 sources = skia_opts.arm64_sources
231 enabled = current_cpu == "arm64"
232 sources = skia_opts.crc32_sources
233 cflags = [ "-march=armv8-a+crc" ]
238 sources = skia_opts.sse2_sources
240 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE2" ]
242 cflags = [ "-msse2" ]
248 sources = skia_opts.ssse3_sources
250 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSSE3" ]
252 cflags = [ "-mssse3" ]
258 sources = skia_opts.sse41_sources
260 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE41" ]
262 cflags = [ "-msse4.1" ]
268 sources = skia_opts.sse42_sources
270 defines = [ "SK_CPU_SSE_LEVEL=SK_CPU_SSE_LEVEL_SSE42" ]
272 cflags = [ "-msse4.2" ]
278 sources = skia_opts.avx_sources
280 cflags = [ "/arch:AVX" ]
288 sources = skia_opts.hsw_sources
290 cflags = [ "/arch:AVX2" ]
302 # Any feature of Skia that requires third-party code should be optional and use this template.
303 template("optional") {
304 if (invoker.enabled) {
305 config(target_name + "_public") {
306 if (defined(invoker.public_defines)) {
307 defines = invoker.public_defines
310 source_set(target_name) {
311 forward_variables_from(invoker,
315 "sources_when_disabled",
318 all_dependent_configs = [ ":" + target_name + "_public" ]
319 configs += skia_library_configs
320 if (defined(invoker.configs_to_remove)) {
321 configs -= invoker.configs_to_remove
325 source_set(target_name) {
326 forward_variables_from(invoker,
333 "sources_when_disabled",
336 if (defined(invoker.sources_when_disabled)) {
337 sources = invoker.sources_when_disabled
339 configs += skia_library_configs
344 optional("effects") {
345 enabled = skia_enable_effects
347 skia_effects_sources + [ "src/ports/SkGlobalInitialization_default.cpp" ]
348 sources_when_disabled = [ "src/ports/SkGlobalInitialization_none.cpp" ]
351 optional("fontmgr_android") {
352 enabled = fontmgr_android_enabled
355 ":typeface_freetype",
356 "//third_party/expat",
359 "src/ports/SkFontMgr_android.cpp",
360 "src/ports/SkFontMgr_android_factory.cpp",
361 "src/ports/SkFontMgr_android_parser.cpp",
365 optional("fontmgr_custom") {
366 enabled = is_linux && skia_use_freetype && !skia_use_fontconfig
369 ":typeface_freetype",
372 "src/ports/SkFontMgr_custom.cpp",
373 "src/ports/SkFontMgr_custom.h",
374 "src/ports/SkFontMgr_custom_directory.cpp",
375 "src/ports/SkFontMgr_custom_directory_factory.cpp",
376 "src/ports/SkFontMgr_custom_embedded.cpp",
377 "src/ports/SkFontMgr_custom_empty.cpp",
381 optional("fontmgr_fontconfig") {
382 enabled = skia_use_freetype && skia_use_fontconfig
385 ":typeface_freetype",
386 "//third_party:fontconfig",
389 "src/ports/SkFontConfigInterface.cpp",
390 "src/ports/SkFontConfigInterface_direct.cpp",
391 "src/ports/SkFontConfigInterface_direct_factory.cpp",
392 "src/ports/SkFontMgr_FontConfigInterface.cpp",
393 "src/ports/SkFontMgr_fontconfig.cpp",
394 "src/ports/SkFontMgr_fontconfig_factory.cpp",
398 optional("fontmgr_fuchsia") {
399 enabled = is_fuchsia && skia_use_freetype
402 ":typeface_freetype",
405 "src/ports/SkFontMgr_custom.cpp",
406 "src/ports/SkFontMgr_custom_empty.cpp",
407 "src/ports/SkFontMgr_custom_empty_factory.cpp",
412 enabled = skia_enable_gpu
415 sources = skia_gpu_sources + skia_sksl_sources +
416 [ "src/gpu/gl/GrGLDefaultInterface_native.cpp" ]
418 # These paths need to be absolute to match the ones produced by shared_sources.gni.
419 sources -= get_path_info([
420 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
421 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
426 sources += [ "src/gpu/gl/android/GrGLCreateNativeInterface_android.cpp" ]
427 } else if (skia_use_egl) {
428 sources += [ "src/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp" ]
430 } else if (is_linux) {
431 sources += [ "src/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp" ]
437 sources += [ "src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp" ]
439 sources += [ "src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp" ]
441 sources += [ "src/gpu/gl/win/GrGLCreateNativeInterface_win.cpp" ]
442 libs += [ "OpenGL32.lib" ]
444 sources += [ "src/gpu/gl/GrGLCreateNativeInterface_none.cpp" ]
447 if (skia_use_vulkan) {
448 public_defines += [ "SK_VULKAN" ]
449 sources += skia_vk_sources
450 if (skia_enable_vulkan_debug_layers) {
451 public_defines += [ "SK_ENABLE_VK_LAYERS" ]
454 if (skia_enable_spirv_validation) {
456 "//third_party/spirv-tools",
458 public_defines += [ "SK_ENABLE_SPIRV_VALIDATION" ]
463 enabled = skia_use_libjpeg_turbo
464 public_defines = [ "SK_HAS_JPEG_LIBRARY" ]
467 "//third_party/libjpeg-turbo:libjpeg",
470 "src/codec/SkJpegCodec.cpp",
471 "src/codec/SkJpegDecoderMgr.cpp",
472 "src/codec/SkJpegUtility.cpp",
473 "src/images/SkJPEGWriteUtility.cpp",
474 "src/images/SkJpegEncoder.cpp",
479 enabled = skia_use_zlib && skia_enable_pdf
480 public_defines = [ "SK_SUPPORT_PDF" ]
483 "//third_party/zlib",
485 sources = skia_pdf_sources
486 sources_when_disabled = [ "src/pdf/SkDocument_PDF_None.cpp" ]
488 if (skia_use_sfntly) {
489 deps += [ "//third_party/sfntly" ]
490 public_defines += [ "SK_PDF_USE_SFNTLY" ]
495 enabled = skia_use_libpng
496 public_defines = [ "SK_HAS_PNG_LIBRARY" ]
499 "//third_party/libpng",
502 "src/codec/SkIcoCodec.cpp",
503 "src/codec/SkPngCodec.cpp",
504 "src/images/SkPngEncoder.cpp",
509 enabled = skia_use_dng_sdk && skia_use_libjpeg_turbo && skia_use_piex
510 public_defines = [ "SK_CODEC_DECODES_RAW" ]
513 "//third_party/dng_sdk",
514 "//third_party/libjpeg-turbo:libjpeg",
515 "//third_party/piex",
518 # SkRawCodec catches any exceptions thrown by dng_sdk, insulating the rest of
520 configs_to_remove = [ "//gn:no_exceptions" ]
523 "src/codec/SkRawAdapterCodec.cpp",
524 "src/codec/SkRawCodec.cpp",
528 optional("typeface_freetype") {
529 enabled = skia_use_freetype
532 "//third_party/freetype2",
535 "src/ports/SkFontHost_FreeType.cpp",
536 "src/ports/SkFontHost_FreeType_common.cpp",
541 enabled = skia_use_libwebp
542 public_defines = [ "SK_HAS_WEBP_LIBRARY" ]
545 "//third_party/libwebp",
548 "src/codec/SkWebpAdapterCodec.cpp",
549 "src/codec/SkWebpCodec.cpp",
550 "src/images/SkWebpEncoder.cpp",
555 enabled = skia_use_expat
556 public_defines = [ "SK_XML" ]
559 "//third_party/expat",
562 "src/svg/SkSVGCanvas.cpp",
563 "src/svg/SkSVGDevice.cpp",
565 "src/xml/SkXMLParser.cpp",
566 "src/xml/SkXMLWriter.cpp",
571 public_configs = [ ":skia_public" ]
572 configs += skia_library_configs
582 ":fontmgr_fontconfig",
599 # This file (and all GN files in Skia) are designed to work with an
600 # empty sources assignment filter; we handle all that explicitly.
601 # We clear the filter here for clients who may have set up a global filter.
602 set_sources_assignment_filter([])
605 sources += skia_core_sources
606 sources += skia_utils_sources
607 sources += skia_xps_sources
609 "src/android/SkBitmapRegionCodec.cpp",
610 "src/android/SkBitmapRegionDecoder.cpp",
611 "src/codec/SkAndroidCodec.cpp",
612 "src/codec/SkBmpCodec.cpp",
613 "src/codec/SkBmpMaskCodec.cpp",
614 "src/codec/SkBmpRLECodec.cpp",
615 "src/codec/SkBmpStandardCodec.cpp",
616 "src/codec/SkCodec.cpp",
617 "src/codec/SkCodecImageGenerator.cpp",
618 "src/codec/SkGifCodec.cpp",
619 "src/codec/SkMaskSwizzler.cpp",
620 "src/codec/SkMasks.cpp",
621 "src/codec/SkSampledCodec.cpp",
622 "src/codec/SkSampler.cpp",
623 "src/codec/SkStreamBuffer.cpp",
624 "src/codec/SkSwizzler.cpp",
625 "src/codec/SkWbmpCodec.cpp",
626 "src/images/SkImageEncoder.cpp",
627 "src/ports/SkDiscardableMemory_none.cpp",
628 "src/ports/SkImageGenerator_skia.cpp",
629 "src/ports/SkMemory_malloc.cpp",
630 "src/ports/SkOSFile_stdio.cpp",
631 "src/sfnt/SkOTTable_name.cpp",
632 "src/sfnt/SkOTUtils.cpp",
633 "src/utils/mac/SkStream_mac.cpp",
634 "third_party/gif/SkGifImageReader.cpp",
641 "src/fonts/SkFontMgr_indirect.cpp",
642 "src/ports/SkDebug_win.cpp",
643 "src/ports/SkFontHost_win.cpp",
644 "src/ports/SkFontMgr_win_dw.cpp",
645 "src/ports/SkImageEncoder_WIC.cpp",
646 "src/ports/SkImageGeneratorWIC.cpp",
647 "src/ports/SkOSFile_win.cpp",
648 "src/ports/SkOSLibrary_win.cpp",
649 "src/ports/SkScalerContext_win_dw.cpp",
650 "src/ports/SkTLS_win.cpp",
651 "src/ports/SkTypeface_win_dw.cpp",
654 sources += [ "src/ports/SkFontMgr_win_gdi_factory.cpp" ]
660 sources += [ "src/ports/SkFontMgr_win_dw_factory.cpp" ]
663 [ get_path_info("src/utils/SkThreadUtils_pthread.cpp", "abspath") ]
672 "src/ports/SkOSFile_posix.cpp",
673 "src/ports/SkOSLibrary_posix.cpp",
674 "src/ports/SkTLS_pthread.cpp",
679 deps += [ "//third_party/expat" ]
680 if (defined(ndk) && ndk != "") {
681 deps += [ "//third_party/cpu-features" ]
683 sources += [ "src/ports/SkDebug_android.cpp" ]
692 sources += [ "src/ports/SkDebug_stdio.cpp" ]
697 "src/ports/SkDebug_stdio.cpp",
698 "src/ports/SkFontHost_mac.cpp",
699 "src/ports/SkImageEncoder_CG.cpp",
700 "src/ports/SkImageGeneratorCG.cpp",
703 # AppKit symbols NSFontWeightXXX may be dlsym'ed.
705 "ApplicationServices.framework",
712 "src/ports/SkDebug_stdio.cpp",
713 "src/ports/SkFontHost_mac.cpp",
714 "src/ports/SkImageEncoder_CG.cpp",
715 "src/ports/SkImageGeneratorCG.cpp",
718 "CoreFoundation.framework",
719 "CoreGraphics.framework",
720 "CoreText.framework",
722 "MobileCoreServices.framework",
724 # UIKit symbols UIFontWeightXXX may be dlsym'ed.
730 sources += [ "src/ports/SkDebug_stdio.cpp" ]
734 # Targets guarded by skia_enable_tools may use //third_party freely.
735 if (skia_enable_tools) {
736 # Used by gn_to_bp.py to list our public include dirs.
737 source_set("public") {
738 configs += [ ":skia_public" ]
741 config("skia.h_config") {
742 include_dirs = [ "$target_gen_dir" ]
745 public_configs = [ ":skia.h_config" ]
746 skia_h = "$target_gen_dir/skia.h"
747 script = "gn/find_headers.py"
748 args = [ rebase_path(skia_h, root_build_dir) ] +
749 rebase_path(skia_public_includes) +
750 [ rebase_path("third_party/vulkan") ]
751 depfile = "$skia_h.deps"
757 if (skia_enable_gpu && target_cpu == "x64") {
758 # Our bots only have 64-bit libOSMesa installed.
759 # TODO: worth fixing?
760 executable("fiddle") {
767 "tools/fiddle/draw.cpp",
768 "tools/fiddle/fiddle_main.cpp",
779 if (skia_enable_gpu) {
780 source_set("public_headers_warnings_check") {
782 "tools/public_headers_warnings_check.cpp",
784 configs -= [ "//gn:warnings_except_public_headers" ]
792 template("test_lib") {
793 config(target_name + "_config") {
794 include_dirs = invoker.public_include_dirs
795 if (defined(invoker.public_defines)) {
796 defines = invoker.public_defines
799 source_set(target_name) {
800 forward_variables_from(invoker, "*", [ "public_include_dirs" ])
802 ":" + target_name + "_config",
806 if (!defined(deps)) {
814 template("test_app") {
815 if (defined(invoker.is_shared_library) && invoker.is_shared_library) {
816 shared_library("lib" + target_name) {
817 forward_variables_from(invoker, "*", [ "is_shared_library" ])
821 _executable = target_name
822 executable(_executable) {
823 forward_variables_from(invoker, "*", [ "is_shared_library" ])
827 if (is_android && skia_android_serial != "" && defined(_executable)) {
828 action("push_" + target_name) {
829 script = "gn/push_to_android.py"
833 _stamp = "$target_gen_dir/$_executable.pushed_$skia_android_serial"
838 rebase_path("$root_build_dir/$_executable"),
847 test_lib("gpu_tool_utils") {
848 public_include_dirs = []
849 if (skia_enable_gpu) {
851 public_include_dirs += [ "tools/gpu" ]
855 "tools/gpu/GrContextFactory.cpp",
856 "tools/gpu/GrTest.cpp",
857 "tools/gpu/TestContext.cpp",
858 "tools/gpu/gl/GLTestContext.cpp",
859 "tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp",
860 "tools/gpu/gl/debug/DebugGLTestContext.cpp",
861 "tools/gpu/gl/debug/GrBufferObj.cpp",
862 "tools/gpu/gl/debug/GrFrameBufferObj.cpp",
863 "tools/gpu/gl/debug/GrProgramObj.cpp",
864 "tools/gpu/gl/debug/GrShaderObj.cpp",
865 "tools/gpu/gl/debug/GrTextureObj.cpp",
866 "tools/gpu/gl/debug/GrTextureUnitObj.cpp",
867 "tools/gpu/gl/null/NullGLTestContext.cpp",
871 if (is_android || skia_use_egl) {
872 sources += [ "tools/gpu/gl/egl/CreatePlatformGLTestContext_egl.cpp" ]
874 sources += [ "tools/gpu/gl/iOS/CreatePlatformGLTestContext_iOS.mm" ]
875 libs += [ "OpenGLES.framework" ]
876 } else if (is_linux) {
877 sources += [ "tools/gpu/gl/glx/CreatePlatformGLTestContext_glx.cpp" ]
880 sources += [ "tools/gpu/gl/mac/CreatePlatformGLTestContext_mac.cpp" ]
882 sources += [ "tools/gpu/gl/win/CreatePlatformGLTestContext_win.cpp" ]
889 if (skia_use_angle) {
890 deps += [ "//third_party/angle2" ]
891 sources += [ "tools/gpu/gl/angle/GLTestContext_angle.cpp" ]
894 public_defines += [ "SK_MESA" ]
895 sources += [ "tools/gpu/gl/mesa/GLTestContext_mesa.cpp" ]
898 if (skia_use_vulkan) {
899 sources += [ "tools/gpu/vk/VkTestContext.cpp" ]
901 libs += [ "vulkan-1.lib" ]
910 public_include_dirs = [ "tools/flags" ]
912 "tools/flags/SkCommandLineFlags.cpp",
915 test_lib("common_flags") {
916 public_include_dirs = [ "tools/flags" ]
918 "tools/flags/SkCommonFlags.cpp",
919 "tools/flags/SkCommonFlagsConfig.cpp",
927 test_lib("tool_utils") {
928 public_include_dirs = [
934 "tools/AndroidSkDebugToStdOut.cpp",
935 "tools/CrashHandler.cpp",
936 "tools/LsanSuppressions.cpp",
937 "tools/ProcStats.cpp",
938 "tools/Resources.cpp",
939 "tools/ThermalManager.cpp",
940 "tools/UrlDataManager.cpp",
941 "tools/debugger/SkDebugCanvas.cpp",
942 "tools/debugger/SkDrawCommand.cpp",
943 "tools/debugger/SkJsonWriteBuffer.cpp",
944 "tools/debugger/SkObjectParser.cpp",
945 "tools/picture_utils.cpp",
946 "tools/random_parse_path.cpp",
947 "tools/sk_tool_utils.cpp",
948 "tools/sk_tool_utils_font.cpp",
949 "tools/timer/Timer.cpp",
953 sources += [ "tools/ios_utils.m" ]
954 libs += [ "Foundation.framework" ]
959 "//third_party/libpng",
962 "//third_party/jsoncpp",
968 public_include_dirs = [ "gm" ]
978 import("gn/tests.gni")
980 public_include_dirs = [ "tests" ]
981 sources = tests_sources + pathops_tests_sources
982 if (!fontmgr_android_enabled) {
983 sources -= [ "//tests/FontMgrAndroidParserTest.cpp" ]
986 ":experimental_svg_model",
990 "//third_party/libpng",
991 "//third_party/zlib",
994 ":gpu_tool_utils", # Test.h #includes headers from this target.
998 import("gn/bench.gni")
1000 public_include_dirs = [ "bench" ]
1001 sources = bench_sources
1011 test_lib("experimental_svg_model") {
1012 public_include_dirs = [ "experimental/svg/model" ]
1014 "experimental/svg/model/SkSVGAttribute.cpp",
1015 "experimental/svg/model/SkSVGAttributeParser.cpp",
1016 "experimental/svg/model/SkSVGCircle.cpp",
1017 "experimental/svg/model/SkSVGClipPath.cpp",
1018 "experimental/svg/model/SkSVGContainer.cpp",
1019 "experimental/svg/model/SkSVGDOM.cpp",
1020 "experimental/svg/model/SkSVGEllipse.cpp",
1021 "experimental/svg/model/SkSVGLine.cpp",
1022 "experimental/svg/model/SkSVGLinearGradient.cpp",
1023 "experimental/svg/model/SkSVGNode.cpp",
1024 "experimental/svg/model/SkSVGPath.cpp",
1025 "experimental/svg/model/SkSVGPoly.cpp",
1026 "experimental/svg/model/SkSVGRect.cpp",
1027 "experimental/svg/model/SkSVGRenderContext.cpp",
1028 "experimental/svg/model/SkSVGSVG.cpp",
1029 "experimental/svg/model/SkSVGShape.cpp",
1030 "experimental/svg/model/SkSVGStop.cpp",
1031 "experimental/svg/model/SkSVGTransformableNode.cpp",
1032 "experimental/svg/model/SkSVGValue.cpp",
1040 public_include_dirs = [ "include/views" ]
1042 "src/views/SkEvent.cpp",
1043 "src/views/SkEventSink.cpp",
1044 "src/views/SkOSMenu.cpp",
1045 "src/views/SkTagList.cpp",
1046 "src/views/SkTouchGesture.cpp",
1047 "src/views/SkView.cpp",
1048 "src/views/SkViewPriv.cpp",
1053 sources += [ "src/views/SkWindow.cpp" ]
1056 public_include_dirs += [ "src/views/unix" ]
1058 "src/views/unix/SkOSWindow_Unix.cpp",
1059 "src/views/unix/keysym2ucs.c",
1065 } else if (is_mac) {
1067 "src/views/mac/SkEventNotifier.mm",
1068 "src/views/mac/SkNSView.mm",
1069 "src/views/mac/SkOSWindow_Mac.mm",
1070 "src/views/mac/SkTextFieldCell.m",
1073 "QuartzCore.framework",
1075 "Foundation.framework",
1077 } else if (is_win) {
1078 sources += [ "src/views/win/SkOSWindow_win.cpp" ]
1080 if (skia_use_angle) {
1081 deps += [ "//third_party/angle2" ]
1087 public_include_dirs = []
1089 "src/utils/SkLua.cpp",
1090 "src/utils/SkLuaCanvas.cpp",
1093 "//third_party/lua",
1097 test_app("lua_app") {
1099 "tools/lua/lua_app.cpp",
1104 "//third_party/lua",
1108 test_app("lua_pictures") {
1110 "tools/lua/lua_pictures.cpp",
1117 "//third_party/lua",
1122 import("gn/samples.gni")
1123 test_lib("samples") {
1124 public_include_dirs = [ "samplecode" ]
1125 include_dirs = [ "experimental" ]
1126 sources = samples_sources + [
1127 "experimental/SkPerlinNoiseShader2/SkPerlinNoiseShader2.cpp",
1128 "experimental/SkSetPoly3To3.cpp",
1129 "experimental/SkSetPoly3To3_A.cpp",
1130 "experimental/SkSetPoly3To3_D.cpp",
1133 ":experimental_svg_model",
1142 sources += [ "samplecode/SampleLua.cpp" ]
1145 "//third_party/lua",
1153 "dm/DMJsonWriter.cpp",
1156 include_dirs = [ "tests" ]
1159 ":experimental_svg_model",
1166 "//third_party/jsoncpp",
1167 "//third_party/libpng",
1174 "tools/ok_dsts.cpp",
1175 "tools/ok_srcs.cpp",
1176 "tools/ok_test.cpp",
1177 "tools/ok_vias.cpp",
1187 if (!is_debug) { # I've benchmarked debug code once too many times...
1188 test_app("monobench") {
1190 "tools/monobench.cpp",
1199 test_app("nanobench") {
1201 "bench/nanobench.cpp",
1206 ":experimental_svg_model",
1212 "//third_party/jsoncpp",
1216 test_app("skpinfo") {
1218 "tools/skpinfo.cpp",
1226 if (is_linux || is_win || is_mac) {
1227 test_app("SampleApp") {
1229 "samplecode/SampleApp.cpp",
1230 "samplecode/SamplePictFile.cpp",
1233 sources += [ "src/views/mac/skia_mac.mm" ]
1234 } else if (is_win) {
1235 sources += [ "src/views/win/skia_win.cpp" ]
1236 } else if (is_linux) {
1237 sources += [ "src/views/unix/skia_unix.cpp" ]
1248 if (skia_use_angle) {
1249 deps += [ "//third_party/angle2" ]
1254 if (skia_enable_gpu) {
1255 test_app("skpbench") {
1257 "tools/skpbench/skpbench.cpp",
1268 # We can't yet build ICU on iOS or Windows.
1269 if (!is_ios && !is_win) {
1270 test_app("sktexttopdf-hb") {
1272 "tools/SkShaper_harfbuzz.cpp",
1273 "tools/using_skia_and_harfbuzz.cpp",
1277 "//third_party/harfbuzz",
1281 test_app("sktexttopdf") {
1283 "tools/SkShaper_primitive.cpp",
1284 "tools/using_skia_and_harfbuzz.cpp",
1291 test_app("create_flutter_test_images") {
1293 "tools/create_flutter_test_images.cpp",
1301 test_app("get_images_from_skps") {
1303 "tools/get_images_from_skps.cpp",
1308 "//third_party/jsoncpp",
1312 test_app("colorspaceinfo") {
1314 "tools/colorspaceinfo.cpp",
1324 test_app("skiaserve") {
1326 "tools/skiaserve/Request.cpp",
1327 "tools/skiaserve/Response.cpp",
1328 "tools/skiaserve/skiaserve.cpp",
1329 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
1330 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
1331 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
1332 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
1333 "tools/skiaserve/urlhandlers/DataHandler.cpp",
1334 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
1335 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
1336 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
1337 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
1338 "tools/skiaserve/urlhandlers/OpBoundsHandler.cpp",
1339 "tools/skiaserve/urlhandlers/OpsHandler.cpp",
1340 "tools/skiaserve/urlhandlers/OverdrawHandler.cpp",
1341 "tools/skiaserve/urlhandlers/PostHandler.cpp",
1342 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
1343 "tools/skiaserve/urlhandlers/RootHandler.cpp",
1350 "//third_party/jsoncpp",
1351 "//third_party/libmicrohttpd",
1352 "//third_party/libpng",
1359 "fuzz/FilterFuzz.cpp",
1360 "fuzz/FuzzCanvas.cpp",
1361 "fuzz/FuzzDrawFunctions.cpp",
1362 "fuzz/FuzzGradients.cpp",
1363 "fuzz/FuzzParsePath.cpp",
1364 "fuzz/FuzzPathop.cpp",
1365 "fuzz/FuzzScaleToSides.cpp",
1376 test_app("pathops_unittest") {
1377 sources = pathops_tests_sources + [
1378 rebase_path("tests/skia_test.cpp"),
1379 rebase_path("tests/Test.cpp"),
1389 test_app("dump_record") {
1391 "tools/DumpRecord.cpp",
1392 "tools/dump_record.cpp",
1400 test_app("skdiff") {
1402 "tools/skdiff/skdiff.cpp",
1403 "tools/skdiff/skdiff_html.cpp",
1404 "tools/skdiff/skdiff_main.cpp",
1405 "tools/skdiff/skdiff_utils.cpp",
1413 test_app("skp_parser") {
1415 "tools/skp_parser.cpp",
1420 "//third_party/jsoncpp",
1424 if (skia_enable_gpu && (is_android || is_linux || is_win || is_mac)) {
1425 test_app("viewer") {
1426 is_shared_library = is_android
1428 "tools/viewer/GMSlide.cpp",
1429 "tools/viewer/ImageSlide.cpp",
1430 "tools/viewer/SKPSlide.cpp",
1431 "tools/viewer/SampleSlide.cpp",
1432 "tools/viewer/Viewer.cpp",
1433 "tools/viewer/sk_app/CommandSet.cpp",
1434 "tools/viewer/sk_app/GLWindowContext.cpp",
1435 "tools/viewer/sk_app/Window.cpp",
1441 "tools/viewer/sk_app/android/GLWindowContext_android.cpp",
1442 "tools/viewer/sk_app/android/RasterWindowContext_android.cpp",
1443 "tools/viewer/sk_app/android/Window_android.cpp",
1444 "tools/viewer/sk_app/android/main_android.cpp",
1445 "tools/viewer/sk_app/android/surface_glue_android.cpp",
1447 libs += [ "android" ]
1448 } else if (is_linux) {
1450 "tools/viewer/sk_app/unix/GLWindowContext_unix.cpp",
1451 "tools/viewer/sk_app/unix/RasterWindowContext_unix.cpp",
1452 "tools/viewer/sk_app/unix/Window_unix.cpp",
1453 "tools/viewer/sk_app/unix/main_unix.cpp",
1455 } else if (is_win) {
1457 "tools/viewer/sk_app/win/GLWindowContext_win.cpp",
1458 "tools/viewer/sk_app/win/RasterWindowContext_win.cpp",
1459 "tools/viewer/sk_app/win/Window_win.cpp",
1460 "tools/viewer/sk_app/win/main_win.cpp",
1462 } else if (is_mac) {
1464 "tools/viewer/sk_app/mac/GLWindowContext_mac.cpp",
1465 "tools/viewer/sk_app/mac/RasterWindowContext_mac.cpp",
1466 "tools/viewer/sk_app/mac/Window_mac.cpp",
1467 "tools/viewer/sk_app/mac/main_mac.cpp",
1471 if (skia_use_vulkan) {
1472 sources += [ "tools/viewer/sk_app/VulkanWindowContext.cpp" ]
1475 [ "tools/viewer/sk_app/android/VulkanWindowContext_android.cpp" ]
1476 } else if (is_linux) {
1477 sources += [ "tools/viewer/sk_app/unix/VulkanWindowContext_unix.cpp" ]
1478 libs += [ "X11-xcb" ]
1479 } else if (is_win) {
1480 sources += [ "tools/viewer/sk_app/win/VulkanWindowContext_win.cpp" ]
1493 "//third_party/imgui",
1494 "//third_party/jsoncpp",
1497 deps += [ "//third_party/native_app_glue" ]
1498 } else if (is_mac) {
1499 deps += [ "//third_party/libsdl" ]
1504 if (is_android && defined(ndk) && ndk != "") {
1507 "$ndk/$ndk_gdbserver",
1510 "$root_out_dir/gdbserver",
1515 if (skia_enable_gpu) {
1517 defines = [ "SKSL_STANDALONE" ]
1519 "src/sksl/SkSLMain.cpp",
1521 sources += skia_sksl_sources
1522 include_dirs = [ "src/sksl" ]