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