1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:37:45 +00:00

Meta: Add gn build rules for LibWeb

This commit is contained in:
Andrew Kaster 2023-05-05 13:05:39 -06:00 committed by Andrew Kaster
parent 7b3d0fb002
commit 85c8cd5205
60 changed files with 1966 additions and 0 deletions

View file

@ -0,0 +1,39 @@
source_set("Painting") {
configs += [ "//Userland/Libraries/LibWeb:configs" ]
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
include_dirs = [
"//Userland/", # For LibGfx needing LibGUI needing WindowServer types
]
sources = [
"AudioPaintable.cpp",
"BackgroundPainting.cpp",
"BorderPainting.cpp",
"BorderRadiusCornerClipper.cpp",
"ButtonPaintable.cpp",
"CanvasPaintable.cpp",
"CheckBoxPaintable.cpp",
"FilterPainting.cpp",
"GradientPainting.cpp",
"ImagePaintable.cpp",
"InlinePaintable.cpp",
"LabelablePaintable.cpp",
"MarkerPaintable.cpp",
"MediaPaintable.cpp",
"NestedBrowsingContextPaintable.cpp",
"PaintContext.cpp",
"Paintable.cpp",
"PaintableBox.cpp",
"ProgressPaintable.cpp",
"RadioButtonPaintable.cpp",
"SVGGeometryPaintable.cpp",
"SVGGraphicsPaintable.cpp",
"SVGPaintable.cpp",
"SVGSVGPaintable.cpp",
"SVGTextPaintable.cpp",
"ShadowPainting.cpp",
"StackingContext.cpp",
"TableBordersPainting.cpp",
"TextPaintable.cpp",
"VideoPaintable.cpp",
]
}