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 = [
|
2019-07-01 17:57:43 +00:00
|
|
|
"$_src/Composition.cpp",
|
|
|
|
"$_src/Layer.cpp",
|
2018-08-02 15:54:16 +00:00
|
|
|
"$_src/Skottie.cpp",
|
|
|
|
"$_src/SkottieAdapter.cpp",
|
|
|
|
"$_src/SkottieAdapter.h",
|
|
|
|
"$_src/SkottieAnimator.cpp",
|
|
|
|
"$_src/SkottieJson.cpp",
|
|
|
|
"$_src/SkottieJson.h",
|
2018-08-17 16:29:45 +00:00
|
|
|
"$_src/SkottiePriv.h",
|
2018-09-24 21:24:59 +00:00
|
|
|
"$_src/SkottieProperty.cpp",
|
2018-08-02 15:54:16 +00:00
|
|
|
"$_src/SkottieValue.cpp",
|
|
|
|
"$_src/SkottieValue.h",
|
2019-05-08 14:04:09 +00:00
|
|
|
|
2019-06-14 20:05:22 +00:00
|
|
|
"$_src/effects/DropShadowEffect.cpp",
|
2019-06-14 16:20:10 +00:00
|
|
|
"$_src/effects/Effects.cpp",
|
|
|
|
"$_src/effects/Effects.h",
|
2019-06-14 20:05:22 +00:00
|
|
|
"$_src/effects/FillEffect.cpp",
|
|
|
|
"$_src/effects/GaussianBlurEffect.cpp",
|
|
|
|
"$_src/effects/GradientEffect.cpp",
|
2019-08-02 17:10:14 +00:00
|
|
|
"$_src/effects/HueSaturationEffect.cpp",
|
2019-06-14 20:05:22 +00:00
|
|
|
"$_src/effects/LevelsEffect.cpp",
|
2019-06-19 01:13:21 +00:00
|
|
|
"$_src/effects/LinearWipeEffect.cpp",
|
2019-07-03 14:09:31 +00:00
|
|
|
"$_src/effects/MotionBlurEffect.cpp",
|
|
|
|
"$_src/effects/MotionBlurEffect.h",
|
2019-06-17 15:37:02 +00:00
|
|
|
"$_src/effects/MotionTileEffect.cpp",
|
2019-06-21 13:12:21 +00:00
|
|
|
"$_src/effects/RadialWipeEffect.cpp",
|
2019-06-14 20:05:22 +00:00
|
|
|
"$_src/effects/TintEffect.cpp",
|
2019-06-14 16:20:10 +00:00
|
|
|
"$_src/effects/TransformEffect.cpp",
|
2019-06-14 20:05:22 +00:00
|
|
|
"$_src/effects/TritoneEffect.cpp",
|
2019-06-26 01:14:02 +00:00
|
|
|
"$_src/effects/VenetianBlindsEffect.cpp",
|
2019-06-14 16:20:10 +00:00
|
|
|
|
2019-07-01 17:57:43 +00:00
|
|
|
"$_src/layers/ImageLayer.cpp",
|
|
|
|
"$_src/layers/NullLayer.cpp",
|
|
|
|
"$_src/layers/PrecompLayer.cpp",
|
|
|
|
"$_src/layers/ShapeLayer.cpp",
|
|
|
|
"$_src/layers/SolidLayer.cpp",
|
|
|
|
"$_src/layers/TextLayer.cpp",
|
|
|
|
|
2019-06-04 19:48:34 +00:00
|
|
|
"$_src/text/RangeSelector.cpp",
|
|
|
|
"$_src/text/RangeSelector.h",
|
2019-05-08 14:04:09 +00:00
|
|
|
"$_src/text/SkottieShaper.cpp",
|
|
|
|
"$_src/text/SkottieShaper.h",
|
|
|
|
"$_src/text/TextAdapter.cpp",
|
|
|
|
"$_src/text/TextAdapter.h",
|
2019-05-31 18:15:04 +00:00
|
|
|
"$_src/text/TextAnimator.cpp",
|
|
|
|
"$_src/text/TextAnimator.h",
|
2019-05-08 14:04:09 +00:00
|
|
|
"$_src/text/TextValue.cpp",
|
|
|
|
"$_src/text/TextValue.h",
|
2018-08-02 15:54:16 +00:00
|
|
|
]
|