We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b95f0 commit 374fd40Copy full SHA for 374fd40
llvm/utils/gn/secondary/llvm/unittests/BUILD.gn
@@ -57,6 +57,7 @@ group("unittests") {
57
"tools/llvm-cfi-verify:CFIVerifyTests",
58
"tools/llvm-exegesis:LLVMExegesisTests",
59
"tools/llvm-mca:LLVMMCATests",
60
+ "tools/llvm-profdata:LLVMProfdataTests",
61
"tools/llvm-profgen:LLVMProfgenTests",
62
"//llvm/lib/TargetParser",
63
]
llvm/utils/gn/secondary/llvm/unittests/tools/llvm-profdata/BUILD.gn
@@ -0,0 +1,10 @@
1
+import("//third-party/unittest/unittest.gni")
2
+
3
+unittest("LLVMProfdataTests") {
4
+ deps = [
5
+ "//llvm/lib/ProfileData",
6
+ "//llvm/lib/Support",
7
+ "//llvm/lib/Testing/Support",
8
+ ]
9
+ sources = [ "OutputSizeLimitTest.cpp" ]
10
+}
0 commit comments