File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed
llvm/utils/gn/secondary/clang Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff 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" ,
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