blob: 773663491b1b380d3652388ce49f56565c00b8f2 [file] [log] [blame]
load("//bazel:macros.bzl", "exports_files_legacy", "selects", "skia_cc_library")
licenses(["notice"])
exports_files_legacy()
selects.config_setting_group(
name = "use_harfbuzz_shaper",
match_all = [
"//bazel/common_config_settings:use_harfbuzz_true",
],
)
# TODO(kjlubick,bungeman) coretext shaper
skia_cc_library(
name = "skshaper",
srcs = ["//modules/skshaper/src:srcs"],
hdrs = ["//modules/skshaper/include:hdrs"],
defines = ["SK_SHAPER_UNICODE_AVAILABLE"] + select({
":use_harfbuzz_shaper": ["SK_SHAPER_HARFBUZZ_AVAILABLE"],
"//conditions:default": [],
}),
local_defines = ["SKSHAPER_IMPLEMENTATION=1"],
visibility = ["//:__subpackages__"],
# TODO(kjlubick,bungeman) someday implementation_deps will be available
#implementation_deps = ["//modules/skunicode"] + select({
# ":use_harfbuzz_shaper": [
# "@harfbuzz",
# ],
# "//conditions:default": [],
#}),
#deps = ["//:skia_internal"]
deps = [
"//:skia_internal",
"//modules/skunicode",
] + select({
":use_harfbuzz_shaper": [
"@harfbuzz",
],
"//conditions:default": [],
}),
)