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 "Decorations.cpp", 15 "Decorations.h", 16 "FontArguments.cpp", 17 "FontCollection.cpp", 18 "Iterators.h", 19 "OneLineShaper.cpp", 20 "OneLineShaper.h", 21 "ParagraphBuilderImpl.cpp", 22 "ParagraphBuilderImpl.h", 23 "ParagraphCache.cpp", 24 "ParagraphImpl.cpp", 25 "ParagraphImpl.h", 26 "ParagraphPainterImpl.cpp", 27 "ParagraphPainterImpl.h", 28 "ParagraphStyle.cpp", 29 "Run.cpp", 30 "Run.h", 31 "TextLine.cpp", 32 "TextLine.h", 33 "TextShadow.cpp", 34 "TextStyle.cpp", 35 "TextWrapper.cpp", 36 "TextWrapper.h", 37 "TypefaceFontProvider.cpp", 38 ], 39 visibility = ["//modules/skparagraph:__pkg__"], 40) 41