mirror of
https://github.com/RGBCube/serenity
synced 2025-07-31 06:07:44 +00:00
22 lines
569 B
Text
22 lines
569 B
Text
source_set("Animations") {
|
|
configs += [ "//Userland/Libraries/LibWeb:configs" ]
|
|
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
|
|
sources = [
|
|
"Animatable.cpp",
|
|
"Animatable.h",
|
|
"Animation.cpp",
|
|
"Animation.h",
|
|
"AnimationEffect.cpp",
|
|
"AnimationEffect.h",
|
|
"AnimationPlaybackEvent.cpp",
|
|
"AnimationPlaybackEvent.h",
|
|
"AnimationTimeline.cpp",
|
|
"AnimationTimeline.h",
|
|
"DocumentTimeline.cpp",
|
|
"DocumentTimeline.h",
|
|
"KeyframeEffect.cpp",
|
|
"KeyframeEffect.h",
|
|
"TimingFunction.cpp",
|
|
"TimingFunction.h",
|
|
]
|
|
}
|