471a946cf1
Plumb AnimationBuilder throught a bazillion layers to make it reachable when parsing animatable values. This is in preparation of keyframed text, which will require access to the font set when parsing. Refactor only, no functional changes. TBR= Change-Id: Ide2ef2ba66fbcc75fdcc785f987b364d45dff5b6 Reviewed-on: https://skia-review.googlesource.com/149264 Commit-Queue: Florin Malita <fmalita@chromium.org> Reviewed-by: Florin Malita <fmalita@chromium.org>
28 lines
772 B
Plaintext
28 lines
772 B
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.
|
|
|
|
# Things are easiest for everyone if these source paths are absolute.
|
|
_src = get_path_info("src", "abspath")
|
|
_include = get_path_info("include", "abspath")
|
|
|
|
skia_skottie_public = [ "$_include/Skottie.h" ]
|
|
|
|
skia_skottie_sources = [
|
|
"$_src/Skottie.cpp",
|
|
"$_src/SkottieAdapter.cpp",
|
|
"$_src/SkottieAdapter.h",
|
|
"$_src/SkottieAnimator.cpp",
|
|
"$_src/SkottieJson.cpp",
|
|
"$_src/SkottieJson.h",
|
|
"$_src/SkottieLayer.cpp",
|
|
"$_src/SkottieLayerEffect.cpp",
|
|
"$_src/SkottiePriv.h",
|
|
"$_src/SkottiePrecompLayer.cpp",
|
|
"$_src/SkottieShapeLayer.cpp",
|
|
"$_src/SkottieTextLayer.cpp",
|
|
"$_src/SkottieValue.cpp",
|
|
"$_src/SkottieValue.h",
|
|
]
|