summaryrefslogtreecommitdiffstats
path: root/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/performance/BUILD.gn
blob: 18539d78800a1376fc0ee5d31c6e9bee963f3e30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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",
    "NoexceptMoveConstructorCheck.cpp",
    "PerformanceTidyModule.cpp",
    "TriviallyDestructibleCheck.cpp",
    "TypePromotionInMathFnCheck.cpp",
    "UnnecessaryCopyInitialization.cpp",
    "UnnecessaryValueParamCheck.cpp",
  ]
}
OpenPOWER on IntegriCloud