[llvm] 7056ad7 - [gn build] Port 1117b9a284aa

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 6 17:00:02 PDT 2023


Author: Nico Weber
Date: 2023-06-06T19:59:54-04:00
New Revision: 7056ad7e97347f6af65c1e4ccaffcc8dfd5ba1d2

URL: https://github.com/llvm/llvm-project/commit/7056ad7e97347f6af65c1e4ccaffcc8dfd5ba1d2
DIFF: https://github.com/llvm/llvm-project/commit/7056ad7e97347f6af65c1e4ccaffcc8dfd5ba1d2.diff

LOG: [gn build] Port 1117b9a284aa

Added: 
    

Modified: 
    llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
    llvm/utils/gn/secondary/llvm/unittests/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 fe4e608bc22fc..8c1a29a3c4cf4 100644
--- a/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
@@ -43,6 +43,7 @@ static_library("Support") {
     "ARMWinEH.cpp",
     "Allocator.cpp",
     "AutoConvert.cpp",
+    "BalancedPartitioning.cpp",
     "Base64.cpp",
     "BinaryStreamError.cpp",
     "BinaryStreamReader.cpp",

diff  --git a/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn b/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn
index 47a33a885f442..5a2c07166f9b2 100644
--- a/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn
@@ -2,6 +2,7 @@ import("//third-party/unittest/unittest.gni")
 
 unittest("SupportTests") {
   deps = [
+    "//llvm/lib/ProfileData",
     "//llvm/lib/Support",
     "//llvm/lib/TargetParser",
     "//llvm/lib/Testing/Support",
@@ -14,6 +15,7 @@ unittest("SupportTests") {
     "AllocatorTest.cpp",
     "ArrayRecyclerTest.cpp",
     "BLAKE3Test.cpp",
+    "BalancedPartitioningTest.cpp",
     "Base64Test.cpp",
     "BinaryStreamTest.cpp",
     "BlockFrequencyTest.cpp",


        


More information about the llvm-commits mailing list