40f3db41af
This is a reland of f4aab0584d
Original change's description:
> Experimental ICU runtime linking
>
> Introduce a build config option where ICU symbols are resolved at
> runtime, against existing system libs.
>
> Change-Id: I2325537438de0063fcc4a7c0f8411764cf550f09
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/431037
> Commit-Queue: Florin Malita <fmalita@chromium.org>
> Commit-Queue: Florin Malita <fmalita@google.com>
> Reviewed-by: Ben Wagner <bungeman@google.com>
Change-Id: I6f67a5eb842743d2486ccc4519e2d8cb9fac3458
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/433277
Reviewed-by: Ben Wagner <bungeman@google.com>
Commit-Queue: Florin Malita <fmalita@google.com>
60 lines
1.4 KiB
Plaintext
60 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")
|
|
import("skshaper.gni")
|
|
|
|
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" ]
|
|
}
|
|
}
|
|
|
|
component("skshaper") {
|
|
check_includes = false
|
|
public_configs = [ ":public_config" ]
|
|
public = skia_shaper_public
|
|
deps = [ "../..:skia" ]
|
|
defines = [ "SKSHAPER_IMPLEMENTATION=1" ]
|
|
sources = skia_shaper_primitive_sources
|
|
if (skia_use_fonthost_mac) {
|
|
sources += skia_shaper_coretext_sources
|
|
if (is_mac) {
|
|
frameworks = [ "ApplicationServices.framework" ]
|
|
}
|
|
|
|
if (is_ios) {
|
|
frameworks = [
|
|
"CoreFoundation.framework",
|
|
"CoreText.framework",
|
|
]
|
|
}
|
|
}
|
|
if (skia_use_icu && skia_use_harfbuzz) {
|
|
sources += skia_shaper_harfbuzz_sources
|
|
deps += [
|
|
"../skunicode",
|
|
"//third_party/harfbuzz",
|
|
]
|
|
}
|
|
configs += [
|
|
"../../:skia_private",
|
|
"../../third_party/icu/config:no_cxx",
|
|
]
|
|
}
|
|
} else {
|
|
group("skshaper") {
|
|
}
|
|
}
|