blob: dc65bf669276d7e3eeaf47e18f29714db1d5cfc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import("//third-party/unittest/unittest.gni")
unittest("SerializationTests") {
configs += [ "//llvm/utils/gn/build:clang_code" ]
deps = [
"//clang/lib/AST",
"//clang/lib/Basic",
"//clang/lib/Frontend",
"//clang/lib/Lex",
"//clang/lib/Sema",
"//clang/lib/Serialization",
"//llvm/lib/Bitcode/Reader",
"//llvm/lib/Support",
]
sources = [
"InMemoryModuleCacheTest.cpp",
"ModuleCacheTest.cpp",
"SourceLocationEncodingTest.cpp",
]
}
|