[llvm] 6d8aba3 - [gn] port 2dc9ec47fb16

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 13 17:50:06 PDT 2024


Author: Nico Weber
Date: 2024-03-13T20:49:54-04:00
New Revision: 6d8aba3d1add74a0e1ef548e2d6e15ad7565ee0b

URL: https://github.com/llvm/llvm-project/commit/6d8aba3d1add74a0e1ef548e2d6e15ad7565ee0b
DIFF: https://github.com/llvm/llvm-project/commit/6d8aba3d1add74a0e1ef548e2d6e15ad7565ee0b.diff

LOG: [gn] port 2dc9ec47fb16

Added: 
    

Modified: 
    llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/BUILD.gn
    llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/tests/BUILD.gn

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/BUILD.gn
index 02a9595e2654be..c8347f6336d73f 100644
--- a/llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/BUILD.gn
@@ -12,6 +12,7 @@ source_set("sources") {
   sources = [
     "allocator_common.h",
     "allocator_config.h",
+    "allocator_config_wrapper.h",
     "atomic_helpers.h",
     "bytemap.h",
     "checksum.cpp",

diff  --git a/llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/tests/BUILD.gn b/llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/tests/BUILD.gn
index f69f1c413b47da..2ddc3abe47f742 100644
--- a/llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/tests/BUILD.gn
+++ b/llvm/utils/gn/secondary/compiler-rt/lib/scudo/standalone/tests/BUILD.gn
@@ -8,6 +8,7 @@ unittest("ScudoUnitTest") {
   cflags = test_cflags
   deps = [ "//compiler-rt/lib/scudo/standalone:sources" ]
   sources = [
+    "allocator_config_test.cpp",
     "atomic_test.cpp",
     "bytemap_test.cpp",
     "checksum_test.cpp",


        


More information about the llvm-commits mailing list