[llvm] 964327d - [gn] port 9d6b68b63f02 (libc++ tzdb to experimental/)

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Sun Jul 7 02:27:38 PDT 2024


Author: Nico Weber
Date: 2024-07-07T11:27:26+02:00
New Revision: 964327d22f51e479ef12dfcfc1ed28af0e7f7d06

URL: https://github.com/llvm/llvm-project/commit/964327d22f51e479ef12dfcfc1ed28af0e7f7d06
DIFF: https://github.com/llvm/llvm-project/commit/964327d22f51e479ef12dfcfc1ed28af0e7f7d06.diff

LOG: [gn] port 9d6b68b63f02 (libc++ tzdb to experimental/)

Added: 
    

Modified: 
    llvm/utils/gn/secondary/libcxx/src/BUILD.gn

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/libcxx/src/BUILD.gn b/llvm/utils/gn/secondary/libcxx/src/BUILD.gn
index 689bc2e137d24..a94674a61873d 100644
--- a/llvm/utils/gn/secondary/libcxx/src/BUILD.gn
+++ b/llvm/utils/gn/secondary/libcxx/src/BUILD.gn
@@ -317,16 +317,16 @@ if (libcxx_enable_experimental) {
     sources = [ "experimental/keep.cpp" ]
     if (libcxx_enable_filesystem && libcxx_enable_time_zone_database) {
       sources += [
-        "include/tzdb/time_zone_private.h",
-        "include/tzdb/types_private.h",
-        "include/tzdb/tzdb_list_private.h",
-        "include/tzdb/tzdb_private.h",
+        "experimental/include/tzdb/time_zone_private.h",
+        "experimental/include/tzdb/types_private.h",
+        "experimental/include/tzdb/tzdb_list_private.h",
+        "experimental/include/tzdb/tzdb_private.h",
         # TODO TZDB The exception could be moved in chrono once the TZDB library
         # is no longer experimental.
-        "chrono_exception.cpp",
-        "time_zone.cpp",
-        "tzdb.cpp",
-        "tzdb_list.cpp",
+        "experimental/chrono_exception.cpp",
+        "experimental/time_zone.cpp",
+        "experimental/tzdb.cpp",
+        "experimental/tzdb_list.cpp",
       ]
     }
     deps = [ "//libcxx/include" ]


        


More information about the llvm-commits mailing list