Skip to content

Commit 7b2b3fa

Browse files
committed
[gn build] Port 6767555 (ParseTests)
1 parent 69f59d5 commit 7b2b3fa

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

llvm/utils/gn/secondary/clang/lib/Parse/BUILD.gn

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ static_library("Parse") {
2222
"ParseExpr.cpp",
2323
"ParseExprCXX.cpp",
2424
"ParseHLSL.cpp",
25+
"ParseHLSLRootSignature.cpp",
2526
"ParseInit.cpp",
2627
"ParseObjc.cpp",
2728
"ParseOpenACC.cpp",

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ group("unittests") {
1616
"InstallAPI:InstallAPITests",
1717
"Interpreter:ClangReplInterpreterTests",
1818
"Lex:LexTests",
19+
"Parse:ParseTests",
1920
"Rewrite:RewriteTests",
2021
"Sema:SemaTests",
2122
"Serialization:SerializationTests",
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import("//third-party/unittest/unittest.gni")
2+
3+
unittest("ParseTests") {
4+
configs += [ "//llvm/utils/gn/build:clang_code" ]
5+
deps = [
6+
"//clang/lib/AST",
7+
"//clang/lib/Basic",
8+
"//clang/lib/Lex",
9+
"//clang/lib/Parse",
10+
"//clang/lib/Sema",
11+
"//llvm/lib/Support",
12+
"//llvm/lib/Testing/Support",
13+
]
14+
sources = [ "ParseHLSLRootSignatureTest.cpp" ]
15+
}

0 commit comments

Comments
 (0)