[gn build] (manually) merge d054c7ee2e

This commit is contained in:
Nico Weber 2020-07-23 22:28:00 -04:00
parent d054c7ee2e
commit ab73b6da95
3 changed files with 6 additions and 0 deletions

View File

@ -78,6 +78,7 @@ group("test") {
":lit_unit_site_cfg",
"//lld/tools/lld:symlinks",
"//lld/unittests",
"//llvm/tools/extract",
"//llvm/tools/llc",
"//llvm/tools/llvm-ar:symlinks",
"//llvm/tools/llvm-as",

View File

@ -203,6 +203,7 @@ group("test") {
"//llvm/lib/Testing/Support",
"//llvm/tools/bugpoint",
"//llvm/tools/dsymutil",
"//llvm/tools/extract",
"//llvm/tools/llc",
"//llvm/tools/lli",
"//llvm/tools/lli/ChildTarget:lli-child-target",

View File

@ -0,0 +1,4 @@
executable("extract") {
deps = [ "//llvm/lib/Support" ]
sources = [ "extract.cpp" ]
}