• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:macros.bzl", "generated_cc_atom")
2
3filegroup(
4    name = "hdrs",
5    srcs = [
6        "ExternalLayer.h",
7        "Skottie.h",
8        "SkottieProperty.h",
9    ],
10    visibility = ["//modules/skottie:__pkg__"],
11)
12
13generated_cc_atom(
14    name = "ExternalLayer_hdr",
15    hdrs = ["ExternalLayer.h"],
16    visibility = ["//:__subpackages__"],
17    deps = ["//include/core:SkRefCnt_hdr"],
18)
19
20generated_cc_atom(
21    name = "SkottieProperty_hdr",
22    hdrs = ["SkottieProperty.h"],
23    visibility = ["//:__subpackages__"],
24    deps = [
25        "//include/core:SkColor_hdr",
26        "//include/core:SkPoint_hdr",
27        "//include/core:SkRefCnt_hdr",
28        "//include/core:SkTypeface_hdr",
29        "//include/utils:SkTextUtils_hdr",
30        "//modules/skottie/src/text:SkottieShaper_hdr",
31    ],
32)
33
34generated_cc_atom(
35    name = "Skottie_hdr",
36    hdrs = ["Skottie.h"],
37    visibility = ["//:__subpackages__"],
38    deps = [
39        ":ExternalLayer_hdr",
40        ":SkottieProperty_hdr",
41        "//include/core:SkFontMgr_hdr",
42        "//include/core:SkRefCnt_hdr",
43        "//include/core:SkSize_hdr",
44        "//include/core:SkString_hdr",
45        "//include/core:SkTypes_hdr",
46        "//modules/skresources/include:SkResources_hdr",
47    ],
48)
49