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 = "hdrs", 13 srcs = [ 14 "ExternalLayer.h", 15 "Skottie.h", 16 "SkottieProperty.h", 17 "SlotManager.h", 18 "TextShaper.h", 19 ], 20 visibility = ["//modules/skottie:__pkg__"], 21) 22 23skia_filegroup( 24 name = "text_shaper_hdrs", 25 srcs = [ 26 "TextShaper.h", 27 ], 28 visibility = ["//modules/skottie:__pkg__"], 29) 30