reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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
# A target containing all code tweaks (i.e. mini-refactorings) provided by
# clangd.
# Built as a source_set to make sure the linker does not remove global
# constructors that register individual tweaks in a global registry.
source_set("tweaks") {
  configs += [ "//llvm/utils/gn/build:clang_code" ]
  deps = [
    "//clang-tools-extra/clangd",
    "//clang/lib/AST",
    "//clang/lib/Tooling/Core",
    "//llvm/lib/Support",
  ]
  include_dirs = [ "../.." ]
  sources = [
    "AnnotateHighlightings.cpp",
    "DefineInline.cpp",
    "DumpAST.cpp",
    "ExpandAutoType.cpp",
    "ExpandMacro.cpp",
    "ExtractFunction.cpp",
    "ExtractVariable.cpp",
    "RawStringLiteral.cpp",
    "RemoveUsingNamespace.cpp",
    "SwapIfBranches.cpp",
  ]
}