ecc8e3bc04
The very first version: 1. Moves cursort up, down, left, right by grapheme/glyph clusters 2. Breaks lines by grapheme/glyph cluster 3. Just started! Change-Id: Ib2881794ff33af9e428828f3a9e2d3b54946fa8f Reviewed-on: https://skia-review.googlesource.com/c/skia/+/417476 Commit-Queue: Julia Lavrova <jlavrova@google.com> Reviewed-by: Mike Reed <reed@google.com>
110 lines
2.1 KiB
Plaintext
110 lines
2.1 KiB
Plaintext
# Copyright 2021 Google LLC.
|
|
|
|
import("../../gn/skia.gni")
|
|
import("../../modules/skshaper/skshaper.gni")
|
|
|
|
declare_args() {
|
|
skia_enable_sktext = true
|
|
text_gms_enabled = true
|
|
text_tests_enabled = true
|
|
text_bench_enabled = false
|
|
}
|
|
|
|
if (skia_enable_sktext && skia_enable_skshaper && skia_use_icu &&
|
|
skia_use_harfbuzz) {
|
|
config("public_config") {
|
|
include_dirs = [ "include" ]
|
|
}
|
|
|
|
component("sktext") {
|
|
import("sktext.gni")
|
|
public_configs = [ ":public_config" ]
|
|
public = sktext_public
|
|
sources = sktext_sources
|
|
deps = [
|
|
"../..:skia",
|
|
"../../modules/skshaper",
|
|
]
|
|
}
|
|
|
|
if (defined(is_skia_standalone) && skia_enable_tools) {
|
|
source_set("gm") {
|
|
if (text_gms_enabled) {
|
|
testonly = true
|
|
sources = []
|
|
deps = [
|
|
":sktext",
|
|
"../..:gpu_tool_utils",
|
|
"../..:skia",
|
|
"../../modules/skshaper",
|
|
]
|
|
} else {
|
|
sources = []
|
|
}
|
|
}
|
|
|
|
source_set("tests") {
|
|
if (text_tests_enabled) {
|
|
testonly = true
|
|
sources = []
|
|
deps = [
|
|
":sktext",
|
|
"../..:gpu_tool_utils",
|
|
"../..:skia",
|
|
"../../modules/skshaper",
|
|
]
|
|
} else {
|
|
sources = []
|
|
}
|
|
}
|
|
|
|
source_set("bench") {
|
|
if (text_bench_enabled) {
|
|
testonly = true
|
|
sources = []
|
|
deps = [
|
|
":sktext",
|
|
"../..:skia",
|
|
"../../modules/skshaper",
|
|
]
|
|
} else {
|
|
sources = []
|
|
}
|
|
}
|
|
|
|
source_set("samples") {
|
|
testonly = true
|
|
sources = [
|
|
"editor/Editor.cpp",
|
|
"samples/Text.cpp",
|
|
]
|
|
deps = [
|
|
":sktext",
|
|
"../..:skia",
|
|
"../../modules/skshaper",
|
|
]
|
|
}
|
|
|
|
skia_source_set("text_editor") {
|
|
testonly = true
|
|
sources = [
|
|
"editor/App.cpp",
|
|
"editor/Editor.cpp",
|
|
]
|
|
public_deps = [ "../..:sk_app" ]
|
|
deps = [ ":sktext" ]
|
|
}
|
|
}
|
|
} else {
|
|
group("sktext") {
|
|
}
|
|
group("gm") {
|
|
}
|
|
group("tests") {
|
|
}
|
|
group("bench") {
|
|
}
|
|
group("samples") {
|
|
}
|
|
}
|