repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[lit] Improve lit.Run class
[llvm-complete.git]
/
utils
/
gn
/
secondary
/
llvm
/
tools
/
llvm-lipo
/
BUILD.gn
blob
28f762d5005485590e8e2236ff0b31832a83aeaf
1
import("//llvm/utils/TableGen/tablegen.gni")
2
3
tablegen("LipoOpts") {
4
visibility = [ ":llvm-lipo" ]
5
args = [ "-gen-opt-parser-defs" ]
6
}
7
8
executable("llvm-lipo") {
9
deps = [
10
":LipoOpts",
11
"//llvm/lib/Object",
12
"//llvm/lib/Option",
13
"//llvm/lib/Support",
14
"//llvm/lib/Target:TargetsToBuild",
15
]
16
sources = [
17
"llvm-lipo.cpp",
18
]
19
}