[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / utils / gn / secondary / clang-tools-extra / clang-tidy / readability / BUILD.gn
blob0b76f2c8ce8552a101cb0675780a1fbb1db6ac13
1 static_library("readability") {
2   output_name = "clangTidyReadabilityModule"
3   configs += [ "//llvm/utils/gn/build:clang_code" ]
4   deps = [
5     "//clang-tools-extra/clang-tidy",
6     "//clang-tools-extra/clang-tidy/utils",
7     "//clang/lib/AST",
8     "//clang/lib/ASTMatchers",
9     "//clang/lib/Basic",
10     "//clang/lib/Lex",
11     "//clang/lib/Tooling",
12     "//llvm/lib/Support",
13   ]
14   sources = [
15     "AvoidConstParamsInDecls.cpp",
16     "BracesAroundStatementsCheck.cpp",
17     "ConstReturnTypeCheck.cpp",
18     "ContainerSizeEmptyCheck.cpp",
19     "ConvertMemberFunctionsToStatic.cpp",
20     "DeleteNullPointerCheck.cpp",
21     "ElseAfterReturnCheck.cpp",
22     "FunctionCognitiveComplexityCheck.cpp",
23     "FunctionSizeCheck.cpp",
24     "IdentifierLengthCheck.cpp",
25     "IdentifierNamingCheck.cpp",
26     "ImplicitBoolConversionCheck.cpp",
27     "InconsistentDeclarationParameterNameCheck.cpp",
28     "IsolateDeclarationCheck.cpp",
29     "MagicNumbersCheck.cpp",
30     "MakeMemberFunctionConstCheck.cpp",
31     "MisleadingIndentationCheck.cpp",
32     "MisplacedArrayIndexCheck.cpp",
33     "NamedParameterCheck.cpp",
34     "NamespaceCommentCheck.cpp",
35     "NonConstParameterCheck.cpp",
36     "QualifiedAutoCheck.cpp",
37     "ReadabilityTidyModule.cpp",
38     "RedundantAccessSpecifiersCheck.cpp",
39     "RedundantControlFlowCheck.cpp",
40     "RedundantDeclarationCheck.cpp",
41     "RedundantFunctionPtrDereferenceCheck.cpp",
42     "RedundantMemberInitCheck.cpp",
43     "RedundantPreprocessorCheck.cpp",
44     "RedundantSmartptrGetCheck.cpp",
45     "RedundantStringCStrCheck.cpp",
46     "RedundantStringInitCheck.cpp",
47     "SimplifyBooleanExprCheck.cpp",
48     "SimplifySubscriptExprCheck.cpp",
49     "StaticAccessedThroughInstanceCheck.cpp",
50     "StaticDefinitionInAnonymousNamespaceCheck.cpp",
51     "StringCompareCheck.cpp",
52     "SuspiciousCallArgumentCheck.cpp",
53     "UniqueptrDeleteReleaseCheck.cpp",
54     "UppercaseLiteralSuffixCheck.cpp",
55     "UseAnyOfAllOfCheck.cpp",
56   ]