1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 17:25:09 +00:00
serenity/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn
2024-01-25 21:34:03 +01:00

46 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",
"SVGAnimatedRect.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",
]
}