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 output = clangd_lit_site_cfg_file
extra_values = [ extra_values = [
"CMAKE_CURRENT_BINARY_DIR=" + rebase_path( "CMAKE_CURRENT_BINARY_DIR=" +
get_label_info("//clang-tools-extra/clangd/test", "target_out_dir")), rebase_path(get_label_info("//clang-tools-extra/clangd/test",
"target_out_dir")),
"CMAKE_CURRENT_SOURCE_DIR=" + "CMAKE_CURRENT_SOURCE_DIR=" +
rebase_path("//clang-tools-extra/clangd/test"), rebase_path("//clang-tools-extra/clangd/test"),

View File

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

View File

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