ca3f87560a
-- 5a5dba4252e764e6737070bf0a31074bf23a3b41 by Abseil Team <absl-team@google.com>: Internal change. PiperOrigin-RevId: 244898913 -- 3eb7d5b445ffbf08a104e39cd15aecf568417333 by Matt Calabrese <calabrese@google.com>: Introduce absl::is_trivially_move_constructible and absl::is_trivially_move_assignable, and update the absl::is_trivially_copy_constructible and absl::is_trivially_copy_assignable traits to use similar techniques (should now be closer to the standard behavior). PiperOrigin-RevId: 244859015 -- 7da05a24fa786cab3985de0c39a186d73dcbcfb5 by Abseil Team <absl-team@google.com>: Fix misspellings in comments in raw_hash_set.h. PiperOrigin-RevId: 244754700 -- 5c057be96048f21473d5ec45005ab4dcd8dd354f by Derek Mauro <dmauro@google.com>: Internal change PiperOrigin-RevId: 244744239 -- 592394e3c2e98f1238d3fb6fcb0d20c3e3739ba9 by Derek Mauro <dmauro@google.com>: Limit the raw_hash_set prefetch test to x86-64. PiperOrigin-RevId: 244737534 -- 99ebe4e003633c8ff7838b035b31a827994879ef by Derek Mauro <dmauro@google.com>: Workaround warning 4091 in an MSVC header. PiperOrigin-RevId: 244701744 -- 0aa23f09a32efe7985ee55b0217190f08da42477 by Abseil Team <absl-team@google.com>: Fix comment typo. PiperOrigin-RevId: 244659371 -- c6cdb87e9f28062c8daa29b3d8d68182ecc16383 by Derek Mauro <dmauro@google.com>: Fix -Wundef warnings and support -Wundef. PiperOrigin-RevId: 244244968 -- 06b81245f7696b20c3c63b0618d33ac25e29cad6 by Abseil Team <absl-team@google.com>: Fix a typo in inlined_vector.h. PiperOrigin-RevId: 244230809 -- 94877a2125d2cfe837384240e4d6551f39d737e4 by Greg Falcon <gfalcon@google.com>: Fix sysinfo_test for emscripten. PiperOrigin-RevId: 244198804 -- ec7783531ef7f9df2da37d341d61f7cb2bf843f0 by Shaindel Schwartz <shaindel@google.com>: Import of CCTZ from GitHub. Fixes #291. PiperOrigin-RevId: 244184598 -- b652c14fa95ea206c217487ee713b11f5d1762b3 by Matt Calabrese <calabrese@google.com>: Emulate the `in_place_index` and `in_place_type` variable templates such that they are syntactically usable in C++11 with `any` and `variant`. Also pull in the variable templates from namespace std when available. The main observable differences here are: 1) The types of `in_place_index_t<I>` and `in_place_type_t<T>` become function pointer types rather than structs when using the implementation that is not an alias of the std equivalents. 2) The types of `in_place_index<I>` and `in_place_type<T>` are not directly `in_place_index_t<I>` and `in_place_type_t<T>`, but rather they become function types that decay to the corresponding function pointer types. 3) The default constructor for `in_place_index_t` and `in_place_type_t` instantiations is no longer explicit, but for these templates I think that's less important than for something like `in_place_t` since the _type_t and _index_t versions basically never have their template parameter non-deduced when participating in overload resolution with conflicting candidates. 4) While idiomatic usage of `in_place_type_t` and `in_place_index_t` with std::variant and std::any should not be affected, there is the possibility that strange, non-idiomatic uses may be affected in the wild. 5) Default construction (rather than value-initialization) leads to a default-constructed pointer. PiperOrigin-RevId: 244180003 -- b9ac5a96581837ffa24532117b7ea302a5569751 by Derek Mauro <dmauro@google.com>: Fix MSVC debug assertion. isprint is undefined for values not representable as unsigned char or EOF. PiperOrigin-RevId: 244083005 -- 41758be6137c2f25e84b50f23938e49484be2903 by Shaindel Schwartz <shaindel@google.com>: Update config settings for Apple platforms. PiperOrigin-RevId: 244040587 -- c90df6a26db94b0305a0c954455a621542a89d91 by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 244024427 -- c71e9ceb89495354eca7d02bd905ffeaa9029aec by Derek Mauro <dmauro@google.com>: Adds missing ABSL_DEFAULT_COPTS and ABSL_TEST_COPTS to CMakeLists.txt Don't error on deprecated declarations in tests. It is completely reasonable to test that code marked deprecated still works. PiperOrigin-RevId: 244003941 -- e1326a96527a8ba9b8d120161545260da9c4562e by Abseil Team <absl-team@google.com>: Internal change. PiperOrigin-RevId: 243990623 -- 90b8e12934c7711e1bfcc0117d21288bf9220dee by Abseil Team <absl-team@google.com>: Add variation of absl::Base64Escape/WebSafeBase64Escape that directly returns its result. PiperOrigin-RevId: 243894308 -- 317fef3344481ebc5c35712d42f5d8a0fa64dff4 by Abseil Team <absl-team@google.com>: Enable raw logging in Emscripten builds. PiperOrigin-RevId: 243893705 GitOrigin-RevId: 5a5dba4252e764e6737070bf0a31074bf23a3b41 Change-Id: I19293aab73cc98d9e9bf6a9fdc30819764adb9db
520 lines
8.2 KiB
CMake
520 lines
8.2 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::core_headers
|
|
absl::inlined_vector
|
|
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
|
|
)
|