1static_library("performance") { 2 output_name = "clangTidyPerformanceModule" 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/Analysis", 10 "//clang/lib/Basic", 11 "//clang/lib/Lex", 12 "//llvm/lib/Support", 13 ] 14 sources = [ 15 "FasterStringFindCheck.cpp", 16 "ForRangeCopyCheck.cpp", 17 "ImplicitConversionInLoopCheck.cpp", 18 "InefficientAlgorithmCheck.cpp", 19 "InefficientStringConcatenationCheck.cpp", 20 "InefficientVectorOperationCheck.cpp", 21 "MoveConstArgCheck.cpp", 22 "MoveConstructorInitCheck.cpp", 23 "NoAutomaticMoveCheck.cpp", 24 "NoIntToPtrCheck.cpp", 25 "NoexceptMoveConstructorCheck.cpp", 26 "PerformanceTidyModule.cpp", 27 "TriviallyDestructibleCheck.cpp", 28 "TypePromotionInMathFnCheck.cpp", 29 "UnnecessaryCopyInitialization.cpp", 30 "UnnecessaryValueParamCheck.cpp", 31 ] 32} 33