1 static_library("readability") {
2 output_name = "clangTidyReadabilityModule"
3 configs += [ "//llvm/utils/gn/build:clang_code" ]
5 "//clang-tools-extra/clang-tidy",
6 "//clang-tools-extra/clang-tidy/utils",
8 "//clang/lib/ASTMatchers",
11 "//clang/lib/Tooling",
15 "AvoidConstParamsInDecls.cpp",
16 "BracesAroundStatementsCheck.cpp",
17 "ConstReturnTypeCheck.cpp",
18 "ContainerSizeEmptyCheck.cpp",
19 "ConvertMemberFunctionsToStatic.cpp",
20 "DeleteNullPointerCheck.cpp",
21 "DeletedDefaultCheck.cpp",
22 "ElseAfterReturnCheck.cpp",
23 "FunctionSizeCheck.cpp",
24 "IdentifierNamingCheck.cpp",
25 "ImplicitBoolConversionCheck.cpp",
26 "InconsistentDeclarationParameterNameCheck.cpp",
27 "IsolateDeclarationCheck.cpp",
28 "MagicNumbersCheck.cpp",
29 "MisleadingIndentationCheck.cpp",
30 "MisplacedArrayIndexCheck.cpp",
31 "NamedParameterCheck.cpp",
32 "NamespaceCommentCheck.cpp",
33 "NonConstParameterCheck.cpp",
34 "ReadabilityTidyModule.cpp",
35 "RedundantControlFlowCheck.cpp",
36 "RedundantDeclarationCheck.cpp",
37 "RedundantFunctionPtrDereferenceCheck.cpp",
38 "RedundantMemberInitCheck.cpp",
39 "RedundantPreprocessorCheck.cpp",
40 "RedundantSmartptrGetCheck.cpp",
41 "RedundantStringCStrCheck.cpp",
42 "RedundantStringInitCheck.cpp",
43 "SimplifyBooleanExprCheck.cpp",
44 "SimplifySubscriptExprCheck.cpp",
45 "StaticAccessedThroughInstanceCheck.cpp",
46 "StaticDefinitionInAnonymousNamespaceCheck.cpp",
47 "StringCompareCheck.cpp",
48 "UniqueptrDeleteReleaseCheck.cpp",
49 "UppercaseLiteralSuffixCheck.cpp",