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") {
5050 " TableGen:TableGenTests" ,
5151 " Target:TargetMachineCTests" ,
5252 " TargetParser:TargetParserTests" ,
53+ " Telemetry:TelemetryTests" ,
5354 " Testing/ADT:TestingADTTests" ,
5455 " Testing/Support:TestingSupportTests" ,
5556 " 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