Skip to content

Commit 8e9912a

Browse files
authored
[bazel] Port #150303 some more (#150358)
1 parent dfe9fcc commit 8e9912a

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

utils/bazel/llvm-project-overlay/libc/BUILD.bazel

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,6 @@ libc_support_library(
286286
hdrs = ["hdr/stdint_proxy.h"],
287287
)
288288

289-
290289
############################ Type Proxy Header Files ###########################
291290

292291
libc_support_library(
@@ -489,6 +488,7 @@ libc_support_library(
489488
hdrs = ["src/__support/macros/properties/complex_types.h"],
490489
deps = [
491490
":__support_macros_properties_types",
491+
":hdr_stdint_proxy",
492492
":llvm_libc_types_cfloat128",
493493
":llvm_libc_types_cfloat16",
494494
],
@@ -504,6 +504,7 @@ libc_support_library(
504504
":__support_macros_properties_cpu_features",
505505
":__support_macros_properties_os",
506506
":hdr_float_macros",
507+
":hdr_stdint_proxy",
507508
":llvm_libc_macros_float16_macros",
508509
":llvm_libc_types_float128",
509510
],
@@ -671,6 +672,7 @@ libc_support_library(
671672
hdrs = ["src/__support/CPP/optional.h"],
672673
deps = [
673674
":__support_cpp_utility",
675+
":hdr_stdint_proxy",
674676
],
675677
)
676678

@@ -731,6 +733,7 @@ libc_support_library(
731733
":__support_macros_config",
732734
":__support_macros_properties_complex_types",
733735
":__support_macros_properties_types",
736+
":hdr_stdint_proxy",
734737
":llvm_libc_macros_stdfix_macros",
735738
],
736739
)
@@ -753,6 +756,7 @@ libc_support_library(
753756
":__support_cpp_type_traits",
754757
":__support_macros_attributes",
755758
":__support_macros_properties_architectures",
759+
":hdr_stdint_proxy",
756760
],
757761
)
758762

utils/bazel/llvm-project-overlay/libc/test/src/string/BUILD.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ libc_test_library(
126126
"//libc:__support_libc_assert",
127127
"//libc:__support_macros_config",
128128
"//libc:__support_macros_sanitizer",
129+
"//libc:hdr_stdint_proxy",
129130
"//libc:string_memory_utils",
130131
],
131132
)
@@ -136,6 +137,7 @@ libc_test_library(
136137
deps = [
137138
"//libc:__support_macros_attributes",
138139
"//libc:__support_macros_properties_os",
140+
"//libc:hdr_stdint_proxy",
139141
],
140142
)
141143

utils/bazel/llvm-project-overlay/libc/utils/MPFRWrapper/BUILD.bazel

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ libc_test_library(
3838
},
3939
),
4040
deps = [
41+
":mpfr_impl",
4142
"//libc:__support_common",
4243
"//libc:__support_cpp_string",
4344
"//libc:__support_cpp_string_view",
@@ -48,8 +49,8 @@ libc_test_library(
4849
"//libc:__support_fputil_fp_bits",
4950
"//libc:__support_macros_config",
5051
"//libc:__support_macros_properties_types",
52+
"//libc:hdr_stdint_proxy",
5153
"//libc/test/UnitTest:fp_test_helpers",
52-
"//libc/utils/MPFRWrapper:mpfr_impl",
5354
],
5455
)
5556

@@ -66,6 +67,7 @@ libc_test_library(
6667
),
6768
deps = [
6869
":mp_common",
70+
":mpfr_impl",
6971
"//libc:__support_common",
7072
"//libc:__support_cpp_array",
7173
"//libc:__support_cpp_bit",
@@ -80,8 +82,8 @@ libc_test_library(
8082
"//libc:__support_macros_config",
8183
"//libc:__support_macros_properties_types",
8284
"//libc:hdr_math_macros",
85+
"//libc:hdr_stdint_proxy",
8386
"//libc/test/UnitTest:LibcUnitTest",
8487
"//libc/test/UnitTest:fp_test_helpers",
85-
"//libc/utils/MPFRWrapper:mpfr_impl",
8688
],
8789
)

0 commit comments

Comments
 (0)