aboutsummaryrefslogtreecommitdiffhomepage
path: root/modules/skottie/BUILD.gn
blob: 59223de916546ceea2d071718b0d24a6fe186946 (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
# 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_skottie = true
}

config("public_config") {
  if (skia_enable_skottie) {
    defines = [ "SK_ENABLE_SKOTTIE" ]
    include_dirs = [ "include" ]
  }
}

source_set("skottie") {
  if (skia_enable_skottie) {
    public_configs = [ ":public_config" ]
    public = [
      "include/Skottie.h",
    ]
    sources = [
      "src/Skottie.cpp",
      "src/SkottieAdapter.cpp",
      "src/SkottieAdapter.h",
      "src/SkottieAnimator.cpp",
      "src/SkottieAnimator.h",
      "src/SkottieJson.cpp",
      "src/SkottieJson.h",
      "src/SkottieValue.cpp",
      "src/SkottieValue.h",
    ]
    configs += [ "../../:skia_private" ]
    deps = [
      "../..:skia",
      "../../third_party/rapidjson",
      "../sksg:sksg",
    ]
  }
}

source_set("fuzz") {
  if (skia_enable_skottie) {
    testonly = true

    configs += [ "../..:skia_private" ]
    sources = [
      "fuzz/FuzzSkottieJSON.cpp",
    ]

    deps = [
      "../..:skia",
    ]

    public_deps = [
      ":skottie",
    ]
  }
}