File tree Expand file tree Collapse file tree 2 files changed +24
-9
lines changed
llvm/utils/gn/secondary/clang/lib/Analysis Expand file tree Collapse file tree 2 files changed +24
-9
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ static_library("Analysis") {
55 " //clang/include/clang/AST:StmtDataCollectors" ,
66 " //clang/lib/AST" ,
77 " //clang/lib/ASTMatchers" ,
8+ " //clang/lib/Analysis/LifetimeSafety" ,
89 " //clang/lib/Basic" ,
910 " //clang/lib/Lex" ,
1011 " //llvm/lib/Support" ,
@@ -27,15 +28,6 @@ static_library("Analysis") {
2728 " FixitUtil.cpp" ,
2829 " IntervalPartition.cpp" ,
2930 " IssueHash.cpp" ,
30- " LifetimeSafety/Checker.cpp" ,
31- " LifetimeSafety/Facts.cpp" ,
32- " LifetimeSafety/FactsGenerator.cpp" ,
33- " LifetimeSafety/LifetimeAnnotations.cpp" ,
34- " LifetimeSafety/LifetimeSafety.cpp" ,
35- " LifetimeSafety/LiveOrigins.cpp" ,
36- " LifetimeSafety/LoanPropagation.cpp" ,
37- " LifetimeSafety/Loans.cpp" ,
38- " LifetimeSafety/Origins.cpp" ,
3931 " LiveVariables.cpp" ,
4032 " MacroExpansionContext.cpp" ,
4133 " ObjCNoReturn.cpp" ,
Original file line number Diff line number Diff line change 1+ static_library (" LifetimeSafety" ) {
2+ output_name = " clangLifetimeSafety"
3+ configs += [ " //llvm/utils/gn/build:clang_code" ]
4+ deps = [
5+ " //clang/include/clang/AST:StmtDataCollectors" ,
6+ " //clang/lib/AST" ,
7+ " //clang/lib/ASTMatchers" ,
8+ " //clang/lib/Basic" ,
9+ " //clang/lib/Lex" ,
10+ " //llvm/lib/Support" ,
11+ ]
12+ sources = [
13+ " Checker.cpp" ,
14+ " Facts.cpp" ,
15+ " FactsGenerator.cpp" ,
16+ " LifetimeAnnotations.cpp" ,
17+ " LifetimeSafety.cpp" ,
18+ " LiveOrigins.cpp" ,
19+ " LoanPropagation.cpp" ,
20+ " Loans.cpp" ,
21+ " Origins.cpp" ,
22+ ]
23+ }
You can’t perform that action at this time.
0 commit comments