[bazel] Add missing deps for parsing headers standalone

Needed for 019a477c88
This commit is contained in:
Jordan Rupprecht
2023-08-07 14:08:06 -07:00
parent b743c19360
commit c192b3d728

View File

@@ -146,7 +146,10 @@ libc_support_library(
libc_support_library(
name = "__support_cpp_array",
hdrs = ["src/__support/CPP/array.h"],
deps = [":libc_root"],
deps = [
":__support_macros_attributes",
":libc_root",
],
)
libc_support_library(
@@ -428,6 +431,7 @@ libc_support_library(
libc_support_library(
name = "__support_ctype_utils",
hdrs = ["src/__support/ctype_utils.h"],
deps = [":__support_macros_attributes"],
)
libc_support_library(