2018-08-02 15:54:16 +00:00
|
|
|
# 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")
|
|
|
|
|
2018-09-24 21:24:59 +00:00
|
|
|
skia_skottie_public = [
|
|
|
|
"$_include/Skottie.h",
|
|
|
|
"$_include/SkottieProperty.h",
|
|
|
|
]
|
2018-08-02 15:54:16 +00:00
|
|
|
|
|
|
|
skia_skottie_sources = [
|
|
|
|
"$_src/Skottie.cpp",
|
|
|
|
"$_src/SkottieAdapter.cpp",
|
|
|
|
"$_src/SkottieAdapter.h",
|
|
|
|
"$_src/SkottieAnimator.cpp",
|
|
|
|
"$_src/SkottieJson.cpp",
|
|
|
|
"$_src/SkottieJson.h",
|
2018-08-21 18:34:02 +00:00
|
|
|
"$_src/SkottieLayer.cpp",
|
|
|
|
"$_src/SkottieLayerEffect.cpp",
|
2018-08-17 16:29:45 +00:00
|
|
|
"$_src/SkottiePriv.h",
|
2018-08-21 18:34:02 +00:00
|
|
|
"$_src/SkottiePrecompLayer.cpp",
|
2018-09-24 21:24:59 +00:00
|
|
|
"$_src/SkottieProperty.cpp",
|
2018-08-21 18:34:02 +00:00
|
|
|
"$_src/SkottieShapeLayer.cpp",
|
2018-08-17 16:29:45 +00:00
|
|
|
"$_src/SkottieTextLayer.cpp",
|
2018-08-02 15:54:16 +00:00
|
|
|
"$_src/SkottieValue.cpp",
|
|
|
|
"$_src/SkottieValue.h",
|
|
|
|
]
|