File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
llvm/utils/gn/secondary/llvm Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -286,6 +286,7 @@ group("test") {
286
286
" //llvm/tools/llvm-strings" ,
287
287
" //llvm/tools/llvm-symbolizer:symlinks" ,
288
288
" //llvm/tools/llvm-tapi-diff" ,
289
+ " //llvm/tools/llvm-tli-checker" ,
289
290
" //llvm/tools/llvm-undname" ,
290
291
" //llvm/tools/llvm-xray" ,
291
292
" //llvm/tools/lto" ,
Original file line number Diff line number Diff line change
1
+ import (" //llvm/utils/TableGen/tablegen.gni" )
2
+
3
+ tablegen (" Opts" ) {
4
+ visibility = [ " :llvm-tli-checker" ]
5
+ args = [ " -gen-opt-parser-defs" ]
6
+ }
7
+
8
+ executable (" llvm-tli-checker" ) {
9
+ deps = [
10
+ " :Opts" ,
11
+ " //llvm/lib/Analysis" ,
12
+ " //llvm/lib/BinaryFormat" ,
13
+ " //llvm/lib/Bitcode/Reader" ,
14
+ " //llvm/lib/Bitstream/Reader" ,
15
+ " //llvm/lib/Demangle" ,
16
+ " //llvm/lib/IR" ,
17
+ " //llvm/lib/MC" ,
18
+ " //llvm/lib/MC/MCParser" ,
19
+ " //llvm/lib/Object" ,
20
+ " //llvm/lib/Option" ,
21
+ " //llvm/lib/Remarks" ,
22
+ " //llvm/lib/Support" ,
23
+ " //llvm/lib/TextAPI" ,
24
+ ]
25
+ sources = [ " llvm-tli-checker.cpp" ]
26
+ }
You can’t perform that action at this time.
0 commit comments