blob: cb221e313cb9207d75c72c6974a3dec61c6ec11d [file] [log] [blame]
# Copyright 2018 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
declare_args() {
skia_enable_skshaper = true
}
config("public_config") {
if (skia_enable_skshaper) {
include_dirs = [ "include" ]
}
}
source_set("skshaper") {
if (skia_enable_skshaper) {
public_configs = [ ":public_config" ]
public = [
"include/SkShaper.h",
]
deps = [
"../..:skia",
]
sources = [
"src/SkShaper.cpp",
]
if (target_cpu == "wasm") {
sources += [ "src/SkShaper_primitive.cpp" ]
} else {
sources += [ "src/SkShaper_harfbuzz.cpp" ]
deps += [
"//third_party/harfbuzz",
"//third_party/icu",
]
}
configs += [ "../../:skia_private" ]
}
}