skia2/modules/skparagraph/BUILD.bazel
Kevin Lubick 0222b540c5 [bazel] Make modules depend on //:skia_internal
Many of these happen to include private headers.

Change-Id: If416de1f30639d797406727dd18f350a85c744bb
Bug: skia:12541, b/237076898
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/552937
Reviewed-by: Joe Gregorio <jcgregorio@google.com>
2022-06-24 17:01:56 +00:00

20 lines
463 B
Python

load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
licenses(["notice"])
exports_files_legacy()
cc_library(
name = "skparagraph",
srcs = ["//modules/skparagraph/src:srcs"],
hdrs = ["//modules/skparagraph/include:hdrs"],
visibility = ["//:__subpackages__"],
deps = [
"//:skia_internal",
"//modules/skshaper",
"//modules/skunicode",
"//third_party:harfbuzz",
"//third_party:icu",
],
)