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") {
8
8
" BinaryFormat:BinaryFormatTests" ,
9
9
" Bitcode:BitcodeTests" ,
10
10
" Bitstream:BitstreamTests" ,
11
+ " CAS:CASTests" ,
11
12
" CGData:CodeGenDataTests" ,
12
13
" CodeGen:CodeGenTests" ,
13
14
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