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