1load("//bazel:skia_rules.bzl", "skia_filegroup") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9skia_filegroup( 10 name = "hdrs", 11 srcs = [ 12 "ExternalLayer.h", 13 "Skottie.h", 14 "SkottieProperty.h", 15 "SlotManager.h", 16 "TextShaper.h", 17 ], 18 visibility = ["//modules/skottie:__pkg__"], 19) 20 21skia_filegroup( 22 name = "text_shaper_hdrs", 23 srcs = [ 24 "TextShaper.h", 25 ], 26 visibility = ["//modules/skottie:__pkg__"], 27) 28