16fbc24772
This reverts commita30095d17c
. Reason for revert: Fixing the build Original change's description: > Revert "ICU API: only in SkParagraph, simplified (relanding reverted)." > > This reverts commit7479eda3b6
. > > Reason for revert: Breaking build > > Original change's description: > > ICU API: only in SkParagraph, simplified (relanding reverted). > > > > Reverted commit: https://skia-review.googlesource.com/c/skia/+/296128/ > > > > Change-Id: Iaf793bff94a6060579c7d6176d477e598c047be6 > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/303261 > > Reviewed-by: Mike Reed <reed@google.com> > > Commit-Queue: Julia Lavrova <jlavrova@google.com> > > TBR=reed@google.com,jlavrova@google.com > > Change-Id: Idd4c41e22aa59e24bdbd07f2fa5e9258c1bbb7a7 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/303358 > Reviewed-by: Julia Lavrova <jlavrova@google.com> > Commit-Queue: Julia Lavrova <jlavrova@google.com> TBR=reed@google.com,jlavrova@google.com Change-Id: Iea5da4535ea2e388e8e632e6c556b66c8781631a Reviewed-on: https://skia-review.googlesource.com/c/skia/+/303377 Reviewed-by: Ben Wagner <bungeman@google.com> Reviewed-by: Julia Lavrova <jlavrova@google.com> Commit-Queue: Julia Lavrova <jlavrova@google.com>
59 lines
1.4 KiB
Plaintext
59 lines
1.4 KiB
Plaintext
# Copyright 2018 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("../../gn/skia.gni")
|
|
|
|
declare_args() {
|
|
skia_enable_skshaper = true
|
|
}
|
|
|
|
if (skia_enable_skshaper) {
|
|
config("public_config") {
|
|
include_dirs = [ "include" ]
|
|
defines = []
|
|
if (is_component_build) {
|
|
defines += [ "SKSHAPER_DLL" ]
|
|
}
|
|
if (skia_use_fonthost_mac) {
|
|
defines += [ "SK_SHAPER_CORETEXT_AVAILABLE" ]
|
|
}
|
|
if (skia_use_icu && skia_use_harfbuzz) {
|
|
defines += [ "SK_SHAPER_HARFBUZZ_AVAILABLE" ]
|
|
defines += [ "SK_UNICODE_AVAILABLE" ]
|
|
}
|
|
}
|
|
|
|
component("skshaper") {
|
|
check_includes = false
|
|
import("skshaper.gni")
|
|
public_configs = [ ":public_config" ]
|
|
public = skia_shaper_public
|
|
deps = [ "../..:skia" ]
|
|
defines = [
|
|
"SKSHAPER_IMPLEMENTATION=1",
|
|
"SKUNICODE_IMPLEMENTATION=1",
|
|
]
|
|
sources = skia_shaper_primitive_sources
|
|
if (skia_use_fonthost_mac) {
|
|
sources += skia_shaper_coretext_sources
|
|
}
|
|
if (skia_use_icu && skia_use_harfbuzz) {
|
|
sources += skia_shaper_icu_sources
|
|
sources += skia_shaper_harfbuzz_sources
|
|
deps += [
|
|
"//third_party/harfbuzz",
|
|
"//third_party/icu",
|
|
]
|
|
}
|
|
configs += [
|
|
"../../:skia_private",
|
|
"../../third_party/icu/config:no_cxx",
|
|
]
|
|
}
|
|
} else {
|
|
group("skshaper") {
|
|
}
|
|
}
|