From d5ce45b016df50ff40f27d827003dac83ddf0363 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 12 Mar 2024 09:43:43 -0400 Subject: [PATCH] Meta: Port recent changes to the GN build 163b6bb401c7607220559ebddf58b007d2b9f07f 3b4230e0b035dab2abdb353e1f34290c4bc912cf --- .../Userland/Libraries/LibWeb/HTML/CustomElements/BUILD.gn | 1 + Meta/gn/secondary/Userland/Libraries/LibWeb/Layout/BUILD.gn | 1 + Meta/gn/secondary/Userland/Libraries/LibWeb/Painting/BUILD.gn | 1 + 3 files changed, 3 insertions(+) diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/CustomElements/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/CustomElements/BUILD.gn index 28e1d2aee5..c89e76f88f 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/CustomElements/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/CustomElements/BUILD.gn @@ -2,6 +2,7 @@ source_set("CustomElements") { configs += [ "//Userland/Libraries/LibWeb:configs" ] deps = [ "//Userland/Libraries/LibWeb:all_generated" ] sources = [ + "CustomElementDefinition.cpp", "CustomElementName.cpp", "CustomElementReactionNames.cpp", "CustomElementRegistry.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/Layout/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/Layout/BUILD.gn index 42aa97d50b..fa87d7951d 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/Layout/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/Layout/BUILD.gn @@ -39,6 +39,7 @@ source_set("Layout") { "SVGFormattingContext.cpp", "SVGGeometryBox.cpp", "SVGGraphicsBox.cpp", + "SVGMaskBox.cpp", "SVGSVGBox.cpp", "SVGTextBox.cpp", "SVGTextPathBox.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/Painting/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/Painting/BUILD.gn index 9b5d4f6f8f..da7ebde397 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/Painting/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/Painting/BUILD.gn @@ -32,6 +32,7 @@ source_set("Painting") { "RadioButtonPaintable.cpp", "RecordingPainter.cpp", "SVGGraphicsPaintable.cpp", + "SVGMaskPaintable.cpp", "SVGPaintable.cpp", "SVGPathPaintable.cpp", "SVGSVGPaintable.cpp",