skia2/modules/skottie/BUILD.gn
Florin Malita 268707284d [skottie] GM exercising external font loading
Sets up a fake web font loader which serves a local/resource font to
the sample text animation.

Also rename resources/skotty/skotty_* -> resources/skottie/skottie_*.

Change-Id: I4af5b24fc3cc5c63c78801979f9be56744047134
Reviewed-on: https://skia-review.googlesource.com/155881
Reviewed-by: Ben Wagner <bungeman@google.com>
Commit-Queue: Florin Malita <fmalita@chromium.org>
2018-09-20 19:05:35 +00:00

108 lines
1.7 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.
declare_args() {
skia_enable_skottie = true
}
config("public_config") {
if (skia_enable_skottie) {
defines = [ "SK_ENABLE_SKOTTIE" ]
include_dirs = [ "include" ]
}
}
source_set("skottie") {
if (skia_enable_skottie) {
import("skottie.gni")
public_configs = [ ":public_config" ]
public = skia_skottie_public
sources = skia_skottie_sources
configs += [ "../../:skia_private" ]
deps = [
"../..:skia",
"../sksg",
]
}
}
source_set("tests") {
if (skia_enable_skottie) {
testonly = true
configs += [
"../..:skia_private",
"../..:tests_config",
]
sources = [
"src/SkottieTest.cpp",
]
deps = [
":skottie",
"../..:gpu_tool_utils",
"../..:skia",
]
}
}
source_set("fuzz") {
if (skia_enable_skottie) {
testonly = true
configs += [ "../..:skia_private" ]
sources = [
"fuzz/FuzzSkottieJSON.cpp",
]
deps = [
"../..:skia",
]
public_deps = [
":skottie",
]
}
}
source_set("tool") {
testonly = true
configs += [ "../..:skia_private" ]
sources = [
"src/SkottieTool.cpp",
]
deps = [
"../..:flags",
"../..:skia",
]
public_deps = [
":skottie",
]
}
source_set("gm") {
if (skia_enable_skottie) {
testonly = true
# would be nice to have a gm_config
include_dirs = [ "../../gm" ]
configs += [ "../..:skia_private" ]
sources = [
"gm/SkottieGM.cpp",
]
deps = [
":skottie",
"../..:gpu_tool_utils",
"../..:skia",
"../..:tool_utils",
]
}
}