1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import("//third-party/unittest/unittest.gni")
unittest("LexTests") {
configs += [ "//llvm/utils/gn/build:clang_code" ]
deps = [
"//clang/lib/AST",
"//clang/lib/Basic",
"//clang/lib/Frontend",
"//clang/lib/Lex",
"//clang/lib/Parse",
"//clang/lib/Sema",
"//llvm/lib/Support",
"//llvm/lib/Testing/Support",
]
sources = [
"DependencyDirectivesScannerTest.cpp",
"HeaderMapTest.cpp",
"HeaderSearchTest.cpp",
"LexerTest.cpp",
"ModuleDeclStateTest.cpp",
"PPCallbacksTest.cpp",
"PPConditionalDirectiveRecordTest.cpp",
"PPDependencyDirectivesTest.cpp",
"PPMemoryAllocationsTest.cpp",
]
}
|