mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 09:55:06 +00:00

This ports the following commits:848ec538c6
703c2bb06e
27dd2a40ad
daefe744ba
9812031a02
4c0816b002
8bb275f2ea
3f122b7335
52 lines
1.2 KiB
Text
52 lines
1.2 KiB
Text
source_set("Layout") {
|
|
configs += [ "//Userland/Libraries/LibWeb:configs" ]
|
|
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
|
|
include_dirs = [
|
|
"//Userland/", # For LibGUI needing WindowServer types
|
|
]
|
|
sources = [
|
|
"AudioBox.cpp",
|
|
"AvailableSpace.cpp",
|
|
"BlockContainer.cpp",
|
|
"BlockFormattingContext.cpp",
|
|
"Box.cpp",
|
|
"BoxModelMetrics.cpp",
|
|
"BreakNode.cpp",
|
|
"ButtonBox.cpp",
|
|
"CanvasBox.cpp",
|
|
"CheckBox.cpp",
|
|
"FlexFormattingContext.cpp",
|
|
"FormattingContext.cpp",
|
|
"FrameBox.cpp",
|
|
"GridFormattingContext.cpp",
|
|
"ImageBox.cpp",
|
|
"InlineFormattingContext.cpp",
|
|
"InlineLevelIterator.cpp",
|
|
"InlineNode.cpp",
|
|
"Label.cpp",
|
|
"LabelableNode.cpp",
|
|
"LayoutState.cpp",
|
|
"LineBox.cpp",
|
|
"LineBoxFragment.cpp",
|
|
"LineBuilder.cpp",
|
|
"ListItemBox.cpp",
|
|
"ListItemMarkerBox.cpp",
|
|
"Node.cpp",
|
|
"Progress.cpp",
|
|
"RadioButton.cpp",
|
|
"ReplacedBox.cpp",
|
|
"SVGBox.cpp",
|
|
"SVGFormattingContext.cpp",
|
|
"SVGGeometryBox.cpp",
|
|
"SVGGraphicsBox.cpp",
|
|
"SVGSVGBox.cpp",
|
|
"SVGTextBox.cpp",
|
|
"TableFormattingContext.cpp",
|
|
"TableGrid.cpp",
|
|
"TableWrapper.cpp",
|
|
"TextNode.cpp",
|
|
"TreeBuilder.cpp",
|
|
"VideoBox.cpp",
|
|
"Viewport.cpp",
|
|
]
|
|
}
|