diff --git a/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn b/Meta/gn/secondary/Userland/Libraries/LibJS/BUILD.gn index e7218544ef3..17b112e80ab 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",