We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d168c commit 0d0851bCopy full SHA for 0d0851b
llvm/utils/gn/secondary/llvm/unittests/BUILD.gn
@@ -53,6 +53,7 @@ group("unittests") {
53
"TextAPI:TextAPITests",
54
"Transforms/Coroutines:CoroTests",
55
"Transforms/IPO:IPOTests",
56
+ "Transforms/Instrumentation:InstrumentationTests",
57
"Transforms/Scalar:ScalarTests",
58
"Transforms/Utils:UtilsTests",
59
"Transforms/Vectorize:VectorizeTests",
llvm/utils/gn/secondary/llvm/unittests/Transforms/Instrumentation/BUILD.gn
@@ -0,0 +1,14 @@
1
+import("//third-party/unittest/unittest.gni")
2
+
3
+unittest("InstrumentationTests") {
4
+ deps = [
5
+ "//llvm/lib/Analysis",
6
+ "//llvm/lib/AsmParser",
7
+ "//llvm/lib/IR",
8
+ "//llvm/lib/Transforms/Instrumentation",
9
+ "//llvm/lib/Passes",
10
+ "//llvm/lib/Support",
11
+ "//llvm/lib/Testing/Support",
12
+ ]
13
+ sources = [ "PGOInstrumentationTest.cpp" ]
14
+}
0 commit comments