aboutsummaryrefslogtreecommitdiffhomepage
path: root/modules/sksg/BUILD.gn
blob: 5fb45bcabfe0b54ae6e54761f2cac60e0a6f1cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Copyright 2018 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

declare_args() {
  skia_enable_sksg = true
}

config("public_config") {
  if (skia_enable_sksg) {
    defines = [ "SK_HAS_SKSG" ]
    include_dirs = [ "include" ]
  }
}

source_set("sksg") {
  if (skia_enable_sksg) {
    public_configs = [ ":public_config" ]
    sources = [
      "src/SkSGClipEffect.cpp",
      "src/SkSGColor.cpp",
      "src/SkSGDraw.cpp",
      "src/SkSGEffectNode.cpp",
      "src/SkSGGeometryNode.cpp",
      "src/SkSGGeometryTransform.cpp",
      "src/SkSGGradient.cpp",
      "src/SkSGGroup.cpp",
      "src/SkSGImage.cpp",
      "src/SkSGInvalidationController.cpp",
      "src/SkSGMaskEffect.cpp",
      "src/SkSGMerge.cpp",
      "src/SkSGNode.cpp",
      "src/SkSGOpacityEffect.cpp",
      "src/SkSGPaintNode.cpp",
      "src/SkSGPath.cpp",
      "src/SkSGPlane.cpp",
      "src/SkSGRect.cpp",
      "src/SkSGRenderNode.cpp",
      "src/SkSGRoundEffect.cpp",
      "src/SkSGScene.cpp",
      "src/SkSGText.cpp",
      "src/SkSGTransform.cpp",
      "src/SkSGTrimEffect.cpp",
    ]
    configs += [ "../../:skia_private" ]
    deps = [
      "../..:skia",
    ]
  }
}

source_set("tests") {
  if (skia_enable_sksg) {
    testonly = true

    configs += [
      "../..:skia_private",
      "../..:tests_config",  # TODO: refactor to make this nicer
    ]
    sources = [
      "tests/SGTest.cpp",
    ]
    deps = [
      ":sksg",
      "../..:gpu_tool_utils",  # TODO: refactor to make this nicer
      "../..:skia",
    ]
  }
}

source_set("samples") {
  if (skia_enable_sksg && target_cpu != "wasm") {  # TODO: clean up wasm test
    testonly = true

    configs += [
      "../..:skia_private",
      "../..:samples_config",  # TODO: refactor to make this nicer
    ]
    sources = [
      "samples/SampleSVGPong.cpp",
    ]
    deps = [
      ":sksg",
      "../..:gm",  # TODO: refactor to make this nicer
      "../..:skia",
      "../..:views",  # TODO: refactor to make this nicer
    ]
  }
}