File tree 3 files changed +17
-0
lines changed
llvm/utils/gn/secondary/clang 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ static_library("Parse") {
22
22
" ParseExpr.cpp" ,
23
23
" ParseExprCXX.cpp" ,
24
24
" ParseHLSL.cpp" ,
25
+ " ParseHLSLRootSignature.cpp" ,
25
26
" ParseInit.cpp" ,
26
27
" ParseObjc.cpp" ,
27
28
" ParseOpenACC.cpp" ,
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ group("unittests") {
16
16
" InstallAPI:InstallAPITests" ,
17
17
" Interpreter:ClangReplInterpreterTests" ,
18
18
" Lex:LexTests" ,
19
+ " Parse:ParseTests" ,
19
20
" Rewrite:RewriteTests" ,
20
21
" Sema:SemaTests" ,
21
22
" Serialization:SerializationTests" ,
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments