From b5ebbe6159fc65f3237ab40050c578086a4a9456 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 9 Apr 2024 18:18:44 -0400 Subject: [PATCH] Meta: Port recent changes to the GN build 676fc5e8c61148fc0e9f5969681913499ddb7b7c b873e5bc1df6f07cc70b18b77494c9956f6c1d8d --- Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/BUILD.gn | 1 + Meta/gn/secondary/Userland/Libraries/LibWeb/UIEvents/BUILD.gn | 1 + Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni | 2 ++ 3 files changed, 4 insertions(+) diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/BUILD.gn index a0189875d39..242a8d1f9d6 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/BUILD.gn @@ -114,6 +114,7 @@ source_set("HTML") { "HTMLUnknownElement.cpp", "HTMLVideoElement.cpp", "History.cpp", + "ImageBitmap.cpp", "ImageData.cpp", "ImageRequest.cpp", "ListOfAvailableImages.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/UIEvents/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/UIEvents/BUILD.gn index 04d82ebc593..c8559c8a05b 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/UIEvents/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/UIEvents/BUILD.gn @@ -9,6 +9,7 @@ source_set("UIEvents") { "FocusEvent.cpp", "KeyboardEvent.cpp", "MouseEvent.cpp", + "PointerEvent.cpp", "UIEvent.cpp", "WheelEvent.cpp", ] diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni b/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni index 707a87df13a..2d905ff3bff 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/idl_files.gni @@ -192,6 +192,7 @@ standard_idl_files = [ "//Userland/Libraries/LibWeb/HTML/HTMLUListElement.idl", "//Userland/Libraries/LibWeb/HTML/HTMLUnknownElement.idl", "//Userland/Libraries/LibWeb/HTML/HTMLVideoElement.idl", + "//Userland/Libraries/LibWeb/HTML/ImageBitmap.idl", "//Userland/Libraries/LibWeb/HTML/ImageData.idl", "//Userland/Libraries/LibWeb/HTML/Location.idl", "//Userland/Libraries/LibWeb/HTML/MediaError.idl", @@ -292,6 +293,7 @@ standard_idl_files = [ "//Userland/Libraries/LibWeb/UIEvents/FocusEvent.idl", "//Userland/Libraries/LibWeb/UIEvents/KeyboardEvent.idl", "//Userland/Libraries/LibWeb/UIEvents/MouseEvent.idl", + "//Userland/Libraries/LibWeb/UIEvents/PointerEvent.idl", "//Userland/Libraries/LibWeb/UIEvents/UIEvent.idl", "//Userland/Libraries/LibWeb/UIEvents/WheelEvent.idl", "//Userland/Libraries/LibWeb/UserTiming/PerformanceMark.idl",