1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

Reland "[gn build] port d1d36f7ad (llvm-tapi-diff)"

This reverts commit d84ed15c649616a50abdd7fbd9b28ddebb9f432c
The original change relanded in 5b5ab80e3195.
This commit is contained in:
Nico Weber 2021-06-10 06:22:03 -04:00
parent 17058150e4
commit b706e7826c
2 changed files with 12 additions and 0 deletions

View File

@ -273,6 +273,7 @@ group("test") {
"//llvm/tools/llvm-split",
"//llvm/tools/llvm-strings",
"//llvm/tools/llvm-symbolizer:symlinks",
"//llvm/tools/llvm-tapi-diff",
"//llvm/tools/llvm-undname",
"//llvm/tools/llvm-xray",
"//llvm/tools/lto",

View File

@ -0,0 +1,11 @@
executable("llvm-tapi-diff") {
deps = [
"//llvm/lib/Object",
"//llvm/lib/Support",
"//llvm/lib/TextAPI",
]
sources = [
"llvm-tapi-diff.cpp",
"DiffEngine.cpp",
]
}