From 66b3f4a407316004df11307b92aa603b20c0b349 Mon Sep 17 00:00:00 2001 From: Tue Ly Date: Wed, 15 Feb 2023 18:03:17 -0500 Subject: [PATCH] [libc][bazel] Add missing dependency for stdlib tests. --- utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel b/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel index 7ba34fd..285bf93 100644 --- a/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel +++ b/utils/bazel/llvm-project-overlay/libc/test/src/stdlib/BUILD.bazel @@ -13,6 +13,9 @@ licenses(["notice"]) cc_library( name = "atoi_test_helper", hdrs = ["AtoiTest.h"], + deps = [ + //libc:__support_cpp_type_traits", + ], ) libc_test( @@ -61,6 +64,10 @@ libc_test( cc_library( name = "strtol_test_helper", hdrs = ["StrtolTest.h"], + deps = [ + "//libc:__support_cpp_limits", + "//libc:__support_cpp_type_traits", + ], ) libc_test( -- 2.7.4