From 285df77fb8abe8d3a5201d2387b4f83407b2e484 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Tue, 5 Mar 2024 10:00:18 -0700 Subject: [PATCH] Meta: Port recent changes to the GN build 5b29974bfa9b14224c5a1dc4feb41e22eda1e0f2 c5860d1d706897f1534266c96ccd401c6376e0a4 --- Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn index e7218544ef..17b112e80a 100644 --- a/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn +++ b/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn @@ -33,6 +33,12 @@ shared_library("LibJS") { "Bytecode/IdentifierTable.cpp", "Bytecode/Instruction.cpp", "Bytecode/Interpreter.cpp", + "Bytecode/Pass/DumpCFG.cpp", + "Bytecode/Pass/GenerateCFG.cpp", + "Bytecode/Pass/MergeBlocks.cpp", + "Bytecode/Pass/Peephole.cpp", + "Bytecode/Pass/PlaceBlocks.cpp", + "Bytecode/Pass/UnifySameBlocks.cpp", "Bytecode/RegexTable.cpp", "Bytecode/StringTable.cpp", "Console.cpp",