1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:17:34 +00:00

Meta: Port recent changes to gn build

299d35aadc
7d9fe44039
58f08107b0
2cb0039a13
bc70144df1
48a9d0ede8
149e382735
This commit is contained in:
Andrew Kaster 2023-12-12 20:25:27 -07:00 committed by Andrew Kaster
parent e0f990f1cb
commit 6e4d5b310f
5 changed files with 75 additions and 4 deletions

View file

@ -0,0 +1,22 @@
shared_library("LibELF") {
output_name = "elf"
include_dirs = [ "//Userland/Libraries" ]
sources = [
"AuxiliaryVector.h",
"Core.h",
"ELFABI.h",
"ELFBuild.cpp",
"ELFBuild.h",
"Hashes.h",
"Image.cpp",
"Image.h",
"Relocation.cpp",
"Relocation.h",
"Validation.cpp",
"Validation.h",
]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
]
}