e6b050212c
-- c2e2e2b21c3fe59b63279e7418c93c7289ee3e27 by Mark Barolak <mbar@google.com>: Import of CCTZ from GitHub. PiperOrigin-RevId: 256220326 -- 3996b01f0c3eb60f72825b154dce8019b6215f1d by Derek Mauro <dmauro@google.com>: Add GCC 4.9 test script. This will become our new minumum version and GCC 4.8 will be removed soon. PiperOrigin-RevId: 256160891 -- 2c13aa44bc8e497ebae9abe8b8adf73c2152622d by Abseil Team <absl-team@google.com>: [Trivial] tweak flat_hash_map.h doc comment The comment is probably right both ways, but the lack of an "if" here seemed jarring to me. PiperOrigin-RevId: 256089069 -- 16bc03b9b30fbf08d7dc61025fa8ec4b57077be8 by Abseil Team <absl-team@google.com>: Fix symbolization for elf files whose SYMTAB section is stripped, but have a DYNSYM section. Previously, if we did not find a SYMTAB section, we would bail out of symbolization early, rather than checking the DYNSYM section. PiperOrigin-RevId: 256061954 -- 4c60ee329b1eeb0b0d10c4f76f282e5fbae2c5b2 by Derek Mauro <dmauro@google.com>: Update to LLVM r363242 and Bazel 0.27.0 PiperOrigin-RevId: 256024405 -- 18e1ba970d33f122026803d8ca90035b9088949d by Eric Fiselier <ericwf@google.com>: Disable variant tests that break with P0608R3 PiperOrigin-RevId: 255975764 -- 0a89858464977e86096b62476faa3b64eb94aa1d by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 255891019 -- 9b7424cac66f5407f0ed74ed288bf3099a4fa330 by CJ Johnson <johnsoncj@google.com>: Updates the implementation of InlinedVector::insert(...) to be exception safe and adds an exception safety tests for insert(...) PiperOrigin-RevId: 255881809 -- 1288f4ba3883c510d92b09437fb8b051c19aa241 by CJ Johnson <johnsoncj@google.com>: Updates the implementation of InlinedVector::insert(...) to be exception safe and adds an exception safety tests for insert(...) PiperOrigin-RevId: 255875277 -- 39c04f3621491eaff9e2eda619718d5b5f20fbd9 by Abseil Team <absl-team@google.com>: Use a typedef to allow building with NVCC Without this change NVCC fails to compile compressed_tuple.h. NVCC is relevant because TensorFlow uses NVCC on Ubuntu and inclues abseil. PiperOrigin-RevId: 255850176 -- e23f0309ccad69eb508ca02c9034cd4cdd740da0 by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 255787167 -- 054aafcebf595077054164f1da3703124ab209b4 by Abseil Team <absl-team@google.com>: Updates the ScopedAllocatorWorks test for InlinedVector to not rely on the byte count allocated by the standard library In doing so, removes LegacyNextCapacityFrom(...) impl function from InlinedVector Also applies clang-format to the test file PiperOrigin-RevId: 255760356 -- eb05fc9f78e3a163c93f1866e9fe9a8ad0d01622 by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 255706834 -- 97abb824417604c45d9fcbb3e4ff1aa3000836f2 by Jorg Brown <jorg@google.com>: Enhance compatibility of abseil's strings package with nvcc. PiperOrigin-RevId: 255688500 -- efc5b9c221ee31e15d10b35d31c8f3ae6eddaa8c by Abseil Team <absl-team@google.com>: Follow CCTZ's lead and allow GetWeekday() and GetYearDay() to be called with any civil-time type. A CivilSecond, for example, has a weekday just as much as a CivilDay does. PiperOrigin-RevId: 255659840 -- a75acbe954457919d8c6c8f4c2339b543760b375 by Derek Mauro <dmauro@google.com>: Increase the timeout of randen_engine_test. It seems to timeout under TSAN often enough to justify the increase. PiperOrigin-RevId: 255628086 -- 160976ba47c7c6eb57af08e21f8eb640aa51e91b by Derek Mauro <dmauro@google.com>: Update CMake documentation Fixes https://github.com/abseil/abseil-cpp/issues/332 PiperOrigin-RevId: 255607313 GitOrigin-RevId: c2e2e2b21c3fe59b63279e7418c93c7289ee3e27 Change-Id: Iba4ac7ed23cbcdb22965b4958601f689be92cda4
520 lines
8.1 KiB
CMake
520 lines
8.1 KiB
CMake
#
|
|
# Copyright 2017 The Abseil Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
absl_cc_library(
|
|
NAME
|
|
strings
|
|
HDRS
|
|
"ascii.h"
|
|
"charconv.h"
|
|
"escaping.h"
|
|
"match.h"
|
|
"numbers.h"
|
|
"str_cat.h"
|
|
"str_join.h"
|
|
"str_replace.h"
|
|
"str_split.h"
|
|
"string_view.h"
|
|
"strip.h"
|
|
"substitute.h"
|
|
SRCS
|
|
"ascii.cc"
|
|
"charconv.cc"
|
|
"escaping.cc"
|
|
"internal/charconv_bigint.cc"
|
|
"internal/charconv_bigint.h"
|
|
"internal/charconv_parse.cc"
|
|
"internal/charconv_parse.h"
|
|
"internal/memutil.cc"
|
|
"internal/memutil.h"
|
|
"internal/stl_type_traits.h"
|
|
"internal/str_join_internal.h"
|
|
"internal/str_split_internal.h"
|
|
"match.cc"
|
|
"numbers.cc"
|
|
"str_cat.cc"
|
|
"str_replace.cc"
|
|
"str_split.cc"
|
|
"string_view.cc"
|
|
"substitute.cc"
|
|
COPTS
|
|
${ABSL_DEFAULT_COPTS}
|
|
DEPS
|
|
absl::strings_internal
|
|
absl::base
|
|
absl::bits
|
|
absl::config
|
|
absl::core_headers
|
|
absl::endian
|
|
absl::throw_delegate
|
|
absl::memory
|
|
absl::type_traits
|
|
absl::int128
|
|
PUBLIC
|
|
)
|
|
|
|
absl_cc_library(
|
|
NAME
|
|
strings_internal
|
|
HDRS
|
|
"internal/char_map.h"
|
|
"internal/ostringstream.h"
|
|
"internal/resize_uninitialized.h"
|
|
"internal/utf8.h"
|
|
SRCS
|
|
"internal/ostringstream.cc"
|
|
"internal/utf8.cc"
|
|
COPTS
|
|
${ABSL_DEFAULT_COPTS}
|
|
DEPS
|
|
absl::core_headers
|
|
absl::endian
|
|
absl::type_traits
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
match_test
|
|
SRCS
|
|
"match_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::base
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
escaping_test
|
|
SRCS
|
|
"escaping_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::core_headers
|
|
absl::fixed_array
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
ascii_test
|
|
SRCS
|
|
"ascii_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::core_headers
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
memutil_test
|
|
SRCS
|
|
"internal/memutil.h"
|
|
"internal/memutil_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::core_headers
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
utf8_test
|
|
SRCS
|
|
"internal/utf8_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings_internal
|
|
absl::base
|
|
absl::core_headers
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
string_view_test
|
|
SRCS
|
|
"string_view_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
${ABSL_EXCEPTIONS_FLAG}
|
|
LINKOPTS
|
|
${ABSL_EXCEPTIONS_FLAG_LINKOPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::config
|
|
absl::core_headers
|
|
absl::dynamic_annotations
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
substitute_test
|
|
SRCS
|
|
"substitute_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::core_headers
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_replace_test
|
|
SRCS
|
|
"str_replace_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_split_test
|
|
SRCS
|
|
"str_split_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::base
|
|
absl::core_headers
|
|
absl::dynamic_annotations
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
ostringstream_test
|
|
SRCS
|
|
"internal/ostringstream_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings_internal
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
resize_uninitialized_test
|
|
SRCS
|
|
"internal/resize_uninitialized.h"
|
|
"internal/resize_uninitialized_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::base
|
|
absl::core_headers
|
|
absl::type_traits
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_join_test
|
|
SRCS
|
|
"str_join_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::base
|
|
absl::core_headers
|
|
absl::memory
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_cat_test
|
|
SRCS
|
|
"str_cat_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::core_headers
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
numbers_test
|
|
SRCS
|
|
"internal/numbers_test_common.h"
|
|
"numbers_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::base
|
|
absl::core_headers
|
|
absl::pow10_helper
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
strip_test
|
|
SRCS
|
|
"strip_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::base
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
char_map_test
|
|
SRCS
|
|
"internal/char_map_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings_internal
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
charconv_test
|
|
SRCS
|
|
"charconv_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::str_format
|
|
absl::base
|
|
absl::pow10_helper
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
charconv_parse_test
|
|
SRCS
|
|
"internal/charconv_parse.h"
|
|
"internal/charconv_parse_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::base
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
charconv_bigint_test
|
|
SRCS
|
|
"internal/charconv_bigint.h"
|
|
"internal/charconv_bigint_test.cc"
|
|
"internal/charconv_parse.h"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::base
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_library(
|
|
NAME
|
|
str_format
|
|
HDRS
|
|
"str_format.h"
|
|
COPTS
|
|
${ABSL_DEFAULT_COPTS}
|
|
DEPS
|
|
absl::str_format_internal
|
|
PUBLIC
|
|
)
|
|
|
|
absl_cc_library(
|
|
NAME
|
|
str_format_internal
|
|
HDRS
|
|
"internal/str_format/arg.h"
|
|
"internal/str_format/bind.h"
|
|
"internal/str_format/checker.h"
|
|
"internal/str_format/extension.h"
|
|
"internal/str_format/float_conversion.h"
|
|
"internal/str_format/output.h"
|
|
"internal/str_format/parser.h"
|
|
SRCS
|
|
"internal/str_format/arg.cc"
|
|
"internal/str_format/bind.cc"
|
|
"internal/str_format/extension.cc"
|
|
"internal/str_format/float_conversion.cc"
|
|
"internal/str_format/output.cc"
|
|
"internal/str_format/parser.cc"
|
|
COPTS
|
|
${ABSL_DEFAULT_COPTS}
|
|
DEPS
|
|
absl::strings
|
|
absl::config
|
|
absl::core_headers
|
|
absl::type_traits
|
|
absl::int128
|
|
absl::span
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_format_test
|
|
SRCS
|
|
"str_format_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::str_format
|
|
absl::strings
|
|
absl::core_headers
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_format_extension_test
|
|
SRCS
|
|
"internal/str_format/extension_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::str_format
|
|
absl::str_format_internal
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_format_arg_test
|
|
SRCS
|
|
"internal/str_format/arg_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::str_format
|
|
absl::str_format_internal
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_format_bind_test
|
|
SRCS
|
|
"internal/str_format/bind_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::str_format_internal
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_format_checker_test
|
|
SRCS
|
|
"internal/str_format/checker_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::str_format
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_format_convert_test
|
|
SRCS
|
|
"internal/str_format/convert_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::str_format_internal
|
|
absl::int128
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_format_output_test
|
|
SRCS
|
|
"internal/str_format/output_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::str_format_internal
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
str_format_parser_test
|
|
SRCS
|
|
"internal/str_format/parser_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::str_format_internal
|
|
absl::core_headers
|
|
gmock_main
|
|
)
|
|
|
|
absl_cc_library(
|
|
NAME
|
|
pow10_helper
|
|
HDRS
|
|
"internal/pow10_helper.h"
|
|
SRCS
|
|
"internal/pow10_helper.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
TESTONLY
|
|
)
|
|
|
|
absl_cc_test(
|
|
NAME
|
|
pow10_helper_test
|
|
SRCS
|
|
"internal/pow10_helper_test.cc"
|
|
COPTS
|
|
${ABSL_TEST_COPTS}
|
|
DEPS
|
|
absl::pow10_helper
|
|
absl::str_format
|
|
gmock_main
|
|
)
|