Newer
Older
minerva / Meta / gn / secondary / Userland / Libraries / LibX86 / BUILD.gn
@minerva minerva on 13 Jul 291 bytes Initial commit
shared_library("LibX86") {
  output_name = "x86"
  include_dirs = [ "//Userland/Libraries" ]

  deps = [
    "//AK",
    "//Userland/Libraries/LibCore",
  ]
  sources = [
    "Disassembler.h",
    "ELFSymbolProvider.h",
    "Instruction.cpp",
    "Instruction.h",
    "Interpreter.h",
  ]
}