llvm-for-llvmta/utils/gn/secondary/clang-tools-extra/clang-tidy/performance/BUILD.gn

33 lines
984 B
Plaintext
Raw Normal View History

2022-04-25 10:02:23 +02:00
static_library("performance") {
output_name = "clangTidyPerformanceModule"
configs += [ "//llvm/utils/gn/build:clang_code" ]
deps = [
"//clang-tools-extra/clang-tidy",
"//clang-tools-extra/clang-tidy/utils",
"//clang/lib/AST",
"//clang/lib/ASTMatchers",
"//clang/lib/Analysis",
"//clang/lib/Basic",
"//clang/lib/Lex",
"//llvm/lib/Support",
]
sources = [
"FasterStringFindCheck.cpp",
"ForRangeCopyCheck.cpp",
"ImplicitConversionInLoopCheck.cpp",
"InefficientAlgorithmCheck.cpp",
"InefficientStringConcatenationCheck.cpp",
"InefficientVectorOperationCheck.cpp",
"MoveConstArgCheck.cpp",
"MoveConstructorInitCheck.cpp",
"NoAutomaticMoveCheck.cpp",
"NoIntToPtrCheck.cpp",
"NoexceptMoveConstructorCheck.cpp",
"PerformanceTidyModule.cpp",
"TriviallyDestructibleCheck.cpp",
"TypePromotionInMathFnCheck.cpp",
"UnnecessaryCopyInitialization.cpp",
"UnnecessaryValueParamCheck.cpp",
]
}