1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[gn build] Run git ls-files '*.gn' '*.gni' | xargs llvm/utils/gn/gn.py format

This commit is contained in:
Nico Weber 2020-07-17 12:30:25 -04:00
parent 9f13e86ec9
commit 74cfe04a0f
4 changed files with 7 additions and 9 deletions

View File

@ -21,8 +21,9 @@ write_lit_config("lit_site_cfg") {
output = clangd_lit_site_cfg_file
extra_values = [
"CMAKE_CURRENT_BINARY_DIR=" + rebase_path(
get_label_info("//clang-tools-extra/clangd/test", "target_out_dir")),
"CMAKE_CURRENT_BINARY_DIR=" +
rebase_path(get_label_info("//clang-tools-extra/clangd/test",
"target_out_dir")),
"CMAKE_CURRENT_SOURCE_DIR=" +
rebase_path("//clang-tools-extra/clangd/test"),

View File

@ -1,8 +1,6 @@
static_library("Testing") {
output_name = "clangTesting"
configs += [ "//llvm/utils/gn/build:clang_code" ]
deps = [
"//llvm/lib/Support",
]
deps = [ "//llvm/lib/Support" ]
sources = [ "CommandLineArgs.cpp" ]
}

View File

@ -2,4 +2,3 @@ declare_args() {
# Whether to include code from clang-tools-extra in libclang.
libclang_include_clang_tools_extra = false
}

View File

@ -17,7 +17,7 @@ static_library("OpenMP") {
]
public_deps = [ "//llvm/include/llvm/Frontend/OpenMP:public_tablegen" ]
sources = [
"OMPContext.cpp",
"OMPIRBuilder.cpp",
] + get_target_outputs(":OMPImpl")
"OMPContext.cpp",
"OMPIRBuilder.cpp",
] + get_target_outputs(":OMPImpl")
}