1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9exports_files_legacy() 10 11skia_filegroup( 12 name = "srcs", 13 srcs = [ 14 "Animator.cpp", 15 "Animator.h", 16 "KeyframeAnimator.cpp", 17 "KeyframeAnimator.h", 18 "ScalarKeyframeAnimator.cpp", 19 "ShapeKeyframeAnimator.cpp", 20 "TextKeyframeAnimator.cpp", 21 "Vec2KeyframeAnimator.cpp", 22 "VectorKeyframeAnimator.cpp", 23 "VectorKeyframeAnimator.h", 24 ], 25 visibility = ["//modules/skottie/src:__pkg__"], 26) 27