Skip to content

Commit 0d0851b

Browse files
committed
[gn] port 8c33b33 (InstrumentationTests)
1 parent 08d168c commit 0d0851b

File tree

2 files changed

+15
-0
lines changed
  • llvm/utils/gn/secondary/llvm/unittests

2 files changed

+15
-0
lines changed

llvm/utils/gn/secondary/llvm/unittests/BUILD.gn

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ group("unittests") {
5353
"TextAPI:TextAPITests",
5454
"Transforms/Coroutines:CoroTests",
5555
"Transforms/IPO:IPOTests",
56+
"Transforms/Instrumentation:InstrumentationTests",
5657
"Transforms/Scalar:ScalarTests",
5758
"Transforms/Utils:UtilsTests",
5859
"Transforms/Vectorize:VectorizeTests",
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)