• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup")
2
3licenses(["notice"])
4
5exports_files_legacy()
6
7skia_filegroup(
8    name = "srcs",
9    srcs = [
10        "Adapter.h",
11        "BlendModes.cpp",
12        "Camera.cpp",
13        "Camera.h",
14        "Composition.cpp",
15        "Composition.h",
16        "Layer.cpp",
17        "Layer.h",
18        "Path.cpp",
19        "Skottie.cpp",
20        "SkottieJson.cpp",
21        "SkottieJson.h",
22        "SkottiePriv.h",
23        "SkottieProperty.cpp",
24        "SkottieValue.h",
25        "Transform.cpp",
26        "Transform.h",
27        "//modules/skottie/src/animator:srcs",
28        "//modules/skottie/src/effects:srcs",
29        "//modules/skottie/src/layers:srcs",
30        "//modules/skottie/src/text:srcs",
31    ],
32    visibility = ["//modules/skottie:__pkg__"],
33)
34
35skia_filegroup(
36    name = "skottie_tool",
37    srcs = [
38        "SkottieTool.cpp",
39    ],
40    visibility = ["//modules/skottie:__pkg__"],
41)
42