[llvm] c39b76a - [gn build] Port 3abaefe64c22

LLVM GN Syncbot via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 13 12:45:18 PDT 2022


Author: LLVM GN Syncbot
Date: 2022-06-13T19:41:30Z
New Revision: c39b76ae2ecb05c567dcf4f3d23a60fba1bc81d6

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

LOG: [gn build] Port 3abaefe64c22

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/utils/gn/secondary/libcxx/include/BUILD.gn b/llvm/utils/gn/secondary/libcxx/include/BUILD.gn
index 6aafed7c2cd03..c3edc5806169f 100644
--- a/llvm/utils/gn/secondary/libcxx/include/BUILD.gn
+++ b/llvm/utils/gn/secondary/libcxx/include/BUILD.gn
@@ -553,9 +553,13 @@ if (current_toolchain == default_toolchain) {
       "__type_traits/is_compound.h",
       "__type_traits/is_const.h",
       "__type_traits/is_constant_evaluated.h",
+      "__type_traits/is_constructible.h",
       "__type_traits/is_convertible.h",
       "__type_traits/is_copy_assignable.h",
+      "__type_traits/is_copy_constructible.h",
       "__type_traits/is_core_convertible.h",
+      "__type_traits/is_default_constructible.h",
+      "__type_traits/is_destructible.h",
       "__type_traits/is_empty.h",
       "__type_traits/is_enum.h",
       "__type_traits/is_final.h",
@@ -568,6 +572,15 @@ if (current_toolchain == default_toolchain) {
       "__type_traits/is_member_object_pointer.h",
       "__type_traits/is_member_pointer.h",
       "__type_traits/is_move_assignable.h",
+      "__type_traits/is_move_constructible.h",
+      "__type_traits/is_nothrow_assignable.h",
+      "__type_traits/is_nothrow_constructible.h",
+      "__type_traits/is_nothrow_copy_assignable.h",
+      "__type_traits/is_nothrow_copy_constructible.h",
+      "__type_traits/is_nothrow_default_constructible.h",
+      "__type_traits/is_nothrow_destructible.h",
+      "__type_traits/is_nothrow_move_assignable.h",
+      "__type_traits/is_nothrow_move_constructible.h",
       "__type_traits/is_null_pointer.h",
       "__type_traits/is_object.h",
       "__type_traits/is_pod.h",
@@ -582,12 +595,21 @@ if (current_toolchain == default_toolchain) {
       "__type_traits/is_signed.h",
       "__type_traits/is_standard_layout.h",
       "__type_traits/is_trivial.h",
+      "__type_traits/is_trivially_assignable.h",
+      "__type_traits/is_trivially_constructible.h",
+      "__type_traits/is_trivially_copy_assignable.h",
+      "__type_traits/is_trivially_copy_constructible.h",
       "__type_traits/is_trivially_copyable.h",
+      "__type_traits/is_trivially_default_constructible.h",
+      "__type_traits/is_trivially_destructible.h",
+      "__type_traits/is_trivially_move_assignable.h",
+      "__type_traits/is_trivially_move_constructible.h",
       "__type_traits/is_unbounded_array.h",
       "__type_traits/is_union.h",
       "__type_traits/is_unsigned.h",
       "__type_traits/is_void.h",
       "__type_traits/is_volatile.h",
+      "__type_traits/negation.h",
       "__type_traits/rank.h",
       "__type_traits/remove_all_extents.h",
       "__type_traits/remove_const.h",
@@ -598,6 +620,7 @@ if (current_toolchain == default_toolchain) {
       "__type_traits/remove_volatile.h",
       "__type_traits/type_identity.h",
       "__type_traits/underlying_type.h",
+      "__type_traits/void_t.h",
       "__undef_macros",
       "__utility/as_const.h",
       "__utility/auto_cast.h",


        


More information about the llvm-commits mailing list