diff --git a/Meta/gn/secondary/Ladybird/WebContent/BUILD.gn b/Meta/gn/secondary/Ladybird/WebContent/BUILD.gn index 8faf106fe3..81e79de989 100644 --- a/Meta/gn/secondary/Ladybird/WebContent/BUILD.gn +++ b/Meta/gn/secondary/Ladybird/WebContent/BUILD.gn @@ -74,5 +74,6 @@ executable("WebContent") { if (current_os == "linux" || current_os == "mac") { cflags_cc = [ "-DHAS_ACCELERATED_GRAPHICS" ] + deps += [ "//Userland/Libraries/LibAccelGfx" ] } } diff --git a/Meta/gn/secondary/Tests/AK/BUILD.gn b/Meta/gn/secondary/Tests/AK/BUILD.gn index b064999b47..e3c336a7fc 100644 --- a/Meta/gn/secondary/Tests/AK/BUILD.gn +++ b/Meta/gn/secondary/Tests/AK/BUILD.gn @@ -21,7 +21,7 @@ tests = [ "TestCircularDeque", "TestCircularQueue", "TestComplex", - "TestDeprecatedString", + "TestByteString", "TestDisjointChunks", "TestDistinctNumeric", "TestDoublyLinkedList", diff --git a/Meta/gn/secondary/Userland/Libraries/LibGfx/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibGfx/BUILD.gn index 2667f9169f..ad9ffa6e10 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibGfx/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibGfx/BUILD.gn @@ -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", diff --git a/Meta/gn/secondary/Userland/Libraries/LibLine/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibLine/BUILD.gn index 9982c1b5e7..6839611fb2 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibLine/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibLine/BUILD.gn @@ -4,6 +4,7 @@ shared_library("LibLine") { deps = [ "//AK", "//Userland/Libraries/LibCore", + "//Userland/Libraries/LibUnicode", ] sources = [ "Editor.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/Layout/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/Layout/BUILD.gn index feecc84d2e..d0028cd43d 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/Layout/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/Layout/BUILD.gn @@ -40,6 +40,7 @@ source_set("Layout") { "SVGGraphicsBox.cpp", "SVGSVGBox.cpp", "SVGTextBox.cpp", + "SVGTextPathBox.cpp", "TableFormattingContext.cpp", "TableGrid.cpp", "TableWrapper.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn index 13562e8102..b68775eded 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn @@ -34,6 +34,7 @@ source_set("SVG") { "SVGTSpanElement.cpp", "SVGTextContentElement.cpp", "SVGTextElement.cpp", + "SVGTextPathElement.cpp", "SVGTextPositioningElement.cpp", "SVGTitleElement.cpp", "SVGUseElement.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni b/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni index 077cd3c5aa..4c19d81532 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni @@ -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",