ladybird/Meta/gn/secondary/Userland/Libraries/LibWeb/Animations/BUILD.gn
Sam Atkins b0e58054aa LibWeb: Add pseudoElement parameter to GetAnimationsOptions
This corresponds to: https://github.com/w3c/csswg-drafts/pull/11050

For now, we don't do anything useful with this parameter, because we
don't yet support animating pseudo-elements.
2024-11-09 15:32:03 +01:00

22 lines
581 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",
"PseudoElementParsing.cpp",
"PseudoElementParsing.h",
]
}