f4e8733947
Introduce AE-specific text shaping abstractions, and move the existing implementation to a separate CU. Change-Id: I8533ed8d9c59af6d82b3f1ca66a6e1d50a3c33c5 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/203706 Reviewed-by: Ben Wagner <bungeman@google.com> Commit-Queue: Florin Malita <fmalita@chromium.org>
33 lines
868 B
Plaintext
33 lines
868 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",
|
|
"$_include/SkottieProperty.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/SkottieProperty.cpp",
|
|
"$_src/SkottieShapeLayer.cpp",
|
|
"$_src/SkottieShaper.cpp",
|
|
"$_src/SkottieTextLayer.cpp",
|
|
"$_src/SkottieValue.cpp",
|
|
"$_src/SkottieValue.h",
|
|
]
|