Previously, the entire support/CPP folder was in one header library, which meant that a lot of headers were included where they shouldn't be. This patch splits each header into its own target, as well as adjusting each place they were included to only include what is used. Reviewed By: sivachandra, lntue Differential Revision: https://reviews.llvm.org/D121237
14 lines
312 B
CMake
14 lines
312 B
CMake
add_libc_testsuite(libc_unittest_tests)
|
|
|
|
add_libc_unittest(
|
|
testfilter_test
|
|
SUITE
|
|
libc_unittest_tests
|
|
SRCS
|
|
testfilter_test.cpp
|
|
DEPENDS
|
|
# TODO(michaelrj): Remove this dependancy. It's only here because all unit
|
|
# tests must have at least one dependancy.
|
|
libc.src.__support.CPP.bit
|
|
)
|