Meta: Remove unused (and non-existent) linkages from the GN build

This commit is contained in:
Timothy Flynn 2024-06-03 19:54:11 -04:00 committed by Andreas Kling
parent 0cb1564615
commit d28412ed34
Notes: sideshowbarker 2024-07-17 09:48:50 +09:00
2 changed files with 1 additions and 5 deletions

View file

@ -66,7 +66,6 @@ executable("ladybird_executable") {
"//AK",
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibFileSystem",
"//Userland/Libraries/LibGUI",
"//Userland/Libraries/LibGfx",
"//Userland/Libraries/LibIPC",
"//Userland/Libraries/LibImageDecoderClient",

View file

@ -12,16 +12,13 @@ shared_library("LibJS") {
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibCrypto",
"//Userland/Libraries/LibFileSystem",
"//Userland/Libraries/LibJIT",
"//Userland/Libraries/LibLocale",
"//Userland/Libraries/LibRegex",
"//Userland/Libraries/LibSyntax",
"//Userland/Libraries/LibTimeZone",
"//Userland/Libraries/LibUnicode",
]
if (current_cpu == "x86" || current_cpu == "x64") {
deps += [ "//Userland/Libraries/LibX86" ]
}
sources = [
"AST.cpp",
"Bytecode/ASTCodegen.cpp",