skia2/modules/skparagraph/BUILD.bazel
Kevin Lubick aab019a15e [bazel] Fix build
Most of these are pretty mechanical generated changes.

IWYU noticed one issue with DSLCore.h, which was fixed here.

Change-Id: I5629565ad3c2817daa71907c62f932d93f9d78ab
Bug: skia:12541
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/524617
Reviewed-by: Ben Wagner <bungeman@google.com>
Reviewed-by: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2022-03-28 13:56:16 +00:00

26 lines
1.1 KiB
Python

cc_library(
name = "skparagraph",
hdrs = ["//modules/skparagraph/include:hdrs"],
visibility = ["//:__subpackages__"],
deps = [
"//modules/skparagraph/src:Decorations_src",
"//modules/skparagraph/src:FontArguments_src",
"//modules/skparagraph/src:FontCollection_src",
"//modules/skparagraph/src:OneLineShaper_src",
"//modules/skparagraph/src:ParagraphBuilderImpl_src",
"//modules/skparagraph/src:ParagraphCache_src",
"//modules/skparagraph/src:ParagraphImpl_src",
"//modules/skparagraph/src:ParagraphStyle_src",
"//modules/skparagraph/src:Run_src",
"//modules/skparagraph/src:TextLine_src",
"//modules/skparagraph/src:TextShadow_src",
"//modules/skparagraph/src:TextStyle_src",
"//modules/skparagraph/src:TextWrapper_src",
"//modules/skparagraph/src:TypefaceFontProvider_src",
# TODO(kjlubick) Can this make a bigger, clearer error if harfbuzz and ICU are not
# available?
"//modules/skshaper",
"//modules/skunicode",
],
)