From 7e51d6e07d0d0b76cd5c2d19504cbdb2c12cd0e9 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 17 Apr 2024 11:14:49 -0400 Subject: [PATCH] Meta: Port recent changes to the GN build e487f70bbf96abe4ff01fcbe4c68b8ae7afbcf8f f4f4f7781d2a1e5f31632751bf6eb6b1ba833945 --- .../secondary/Userland/Libraries/LibWeb/HTML/Scripting/BUILD.gn | 2 ++ Meta/gn/secondary/Userland/Libraries/LibWeb/WebIDL/BUILD.gn | 1 + 2 files changed, 3 insertions(+) diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/Scripting/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/Scripting/BUILD.gn index ddedee6bbc7..95734e7a15d 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/Scripting/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/HTML/Scripting/BUILD.gn @@ -7,6 +7,8 @@ source_set("Scripting") { "Environments.cpp", "ExceptionReporter.cpp", "Fetching.cpp", + "ImportMap.cpp", + "ImportMapParseResult.cpp", "ModuleMap.cpp", "ModuleScript.cpp", "Script.cpp", diff --git a/Meta/gn/secondary/Userland/Libraries/LibWeb/WebIDL/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibWeb/WebIDL/BUILD.gn index e2bb3768c1d..cb6c5e91161 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibWeb/WebIDL/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibWeb/WebIDL/BUILD.gn @@ -9,5 +9,6 @@ source_set("WebIDL") { "ObservableArray.cpp", "OverloadResolution.cpp", "Promise.cpp", + "Tracing.cpp", ] }