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 "DartTypes.h", 15 "FontArguments.h", 16 "FontCollection.h", 17 "Metrics.h", 18 "Paragraph.h", 19 "ParagraphBuilder.h", 20 "ParagraphCache.h", 21 "ParagraphPainter.h", 22 "ParagraphStyle.h", 23 "TextShadow.h", 24 "TextStyle.h", 25 "TypefaceFontProvider.h", 26 ], 27 visibility = ["//modules/skparagraph:__pkg__"], 28) 29