forked from OSchip/llvm-project
[gn build] reformat all gn files
$ git ls-files '*.gn' '*.gni' | xargs llvm/utils/gn/gn.py format
This commit is contained in:
parent
452e035729
commit
77fa9a9b15
|
@ -5,6 +5,7 @@ static_library("Interpreter") {
|
|||
"//clang/lib/AST",
|
||||
"//clang/lib/Analysis",
|
||||
"//clang/lib/Basic",
|
||||
"//clang/lib/CodeGen",
|
||||
"//clang/lib/Driver",
|
||||
"//clang/lib/Edit",
|
||||
"//clang/lib/Frontend",
|
||||
|
@ -13,13 +14,12 @@ static_library("Interpreter") {
|
|||
"//clang/lib/Parse",
|
||||
"//clang/lib/Sema",
|
||||
"//clang/lib/Serialization",
|
||||
"//clang/lib/CodeGen",
|
||||
"//llvm/lib/ExecutionEngine/Orc",
|
||||
"//llvm/lib/IR",
|
||||
"//llvm/lib/Option",
|
||||
"//llvm/lib/Support",
|
||||
"//llvm/lib/Target",
|
||||
"//llvm/lib/Target:NativeTarget",
|
||||
"//llvm/lib/ExecutionEngine/Orc",
|
||||
]
|
||||
sources = [
|
||||
"IncrementalExecutor.cpp",
|
||||
|
|
|
@ -111,7 +111,6 @@ static_library("LLVMX86CodeGen") {
|
|||
"X86LoadValueInjectionRetHardening.cpp",
|
||||
"X86LowerAMXIntrinsics.cpp",
|
||||
"X86LowerAMXType.cpp",
|
||||
"X86PreAMXConfig.cpp",
|
||||
"X86LowerTileCopy.cpp",
|
||||
"X86MCInstLower.cpp",
|
||||
"X86MachineFunctionInfo.cpp",
|
||||
|
@ -119,6 +118,7 @@ static_library("LLVMX86CodeGen") {
|
|||
"X86OptimizeLEAs.cpp",
|
||||
"X86PadShortFunction.cpp",
|
||||
"X86PartialReduction.cpp",
|
||||
"X86PreAMXConfig.cpp",
|
||||
"X86PreTileConfig.cpp",
|
||||
"X86RegisterBankInfo.cpp",
|
||||
"X86RegisterInfo.cpp",
|
||||
|
|
|
@ -9,9 +9,7 @@ config("googletest_config") {
|
|||
|
||||
# LLVM requires C++11 but gtest doesn't correctly detect the availability
|
||||
# of C++11 on MSVC, so we force it on.
|
||||
defines = [
|
||||
"GTEST_LANG_CXX11",
|
||||
]
|
||||
defines = [ "GTEST_LANG_CXX11" ]
|
||||
if (host_os == "win") {
|
||||
defines += [ "GTEST_OS_WINDOWS" ]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue