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