1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 17:44:56 +09:00

Meta: Port recent changes to the GN build

5e1499d104
36f0499cc8
64912d4d02
809c5b0b03
This commit is contained in:
Timothy Flynn 2023-12-23 08:42:49 -05:00 committed by Andreas Kling
parent 7233d5ed3e
commit ef6d1dbd4d
Notes: sideshowbarker 2024-07-17 01:23:08 +09:00
7 changed files with 7 additions and 1 deletions

View file

@ -74,5 +74,6 @@ executable("WebContent") {
if (current_os == "linux" || current_os == "mac") {
cflags_cc = [ "-DHAS_ACCELERATED_GRAPHICS" ]
deps += [ "//Userland/Libraries/LibAccelGfx" ]
}
}

View file

@ -21,7 +21,7 @@ tests = [
"TestCircularDeque",
"TestCircularQueue",
"TestComplex",
"TestDeprecatedString",
"TestByteString",
"TestDisjointChunks",
"TestDistinctNumeric",
"TestDoublyLinkedList",

View file

@ -64,6 +64,7 @@ shared_library("LibGfx") {
"ImageFormats/BMPLoader.cpp",
"ImageFormats/BMPWriter.cpp",
"ImageFormats/BooleanDecoder.cpp",
"ImageFormats/CCITTDecoder.cpp",
"ImageFormats/DDSLoader.cpp",
"ImageFormats/GIFLoader.cpp",
"ImageFormats/ICOLoader.cpp",

View file

@ -4,6 +4,7 @@ shared_library("LibLine") {
deps = [
"//AK",
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibUnicode",
]
sources = [
"Editor.cpp",

View file

@ -40,6 +40,7 @@ source_set("Layout") {
"SVGGraphicsBox.cpp",
"SVGSVGBox.cpp",
"SVGTextBox.cpp",
"SVGTextPathBox.cpp",
"TableFormattingContext.cpp",
"TableGrid.cpp",
"TableWrapper.cpp",

View file

@ -34,6 +34,7 @@ source_set("SVG") {
"SVGTSpanElement.cpp",
"SVGTextContentElement.cpp",
"SVGTextElement.cpp",
"SVGTextPathElement.cpp",
"SVGTextPositioningElement.cpp",
"SVGTitleElement.cpp",
"SVGUseElement.cpp",

View file

@ -268,6 +268,7 @@ standard_idl_files = [
"//Userland/Libraries/LibWeb/SVG/SVGSymbolElement.idl",
"//Userland/Libraries/LibWeb/SVG/SVGTextContentElement.idl",
"//Userland/Libraries/LibWeb/SVG/SVGTextElement.idl",
"//Userland/Libraries/LibWeb/SVG/SVGTextPathElement.idl",
"//Userland/Libraries/LibWeb/SVG/SVGTextPositioningElement.idl",
"//Userland/Libraries/LibWeb/SVG/SVGTitleElement.idl",
"//Userland/Libraries/LibWeb/SVG/SVGTSpanElement.idl",