skia2/modules/skottie/BUILD.gn

197 lines
4.1 KiB
Plaintext
Raw Normal View History

# Copyright 2018 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../../gn/skia.gni")
if (skia_enable_skottie) {
config("public_config") {
defines = [ "SK_ENABLE_SKOTTIE" ]
include_dirs = [ "include" ]
}
skia_component("skottie") {
check_includes = false
import("skottie.gni")
public_configs = [ ":public_config" ]
public = skia_skottie_public
sources = skia_skottie_sources
configs = [ "../../:skia_private" ]
deps = [
"../..:skia",
"../skresources",
"../sksg",
"../skshaper",
Reland "[skottie] AllCaps support" This reverts commit 6142500513e17b9ace6ee89af9e52dd8041a236f. Reason for revert: relanding with fixes Original change's description: > Revert "[skottie] AllCaps support" > > This reverts commit efc7ca4a719029ea636addec9f0c138df01ce420. > > Reason for revert: broke Chromium, NoDEPS builds > > Original change's description: > > [skottie] AllCaps support > > > > AfterEffects and Bodymovin support an "AllCaps" text flag which forces > > text capitalization. > > > > * add toUpper() bindings to SkUnicode/SkICU > > * add capitalization options to SkottieShaper > > * plumb existing Lottie 'ca' (AllCaps) prop > > * also fix a couple of unrelated whoopsies > > > > Change-Id: I8e80921b66530e9830938004946082c6e450b04b > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/445104 > > Reviewed-by: Ben Wagner <bungeman@google.com> > > Commit-Queue: Florin Malita <fmalita@google.com> > > TBR=bungeman@google.com,fmalita@chromium.org,fmalita@google.com,jlavrova@google.com,skcq-be@skia-corp.google.com.iam.gserviceaccount.com > > Change-Id: I3bb43f37f07cfc021e397df578499a4c4da15ca3 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/444980 > Reviewed-by: Florin Malita <fmalita@google.com> > Commit-Queue: Florin Malita <fmalita@google.com> Change-Id: Id729e09d4cade0cead193ffc5e6bd4fea1cdcff6 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/445598 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Florin Malita <fmalita@google.com>
2021-09-03 13:45:53 +00:00
"../skunicode",
]
}
if (defined(is_skia_standalone)) {
config("utils_config") {
include_dirs = [ "utils" ]
}
skia_source_set("utils") {
check_includes = false
testonly = true
public_configs = [ ":utils_config" ]
configs = [ "../../:skia_private" ]
sources = [ "utils/SkottieUtils.cpp" ]
deps = [
":skottie",
"../..:skia",
]
}
if (skia_enable_tools) {
skia_source_set("tests") {
testonly = true
configs = [
"../..:skia_private",
"../..:tests_config",
]
sources = [
"src/SkottieTest.cpp",
"tests/AudioLayer.cpp",
"tests/Expression.cpp",
Reland "[skottie] Add image sampling and transform options" This reverts commit b81842aa283e4c5d6155b94453b81b58f5888a96. Reason for revert: reland with fixes Original change's description: > Revert "[skottie] Add image sampling and transform options" > > This reverts commit 2f24405250708f7d81b52ab88013ccae32607deb. > > Reason for revert: broke Win/shared > > Original change's description: > > [skottie] Add image sampling and transform options > > > > Expand the SkImageAsset API to support controlling sampling options and > > pass an additional transform. > > > > Bug: skia:10944, skia:10942 > > Change-Id: I7bad0b2ab58ed40fe4b425de0eb6970a4c7d7117 > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/340097 > > Commit-Queue: Florin Malita <fmalita@chromium.org> > > Commit-Queue: Florin Malita <fmalita@google.com> > > Reviewed-by: Mike Reed <reed@google.com> > > TBR=fmalita@chromium.org,fmalita@google.com,reed@google.com,aparchur@google.com > > Change-Id: I59d4161356ffdc20588f1bd3beb33c54e44807a2 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Bug: skia:10944 > Bug: skia:10942 > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/340619 > Reviewed-by: Florin Malita <fmalita@google.com> > Commit-Queue: Florin Malita <fmalita@google.com> TBR=fmalita@chromium.org,fmalita@google.com,reed@google.com,aparchur@google.com # Not skipping CQ checks because this is a reland. Bug: skia:10944 Bug: skia:10942 Change-Id: I91892f4db6366ceb07d1a49a7bc54da17cea5399 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/340657 Reviewed-by: Mike Reed <reed@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Florin Malita <fmalita@chromium.org> Commit-Queue: Florin Malita <fmalita@google.com>
2020-12-03 17:51:28 +00:00
"tests/Image.cpp",
"tests/Keyframe.cpp",
"tests/Text.cpp",
]
deps = [
":skottie",
"../..:skia",
"../..:test",
"../skshaper",
]
}
skia_source_set("fuzz") {
check_includes = false
testonly = true
configs = [ "../..:skia_private" ]
include_dirs = [
"../../tools",
"../../tools/flags",
"../../tools/fonts",
]
sources = [
"../../tools/Resources.cpp",
"../../tools/fonts/TestFontMgr.cpp",
"../../tools/fonts/TestSVGTypeface.cpp",
"../../tools/fonts/TestTypeface.cpp",
"fuzz/FuzzSkottieJSON.cpp",
]
deps = [
"../..:skia",
"../svg",
]
public_deps = [ ":skottie" ]
}
skia_source_set("tool") {
check_includes = false
testonly = true
configs = [ "../..:skia_private" ]
sources = [ "src/SkottieTool.cpp" ]
deps = [
"../..:flags",
"../..:gpu_tool_utils",
"../..:skia",
"../../experimental/ffmpeg:video_encoder",
]
public_deps = [
":skottie",
":utils",
]
}
# A couple of backend specific targets, to facilitate binary size experiments.
skia_source_set("tool_cpu") {
check_includes = false
testonly = true
configs = [ "../..:skia_private" ]
sources = [ "src/SkottieTool.cpp" ]
defines = [ "CPU_ONLY" ]
deps = [
"../..:flags",
"../..:gpu_tool_utils",
"../..:skia",
"../../experimental/ffmpeg:video_encoder",
]
public_deps = [
":skottie",
":utils",
]
}
skia_source_set("tool_gpu") {
check_includes = false
testonly = true
configs = [ "../..:skia_private" ]
sources = [ "src/SkottieTool.cpp" ]
defines = [ "GPU_ONLY" ]
deps = [
"../..:flags",
"../..:gpu_tool_utils",
"../..:skia",
"../../experimental/ffmpeg:video_encoder",
]
public_deps = [
":skottie",
":utils",
]
}
skia_source_set("gm") {
check_includes = false
testonly = true
# would be nice to have a gm_config
include_dirs = [ "../../gm" ]
configs = [ "../..:skia_private" ]
sources = [
"gm/ExternalProperties.cpp",
"gm/SkottieGM.cpp",
]
deps = [
":skottie",
":utils",
"../..:gpu_tool_utils",
"../..:skia",
"../..:tool_utils",
]
}
}
}
} else {
group("skottie") {
}
group("fuzz") {
}
group("gm") {
}
group("tests") {
}
group("utils") {
}
}