1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00
serenity/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn
2023-12-30 18:50:29 +01:00

45 lines
1.2 KiB
Text

source_set("SVG") {
configs += [ "//Userland/Libraries/LibWeb:configs" ]
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
sources = [
"AttributeNames.cpp",
"AttributeParser.cpp",
"SVGAnimatedLength.cpp",
"SVGAnimatedNumber.cpp",
"SVGAnimatedString.cpp",
"SVGCircleElement.cpp",
"SVGClipPathElement.cpp",
"SVGDecodedImageData.cpp",
"SVGDefsElement.cpp",
"SVGElement.cpp",
"SVGEllipseElement.cpp",
"SVGForeignObjectElement.cpp",
"SVGGElement.cpp",
"SVGGeometryElement.cpp",
"SVGGradientElement.cpp",
"SVGGraphicsElement.cpp",
"SVGLength.cpp",
"SVGLineElement.cpp",
"SVGLinearGradientElement.cpp",
"SVGMaskElement.cpp",
"SVGPathElement.cpp",
"SVGPolygonElement.cpp",
"SVGPolylineElement.cpp",
"SVGRadialGradientElement.cpp",
"SVGRectElement.cpp",
"SVGSVGElement.cpp",
"SVGScriptElement.cpp",
"SVGStopElement.cpp",
"SVGStyleElement.cpp",
"SVGSymbolElement.cpp",
"SVGTSpanElement.cpp",
"SVGTextContentElement.cpp",
"SVGTextElement.cpp",
"SVGTextPathElement.cpp",
"SVGTextPositioningElement.cpp",
"SVGTitleElement.cpp",
"SVGUseElement.cpp",
"TagNames.cpp",
"ViewBox.cpp",
]
}