[bazel] Fix libc target deps after 7090c102731192d5abafb7e0b2b49adb4912efae
authorJorge Gorbe Moya <jgorbe@google.com>
Tue, 25 Apr 2023 17:46:58 +0000 (10:46 -0700)
committerJorge Gorbe Moya <jgorbe@google.com>
Tue, 25 Apr 2023 17:47:53 +0000 (10:47 -0700)
utils/bazel/llvm-project-overlay/libc/BUILD.bazel

index 424986a..4fc5202 100644 (file)
@@ -156,7 +156,12 @@ libc_support_library(
 libc_support_library(
     name = "__support_cpp_functional",
     hdrs = ["src/__support/CPP/functional.h"],
-    deps = [":libc_root"],
+    deps = [
+        "__support_cpp_type_traits",
+        "__support_cpp_utility",
+        "__support_macros_attributes",
+        ":libc_root",
+    ],
 )
 
 libc_support_library(
@@ -214,6 +219,7 @@ libc_support_library(
     hdrs = ["src/__support/CPP/utility.h"],
     deps = [
         ":__support_cpp_type_traits",
+        ":__support_macros_attributes",
         ":libc_root",
     ],
 )