80452bee11
It's a tiny, core-ish component -- might as well treat as such to simplify dependencies. Change-Id: I6f31ce2d151f9a629d88bfc7f15d64891d5150c0 Reviewed-on: https://skia-review.googlesource.com/135780 Reviewed-by: Mike Klein <mtklein@google.com> Reviewed-by: Kevin Lubick <kjlubick@google.com> Commit-Queue: Florin Malita <fmalita@chromium.org>
98 lines
1.6 KiB
Plaintext
98 lines
1.6 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) {
|
|
public_configs = [ ":public_config" ]
|
|
public = [
|
|
"include/Skottie.h",
|
|
]
|
|
sources = [
|
|
"src/Skottie.cpp",
|
|
"src/SkottieAdapter.cpp",
|
|
"src/SkottieAdapter.h",
|
|
"src/SkottieAnimator.cpp",
|
|
"src/SkottieAnimator.h",
|
|
"src/SkottieJson.cpp",
|
|
"src/SkottieJson.h",
|
|
"src/SkottieValue.cpp",
|
|
"src/SkottieValue.h",
|
|
]
|
|
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",
|
|
]
|
|
}
|