forked from OSchip/llvm-project
parent
7d4023b5e7
commit
056a8ba483
|
@ -15,6 +15,7 @@ static_library("ObjectYAML") {
|
|||
"DWARFYAML.cpp",
|
||||
"ELFYAML.cpp",
|
||||
"MachOYAML.cpp",
|
||||
"MinidumpYAML.cpp",
|
||||
"ObjectYAML.cpp",
|
||||
"WasmYAML.cpp",
|
||||
"YAML.cpp",
|
||||
|
|
|
@ -10,6 +10,7 @@ executable("yaml2obj") {
|
|||
"yaml2coff.cpp",
|
||||
"yaml2elf.cpp",
|
||||
"yaml2macho.cpp",
|
||||
"yaml2minidump.cpp",
|
||||
"yaml2obj.cpp",
|
||||
"yaml2wasm.cpp",
|
||||
]
|
||||
|
|
|
@ -2,9 +2,12 @@ import("//llvm/utils/unittest/unittest.gni")
|
|||
|
||||
unittest("ObjectYAMLTests") {
|
||||
deps = [
|
||||
"//llvm/lib/Object",
|
||||
"//llvm/lib/ObjectYAML",
|
||||
"//llvm/lib/Testing/Support",
|
||||
]
|
||||
sources = [
|
||||
"MinidumpYAMLTest.cpp",
|
||||
"YAMLTest.cpp",
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue