1import("//third-party/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 "//llvm/lib/TargetParser", 15 ] 16 sources = [ 17 "ASTUnitTest.cpp", 18 "CodeGenActionTest.cpp", 19 "CompilerInstanceTest.cpp", 20 "CompilerInvocationTest.cpp", 21 "FixedPointString.cpp", 22 "FrontendActionTest.cpp", 23 "OutputStreamTest.cpp", 24 "PCHPreambleTest.cpp", 25 "ParsedSourceLocationTest.cpp", 26 "ReparseWorkingDirTest.cpp", 27 "TextDiagnosticTest.cpp", 28 "UtilsTest.cpp", 29 ] 30} 31