1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00
Timothy Flynn 2023-11-13 16:13:09 -05:00 committed by Tim Flynn
parent 6ac57448af
commit 652bbe172b
11 changed files with 56 additions and 8 deletions

View file

@ -0,0 +1,18 @@
source_set("Animations") {
configs += [ "//Userland/Libraries/LibWeb:configs" ]
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
sources = [
"Animation.cpp",
"Animation.h",
"AnimationEffect.cpp",
"AnimationEffect.h",
"AnimationPlaybackEvent.cpp",
"AnimationPlaybackEvent.h",
"AnimationTimeline.cpp",
"AnimationTimeline.h",
"DocumentTimeline.cpp",
"DocumentTimeline.h",
"TimingFunction.cpp",
"TimingFunction.h",
]
}