File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed
llvm/utils/gn/secondary/llvm Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ static_library (" Telemetry" ) {
2
+ output_name = " LLVMTelemetry"
3
+ deps = [ " //llvm/lib/Support" ]
4
+ sources = [ " Telemetry.cpp" ]
5
+ }
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ group("unittests") {
50
50
" TableGen:TableGenTests" ,
51
51
" Target:TargetMachineCTests" ,
52
52
" TargetParser:TargetParserTests" ,
53
+ " Telemetry:TelemetryTests" ,
53
54
" Testing/ADT:TestingADTTests" ,
54
55
" Testing/Support:TestingSupportTests" ,
55
56
" TextAPI:TextAPITests" ,
Original file line number Diff line number Diff line change
1
+ import (" //third-party/unittest/unittest.gni" )
2
+
3
+ unittest (" TelemetryTests" ) {
4
+ deps = [
5
+ " //llvm/lib/IR" ,
6
+ " //llvm/lib/Support" ,
7
+ " //llvm/lib/Telemetry" ,
8
+ ]
9
+ sources = [ " TelemetryTest.cpp" ]
10
+ }
You can’t perform that action at this time.
0 commit comments