[llvm] 37fbf23 - [gn build] Port d9941f74549a

LLVM GN Syncbot via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 6 22:03:41 PST 2021


Author: LLVM GN Syncbot
Date: 2021-12-07T05:54:10Z
New Revision: 37fbf238f4427b651a16956eca1cb0e2ab5cdbfd

URL: https://github.com/llvm/llvm-project/commit/37fbf238f4427b651a16956eca1cb0e2ab5cdbfd
DIFF: https://github.com/llvm/llvm-project/commit/37fbf238f4427b651a16956eca1cb0e2ab5cdbfd.diff

LOG: [gn build] Port d9941f74549a

Added: 
    

Modified: 
    llvm/utils/gn/secondary/llvm/lib/Debuginfod/BUILD.gn
    llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
    llvm/utils/gn/secondary/llvm/unittests/Debuginfod/BUILD.gn
    llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/llvm/lib/Debuginfod/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Debuginfod/BUILD.gn
index ffbd5223536d..6f44f01d0514 100644
--- a/llvm/utils/gn/secondary/llvm/lib/Debuginfod/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/Debuginfod/BUILD.gn
@@ -1,5 +1,8 @@
 static_library("Debuginfod") {
   output_name = "LLVMDebuginfod"
   deps = [ "//llvm/lib/Support" ]
-  sources = [ "Debuginfod.cpp" ]
+  sources = [
+    "Debuginfod.cpp",
+    "HTTPClient.cpp",
+  ]
 }

diff  --git a/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
index 421653642303..461b7498978f 100644
--- a/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
@@ -82,7 +82,6 @@ static_library("Support") {
     "FormattedStream.cpp",
     "GlobPattern.cpp",
     "GraphWriter.cpp",
-    "HTTPClient.cpp",
     "Hashing.cpp",
     "InitLLVM.cpp",
     "InstructionCost.cpp",

diff  --git a/llvm/utils/gn/secondary/llvm/unittests/Debuginfod/BUILD.gn b/llvm/utils/gn/secondary/llvm/unittests/Debuginfod/BUILD.gn
index fbd9730c5170..61501b057037 100644
--- a/llvm/utils/gn/secondary/llvm/unittests/Debuginfod/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/unittests/Debuginfod/BUILD.gn
@@ -5,5 +5,8 @@ unittest("DebuginfodTests") {
     "//llvm/lib/Debuginfod",
     "//llvm/lib/Testing/Support",
   ]
-  sources = [ "DebuginfodTests.cpp" ]
+  sources = [
+    "DebuginfodTests.cpp",
+    "HTTPClientTests.cpp",
+  ]
 }

diff  --git a/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn b/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn
index b7d1a234e784..ba6ccc8e11e3 100644
--- a/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn
@@ -42,7 +42,6 @@ unittest("SupportTests") {
     "FileUtilitiesTest.cpp",
     "FormatVariadicTest.cpp",
     "GlobPatternTest.cpp",
-    "HTTPClient.cpp",
     "HashBuilderTest.cpp",
     "Host.cpp",
     "IndexedAccessorTest.cpp",


        


More information about the llvm-commits mailing list