diff --git a/Meta/gn/secondary/AK/BUILD.gn b/Meta/gn/secondary/AK/BUILD.gn index 0d1a5cd9d7..3d07c0363a 100644 --- a/Meta/gn/secondary/AK/BUILD.gn +++ b/Meta/gn/secondary/AK/BUILD.gn @@ -135,6 +135,7 @@ source_set("AK") { "Singleton.h", "SinglyLinkedList.h", "SinglyLinkedListSizePolicy.h", + "SipHash.h", "SourceGenerator.h", "SourceLocation.h", "Span.h", @@ -210,6 +211,7 @@ source_set("sources") { "NumberFormat.cpp", "OptionParser.cpp", "Random.cpp", + "SipHash.cpp", "StackInfo.cpp", "Stream.cpp", "String.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn index 113c786b0d..acce50cc2d 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn @@ -26,7 +26,6 @@ shared_library("LibJS") { "Bytecode/IdentifierTable.cpp", "Bytecode/Instruction.cpp", "Bytecode/Interpreter.cpp", - "Bytecode/Op.cpp", "Bytecode/RegexTable.cpp", "Bytecode/StringTable.cpp", "Console.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/BUILD.gn index 2b572bc17b..9a47322fed 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/BUILD.gn @@ -258,6 +258,7 @@ source_set("all_generated") { ":generate_default_stylesheet_source", ":generate_mathml_stylesheet_source", ":generate_quirks_mode_stylesheet_source", + ":generate_svg_stylesheet_source", ":generate_window_or_worker_interfaces", ] configs += [ ":configs" ] diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/DOM/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/DOM/BUILD.gn index eeff9e4fc8..36f843a120 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/DOM/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/DOM/BUILD.gn @@ -52,5 +52,6 @@ source_set("DOM") { "StyleElementUtils.cpp", "Text.cpp", "TreeWalker.cpp", + "XMLDocument.cpp", ] } diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn index 41ce4ec14a..13562e8102 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/SVG/BUILD.gn @@ -27,6 +27,7 @@ source_set("SVG") { "SVGRadialGradientElement.cpp", "SVGRectElement.cpp", "SVGSVGElement.cpp", + "SVGScriptElement.cpp", "SVGStopElement.cpp", "SVGStyleElement.cpp", "SVGSymbolElement.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni b/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni index 5294fd9f6a..830fd88fab 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni @@ -254,6 +254,7 @@ standard_idl_files = [ "//Userland/Libraries/LibWeb/SVG/SVGRadialGradientElement.idl", "//Userland/Libraries/LibWeb/SVG/SVGRectElement.idl", "//Userland/Libraries/LibWeb/SVG/SVGSVGElement.idl", + "//Userland/Libraries/LibWeb/SVG/SVGScriptElement.idl", "//Userland/Libraries/LibWeb/SVG/SVGStopElement.idl", "//Userland/Libraries/LibWeb/SVG/SVGStyleElement.idl", "//Userland/Libraries/LibWeb/SVG/SVGSymbolElement.idl",