1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_filegroup") 2 3licenses(["notice"]) 4 5exports_files_legacy() 6 7skia_filegroup( 8 name = "srcs", 9 srcs = [ 10 "Decorations.cpp", 11 "Decorations.h", 12 "FontArguments.cpp", 13 "FontCollection.cpp", 14 "Iterators.h", 15 "OneLineShaper.cpp", 16 "OneLineShaper.h", 17 "ParagraphBuilderImpl.cpp", 18 "ParagraphBuilderImpl.h", 19 "ParagraphCache.cpp", 20 "ParagraphImpl.cpp", 21 "ParagraphImpl.h", 22 "ParagraphPainterImpl.cpp", 23 "ParagraphPainterImpl.h", 24 "ParagraphStyle.cpp", 25 "Run.cpp", 26 "Run.h", 27 "TextLine.cpp", 28 "TextLine.h", 29 "TextShadow.cpp", 30 "TextStyle.cpp", 31 "TextWrapper.cpp", 32 "TextWrapper.h", 33 "TypefaceFontProvider.cpp", 34 ], 35 visibility = ["//modules/skparagraph:__pkg__"], 36) 37