1import("//third-party/unittest/unittest.gni") 2 3unittest("FormatTests") { 4 configs += [ "//llvm/utils/gn/build:clang_code" ] 5 deps = [ 6 "//clang/lib/Basic", 7 "//clang/lib/Format", 8 "//clang/lib/Frontend", 9 "//clang/lib/Rewrite", 10 "//clang/lib/Tooling/Core", 11 "//llvm/lib/Support", 12 ] 13 sources = [ 14 "BracesInserterTest.cpp", 15 "BracesRemoverTest.cpp", 16 "CleanupTest.cpp", 17 "ConfigParseTest.cpp", 18 "DefinitionBlockSeparatorTest.cpp", 19 "FormatTest.cpp", 20 "FormatTestCSharp.cpp", 21 "FormatTestComments.cpp", 22 "FormatTestJS.cpp", 23 "FormatTestJava.cpp", 24 "FormatTestJson.cpp", 25 "FormatTestObjC.cpp", 26 "FormatTestProto.cpp", 27 "FormatTestRawStrings.cpp", 28 "FormatTestSelective.cpp", 29 "FormatTestTableGen.cpp", 30 "FormatTestTextProto.cpp", 31 "FormatTestVerilog.cpp", 32 "IntegerLiteralSeparatorTest.cpp", 33 "MacroCallReconstructorTest.cpp", 34 "MacroExpanderTest.cpp", 35 "NamespaceEndCommentsFixerTest.cpp", 36 "QualifierFixerTest.cpp", 37 "SortImportsTestJS.cpp", 38 "SortImportsTestJava.cpp", 39 "SortIncludesTest.cpp", 40 "TokenAnnotatorTest.cpp", 41 "UsingDeclarationsSorterTest.cpp", 42 ] 43} 44