0222b540c5
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>
20 lines
463 B
Python
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",
|
|
],
|
|
)
|