mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 17:15:07 +00:00
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",
|
|
"RadioButton.cpp",
|
|
"ReplacedBox.cpp",
|
|
"SVGBox.cpp",
|
|
"SVGFormattingContext.cpp",
|
|
"SVGGeometryBox.cpp",
|
|
"SVGGraphicsBox.cpp",
|
|
"SVGSVGBox.cpp",
|
|
"SVGTextBox.cpp",
|
|
"SVGTextPathBox.cpp",
|
|
"TableFormattingContext.cpp",
|
|
"TableGrid.cpp",
|
|
"TableWrapper.cpp",
|
|
"TextNode.cpp",
|
|
"TreeBuilder.cpp",
|
|
"VideoBox.cpp",
|
|
"Viewport.cpp",
|
|
]
|
|
}
|