diff options
Diffstat (limited to 'llvm/utils/gn')
10 files changed, 16 insertions, 3 deletions
diff --git a/llvm/utils/gn/secondary/clang-tools-extra/clangd/BUILD.gn b/llvm/utils/gn/secondary/clang-tools-extra/clangd/BUILD.gn index b609d4a..f8c4838 100644 --- a/llvm/utils/gn/secondary/clang-tools-extra/clangd/BUILD.gn +++ b/llvm/utils/gn/secondary/clang-tools-extra/clangd/BUILD.gn @@ -122,6 +122,7 @@ static_library("clangd") { "SemanticHighlighting.cpp", "SemanticSelection.cpp", "SourceCode.cpp", + "SymbolDocumentation.cpp", "SystemIncludeExtractor.cpp", "TUScheduler.cpp", "TidyProvider.cpp", diff --git a/llvm/utils/gn/secondary/clang-tools-extra/clangd/unittests/BUILD.gn b/llvm/utils/gn/secondary/clang-tools-extra/clangd/unittests/BUILD.gn index ad32aa9..8aba04a 100644 --- a/llvm/utils/gn/secondary/clang-tools-extra/clangd/unittests/BUILD.gn +++ b/llvm/utils/gn/secondary/clang-tools-extra/clangd/unittests/BUILD.gn @@ -108,6 +108,7 @@ unittest("ClangdTests") { "SourceCodeTests.cpp", "StdLibTests.cpp", "SymbolCollectorTests.cpp", + "SymbolDocumentationTests.cpp", "SymbolInfoTests.cpp", "SyncAPI.cpp", "TUSchedulerTests.cpp", diff --git a/llvm/utils/gn/secondary/clang/lib/Format/BUILD.gn b/llvm/utils/gn/secondary/clang/lib/Format/BUILD.gn index 58cd59a..93c0f3c 100644 --- a/llvm/utils/gn/secondary/clang/lib/Format/BUILD.gn +++ b/llvm/utils/gn/secondary/clang/lib/Format/BUILD.gn @@ -21,6 +21,7 @@ static_library("Format") { "MacroExpander.cpp", "MatchFilePath.cpp", "NamespaceEndCommentsFixer.cpp", + "NumericLiteralInfo.cpp", "ObjCPropertyAttributeOrderFixer.cpp", "QualifierAlignmentFixer.cpp", "SortJavaScriptImports.cpp", diff --git a/llvm/utils/gn/secondary/clang/test/BUILD.gn b/llvm/utils/gn/secondary/clang/test/BUILD.gn index ed68387..020e35e 100644 --- a/llvm/utils/gn/secondary/clang/test/BUILD.gn +++ b/llvm/utils/gn/secondary/clang/test/BUILD.gn @@ -60,7 +60,6 @@ write_lit_config("lit_site_cfg") { "CLANG_VENDOR_UTI=org.llvm.clang", "ENABLE_BACKTRACES=1", "ENABLE_SHARED=0", - "LLVM_EXPERIMENTAL_KEY_INSTRUCTIONS=0", "LLVM_EXTERNAL_LIT=", "LLVM_HOST_TRIPLE=$llvm_current_triple", "LLVM_INCLUDE_SPIRV_TOOLS_TESTS=0", diff --git a/llvm/utils/gn/secondary/clang/unittests/Format/BUILD.gn b/llvm/utils/gn/secondary/clang/unittests/Format/BUILD.gn index b350619..0b3f00c 100644 --- a/llvm/utils/gn/secondary/clang/unittests/Format/BUILD.gn +++ b/llvm/utils/gn/secondary/clang/unittests/Format/BUILD.gn @@ -37,6 +37,7 @@ unittest("FormatTests") { "MacroExpanderTest.cpp", "MatchFilePathTest.cpp", "NamespaceEndCommentsFixerTest.cpp", + "NumericLiteralInfoTest.cpp", "ObjCPropertyAttributeOrderFixerTest.cpp", "QualifierFixerTest.cpp", "SortImportsTestJS.cpp", diff --git a/llvm/utils/gn/secondary/clang/unittests/Interpreter/BUILD.gn b/llvm/utils/gn/secondary/clang/unittests/Interpreter/BUILD.gn index 103954e5..4e485b1 100644 --- a/llvm/utils/gn/secondary/clang/unittests/Interpreter/BUILD.gn +++ b/llvm/utils/gn/secondary/clang/unittests/Interpreter/BUILD.gn @@ -27,3 +27,11 @@ unittest("ClangReplInterpreterTests") { ldflags = [ "-rdynamic" ] } } + +# FIXME: This is included conditionally in the CMake build if +# compiler-rt is available. The test currently fails in the GN +# build. Figure out if we can get it to pass. +group("dummy_sources") { + sources = [ "OutOfProcessInterpreterTests.cpp" ] + not_needed(sources) +} diff --git a/llvm/utils/gn/secondary/lldb/tools/lldb-dap/BUILD.gn b/llvm/utils/gn/secondary/lldb/tools/lldb-dap/BUILD.gn index 30a1e03..a7099aa 100644 --- a/llvm/utils/gn/secondary/lldb/tools/lldb-dap/BUILD.gn +++ b/llvm/utils/gn/secondary/lldb/tools/lldb-dap/BUILD.gn @@ -5,6 +5,7 @@ static_library("lib") { configs += [ "//llvm/utils/gn/build:lldb_code" ] deps = [ "//lldb/source/API:liblldb", + "//lldb/source/Host", "//llvm/lib/Option", "//llvm/lib/Support", ] @@ -14,7 +15,6 @@ static_library("lib") { include_dirs = [ "." ] - # FIXME: link in //lldb/source/Host on Win (and netbsd) # FIXME: link in pthread # FIXME: rpath/install_name stuff on macOS for framework on macOS @@ -72,6 +72,7 @@ static_library("lib") { "LLDBUtils.cpp", "OutputRedirector.cpp", "ProgressEvent.cpp", + "Protocol/DAPTypes.cpp", "Protocol/ProtocolBase.cpp", "Protocol/ProtocolEvents.cpp", "Protocol/ProtocolRequests.cpp", diff --git a/llvm/utils/gn/secondary/llvm/lib/Target/AVR/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Target/AVR/BUILD.gn index 2838901..449adf4 100644 --- a/llvm/utils/gn/secondary/llvm/lib/Target/AVR/BUILD.gn +++ b/llvm/utils/gn/secondary/llvm/lib/Target/AVR/BUILD.gn @@ -49,6 +49,7 @@ static_library("LLVMAVRCodeGen") { "AVRSubtarget.cpp", "AVRTargetMachine.cpp", "AVRTargetObjectFile.cpp", + "AVRTargetTransformInfo.cpp", ] } diff --git a/llvm/utils/gn/secondary/llvm/lib/TargetParser/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/TargetParser/BUILD.gn index 3dbc803..183fa57 100644 --- a/llvm/utils/gn/secondary/llvm/lib/TargetParser/BUILD.gn +++ b/llvm/utils/gn/secondary/llvm/lib/TargetParser/BUILD.gn @@ -20,5 +20,6 @@ static_library("TargetParser") { "TargetParser.cpp", "Triple.cpp", "X86TargetParser.cpp", + "XtensaTargetParser.cpp", ] } diff --git a/llvm/utils/gn/secondary/llvm/test/BUILD.gn b/llvm/utils/gn/secondary/llvm/test/BUILD.gn index 08cddc1..aaac823 100644 --- a/llvm/utils/gn/secondary/llvm/test/BUILD.gn +++ b/llvm/utils/gn/secondary/llvm/test/BUILD.gn @@ -65,7 +65,6 @@ write_lit_config("lit_site_cfg") { "LLVM_ENABLE_FFI=0", "LLVM_ENABLE_HTTPLIB=0", "LLVM_ENABLE_PROFCHECK=0", - "LLVM_EXPERIMENTAL_KEY_INSTRUCTIONS=0", "LLVM_FORCE_VC_REVISION=", "LLVM_HAS_LOGF128=0", "LLVM_HAVE_OPT_VIEWER_MODULES=0", |