[libc][bazel] Fix missing dependency in test/src/stdlib targets.

This commit is contained in:
Tue Ly 2023-02-18 10:16:13 -05:00
parent a8831631c7
commit 4d5fd9b79f

View File

@ -15,6 +15,7 @@ cc_library(
hdrs = ["AtoiTest.h"],
deps = [
"//libc:__support_cpp_type_traits",
"//libc/test/UnitTest:LibcUnitTest",
],
)
@ -76,6 +77,7 @@ cc_library(
deps = [
"//libc:__support_cpp_limits",
"//libc:__support_cpp_type_traits",
"//libc/test/UnitTest:LibcUnitTest",
],
)