• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:macros.bzl", "generated_cc_atom")
2
3filegroup(
4    name = "hdrs",
5    srcs = [
6        "SkottieUtils.h",
7    ],
8    visibility = ["//modules/skottie:__pkg__"],
9)
10
11generated_cc_atom(
12    name = "SkottieUtils_hdr",
13    hdrs = ["SkottieUtils.h"],
14    visibility = ["//:__subpackages__"],
15    deps = [
16        "//modules/skottie/include:ExternalLayer_hdr",
17        "//modules/skottie/include:SkottieProperty_hdr",
18        "//modules/skottie/include:Skottie_hdr",
19    ],
20)
21
22generated_cc_atom(
23    name = "SkottieUtils_src",
24    srcs = ["SkottieUtils.cpp"],
25    visibility = ["//:__subpackages__"],
26    deps = [":SkottieUtils_hdr"],
27)
28