1import("//llvm/utils/unittest/unittest.gni") 2 3unittest("FrontendTests") { 4 configs += [ "//llvm/utils/gn/build:clang_code" ] 5 deps = [ 6 "//clang/lib/AST", 7 "//clang/lib/Basic", 8 "//clang/lib/CodeGen", 9 "//clang/lib/Frontend", 10 "//clang/lib/FrontendTool", 11 "//clang/lib/Lex", 12 "//clang/lib/Sema", 13 "//llvm/lib/Support", 14 ] 15 sources = [ 16 "ASTUnitTest.cpp", 17 "CodeGenActionTest.cpp", 18 "CompilerInstanceTest.cpp", 19 "CompilerInvocationTest.cpp", 20 "FixedPointString.cpp", 21 "FrontendActionTest.cpp", 22 "OutputStreamTest.cpp", 23 "PCHPreambleTest.cpp", 24 "ParsedSourceLocationTest.cpp", 25 "TextDiagnosticTest.cpp", 26 ] 27} 28