1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:27:45 +00:00

Meta: Port recent changes to gn BUILD

5c7e5cc738
a8f0fa5dd4
0d417cd604
5b87d26027
 (and other friends from the JIT PR)
f915aa70cd
This commit is contained in:
Andrew Kaster 2023-10-27 14:26:41 -06:00 committed by Andrew Kaster
parent d8ab9ed87c
commit faa8ef98c9
12 changed files with 146 additions and 63 deletions

View file

@ -11,6 +11,7 @@ shared_library("LibJS") {
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibCrypto",
"//Userland/Libraries/LibFileSystem",
"//Userland/Libraries/LibJIT",
"//Userland/Libraries/LibLocale",
"//Userland/Libraries/LibRegex",
"//Userland/Libraries/LibSyntax",
@ -21,6 +22,7 @@ shared_library("LibJS") {
"Bytecode/ASTCodegen.cpp",
"Bytecode/BasicBlock.cpp",
"Bytecode/CodeGenerationError.cpp",
"Bytecode/CommonImplementations.cpp",
"Bytecode/Executable.cpp",
"Bytecode/Generator.cpp",
"Bytecode/IdentifierTable.cpp",
@ -41,6 +43,8 @@ shared_library("LibJS") {
"Heap/Heap.cpp",
"Heap/HeapBlock.cpp",
"Heap/MarkedVector.cpp",
"JIT/Compiler.cpp",
"JIT/NativeExecutable.cpp",
"Lexer.cpp",
"MarkupGenerator.cpp",
"Module.cpp",