File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed
llvm/utils/gn/secondary/llvm Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 1+ static_library (" CAS" ) {
2+ output_name = " LLVMCAS"
3+ sources = [
4+ " BuiltinCAS.cpp" ,
5+ " InMemoryCAS.cpp" ,
6+ " ObjectStore.cpp" ,
7+ ]
8+ }
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ group("unittests") {
88 " BinaryFormat:BinaryFormatTests" ,
99 " Bitcode:BitcodeTests" ,
1010 " Bitstream:BitstreamTests" ,
11+ " CAS:CASTests" ,
1112 " CGData:CodeGenDataTests" ,
1213 " CodeGen:CodeGenTests" ,
1314
Original file line number Diff line number Diff line change 1+ import (" //third-party/unittest/unittest.gni" )
2+
3+ unittest (" CASTests" ) {
4+ deps = [
5+ " //llvm/lib/CAS" ,
6+ " //llvm/lib/Support" ,
7+ " //llvm/lib/Testing/Support" ,
8+ ]
9+ sources = [
10+ " CASTestConfig.cpp" ,
11+ " ObjectStoreTest.cpp" ,
12+ ]
13+ }
You can’t perform that action at this time.
0 commit comments