Skip to content

Commit f0cda71

Browse files
committed
[gn build] (manually) port 4a16fe1 (debuginfod)
1 parent 1feb8ab commit f0cda71

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
static_library("Debuginfod") {
2+
output_name = "LLVMDebuginfod"
3+
deps = [ "//llvm/lib/Support" ]
4+
sources = [ "Debuginfod.cpp" ]
5+
}

llvm/utils/gn/secondary/llvm/unittests/BUILD.gn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ group("unittests") {
1515
"DebugInfo/GSYM:DebugInfoGSYMTests",
1616
"DebugInfo/MSF:DebugInfoMSFTests",
1717
"DebugInfo/PDB:DebugInfoPDBTests",
18+
"Debuginfod:DebuginfodTests",
1819
"Demangle:DemangleTests",
1920
"ExecutionEngine:ExecutionEngineTests",
2021
"ExecutionEngine/JITLink:JITLinkTests",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import("//llvm/utils/unittest/unittest.gni")
2+
3+
unittest("DebuginfodTests") {
4+
deps = [
5+
"//llvm/lib/Debuginfod",
6+
"//llvm/lib/Testing/Support",
7+
]
8+
sources = [ "DebuginfodTests.cpp" ]
9+
}

0 commit comments

Comments
 (0)