• 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        "Animator.cpp",
11        "Animator.h",
12        "KeyframeAnimator.cpp",
13        "KeyframeAnimator.h",
14        "ScalarKeyframeAnimator.cpp",
15        "ShapeKeyframeAnimator.cpp",
16        "TextKeyframeAnimator.cpp",
17        "Vec2KeyframeAnimator.cpp",
18        "VectorKeyframeAnimator.cpp",
19        "VectorKeyframeAnimator.h",
20    ],
21    visibility = ["//modules/skottie/src:__pkg__"],
22)
23