[llvm] 1e3713f - [gn build] Port

LLVM GN Syncbot via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 24 12:12:27 PDT 2022


Author: LLVM GN Syncbot
Date: 2022-03-24T19:11:19Z
New Revision: 1e3713f6df3059655296b7c81e5b33e8b11eff0f

URL: https://github.com/llvm/llvm-project/commit/1e3713f6df3059655296b7c81e5b33e8b11eff0f
DIFF: https://github.com/llvm/llvm-project/commit/1e3713f6df3059655296b7c81e5b33e8b11eff0f.diff

LOG: [gn build] Port

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn b/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
index f7dff2e76778f..53d390b8a8c37 100644
--- a/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
@@ -45,9 +45,6 @@ static_library("Support") {
     "ARMWinEH.cpp",
     "Allocator.cpp",
     "AutoConvert.cpp",
-    "BLAKE3/blake3.c",
-    "BLAKE3/blake3_dispatch.c",
-    "BLAKE3/blake3_portable.c",
     "BinaryStreamError.cpp",
     "BinaryStreamReader.cpp",
     "BinaryStreamRef.cpp",
@@ -57,6 +54,9 @@ static_library("Support") {
     "BuryPointer.cpp",
     "COM.cpp",
     "CRC.cpp",
+    "CSKYAttributeParser.cpp",
+    "CSKYAttributes.cpp",
+    "CSKYTargetParser.cpp",
     "CachePruning.cpp",
     "Caching.cpp",
     "Chrono.cpp",
@@ -66,9 +66,6 @@ static_library("Support") {
     "ConvertUTF.cpp",
     "ConvertUTFWrapper.cpp",
     "CrashRecoveryContext.cpp",
-    "CSKYAttributeParser.cpp",
-    "CSKYAttributes.cpp",
-    "CSKYTargetParser.cpp",
     "DAGDeltaAlgorithm.cpp",
     "DJB.cpp",
     "DataExtractor.cpp",
@@ -184,7 +181,13 @@ static_library("Support") {
     "Watchdog.cpp",
   ]
 
-  defines = ["BLAKE3_NO_AVX512", "BLAKE3_NO_AVX2", "BLAKE3_NO_SSE41", "BLAKE3_NO_SSE2", "BLAKE3_USE_NEON=0"]
+  defines = [
+    "BLAKE3_NO_AVX512",
+    "BLAKE3_NO_AVX2",
+    "BLAKE3_NO_SSE41",
+    "BLAKE3_NO_SSE2",
+    "BLAKE3_USE_NEON=0",
+  ]
 
   libs = []
 


        


More information about the llvm-commits mailing list