set(LLVM_LINK_COMPONENTS Symbolize)
-add_llvm_unittest(DebugInfoSymbolizerTests MarkupTest.cpp)
+add_llvm_unittest(DebugInfoSymbolizerTests
+ MarkupTest.cpp
+ )
target_link_libraries(DebugInfoSymbolizerTests PRIVATE LLVMTestingSupport)
"DebugInfo/GSYM:DebugInfoGSYMTests",
"DebugInfo/MSF:DebugInfoMSFTests",
"DebugInfo/PDB:DebugInfoPDBTests",
+ "DebugInfo/Symbolizer:DebugInfoSymbolizerTests",
"Debuginfod:DebuginfodTests",
"Demangle:DemangleTests",
"ExecutionEngine:ExecutionEngineTests",
--- /dev/null
+import("//llvm/utils/unittest/unittest.gni")
+
+unittest("DebugInfoSymbolizerTests") {
+ deps = [
+ "//llvm/lib/DebugInfo/Symbolize",
+ "//llvm/lib/Testing/Support",
+ ]
+ sources = [ "MarkupTest.cpp" ]
+}