skia2/modules/skplaintexteditor/BUILD.gn
Hal Canary a0b66fc79d SkPlainTextEditor: from experimental to modules
Change-Id: I8896283ee3a57af926a43f6647e27059d52dd7a8
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/237146
Reviewed-by: Hal Canary <halcanary@google.com>
Commit-Queue: Hal Canary <halcanary@google.com>
2019-08-27 20:32:19 +00:00

70 lines
1.2 KiB
Plaintext

# Copyright 2019 Google LLC.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../../gn/skia.gni")
if (skia_use_icu && skia_use_harfbuzz) {
source_set("editor_lib") {
include_dirs = [ "../.." ]
public = [
"include/editor.h",
"include/stringslice.h",
"include/stringview.h",
]
sources = [
"src/editor.cpp",
"src/stringslice.cpp",
]
public_deps = [
"../..:skia",
]
deps = [
":shape",
]
}
source_set("shape") {
include_dirs = [ "../.." ]
public = [
"src/shape.h",
]
sources = [
"src/shape.cpp",
]
public_deps = [
"../..:skia",
]
deps = [
":word_boundaries",
"../../modules/skshaper",
]
}
source_set("word_boundaries") {
include_dirs = [ "../.." ]
public = [
"src/word_boundaries.h",
]
sources = [
"src/word_boundaries.cpp",
]
deps = [
"../../third_party/icu",
]
}
source_set("editor_app") {
testonly = true
sources = [
"app/editor_application.cpp",
]
public_deps = [
"../..:sk_app",
]
deps = [
":editor_lib",
]
}
}