fba8a316c3
-- 2dd5008c7b4176859e320c7c337078adb173b662 by Tom Manshreck <shreck@google.com>: Internal change PiperOrigin-RevId: 304022549 -- 6442abd78697b03cfe698b0d0dac7f1eb4b5cb38 by Andy Getzendanner <durandal@google.com>: Internal change PiperOrigin-RevId: 303890410 -- eb8b37b468b0f23da09d3de714272928ef61f942 by Gennadiy Rozental <rogeeff@google.com>: Roll changes forward with ChunkIterator templatized. This should facilitate usage of "small" chunk iterator for a regular usage and proper "big" iterator internally in Cord implementation. This way Cord users are not exposed to stack size overhead if they have a lot of chunk iterators or recursive implementation which relies on chunk iterators. PiperOrigin-RevId: 303877118 -- 9623c569e7c55b45254e95f2d14c5badf9c901aa by Gennadiy Rozental <rogeeff@google.com>: Switch Flags implementation of fast type id to use absl/base/internal/fast_type_id.h PiperOrigin-RevId: 303861019 -- e2931e8d53c86d0816da6bbc8ba58cf5a3a443bb by Matthew Brown <matthewbr@google.com>: Internal Change PiperOrigin-RevId: 303832407 -- b549ed6e441e920b8ad6f02a80b9fd543820ef86 by Tom Manshreck <shreck@google.com>: Update Cord header file comments to Abseil standards PiperOrigin-RevId: 303823232 -- fc633d4f31a2d058f2b6a7029fc7c9820cd71c92 by Evan Brown <ezb@google.com>: Remove top-level const from K/V in map_slot_type::mutable_value and map_slot_type::key. This allows us to move between `map_slot_type::mutable_value`s internally even when the key_type and/or mapped_type specified by the user are const. PiperOrigin-RevId: 303811694 -- 909b3ce7cb3583ee9c374d36ff5f82bba02a1b64 by Derek Mauro <dmauro@google.com>: Add hardening assertions to the preconditions of absl::Cord PiperOrigin-RevId: 303419537 -- 9d32f79eabd54e6cb17bcc28b53e9bcfeb3cf6f4 by Greg Falcon <gfalcon@google.com>: Don't use MSVC-specific bit manipulations when using Clang on Windows. This fixes a compiler warning. Note that we do not have continuous testing for this configuration; this CL is best-effort support. PiperOrigin-RevId: 303322582 -- f6e0a35a2b9081d2a9eef73789b7bc1b5e46e5ad by Gennadiy Rozental <rogeeff@google.com>: Introduce standlone FastTypeId utility to represent compile time unique type id. PiperOrigin-RevId: 303180545 -- 99120e9fbdb5b2d327139ab8f617533d7bc3345b by Abseil Team <absl-team@google.com>: Changed absl's import of std::string_view to using string_view = std::string_view. This should help tools (e.g. include-what-you-use) discover where absl::string_view is defined. PiperOrigin-RevId: 303169095 GitOrigin-RevId: 2dd5008c7b4176859e320c7c337078adb173b662 Change-Id: I1e18ae08e23686ac963e7ea5e5bd499e18d51048
763 lines
18 KiB
Text
763 lines
18 KiB
Text
#
|
|
# 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.
|
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
|
|
load(
|
|
"//absl:copts/configure_copts.bzl",
|
|
"ABSL_DEFAULT_COPTS",
|
|
"ABSL_TEST_COPTS",
|
|
)
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
features = ["parse_headers"],
|
|
)
|
|
|
|
licenses(["notice"])
|
|
|
|
cc_library(
|
|
name = "strings",
|
|
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",
|
|
],
|
|
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",
|
|
],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
deps = [
|
|
":internal",
|
|
"//absl/base",
|
|
"//absl/base:bits",
|
|
"//absl/base:config",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:endian",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/base:throw_delegate",
|
|
"//absl/memory",
|
|
"//absl/meta:type_traits",
|
|
"//absl/numeric:int128",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "internal",
|
|
srcs = [
|
|
"internal/escaping.cc",
|
|
"internal/ostringstream.cc",
|
|
"internal/utf8.cc",
|
|
],
|
|
hdrs = [
|
|
"internal/char_map.h",
|
|
"internal/escaping.h",
|
|
"internal/ostringstream.h",
|
|
"internal/resize_uninitialized.h",
|
|
"internal/utf8.h",
|
|
],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
deps = [
|
|
"//absl/base:config",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:endian",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/meta:type_traits",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "match_test",
|
|
size = "small",
|
|
srcs = ["match_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "escaping_test",
|
|
size = "small",
|
|
srcs = [
|
|
"escaping_test.cc",
|
|
"internal/escaping_test_common.h",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":cord",
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"//absl/container:fixed_array",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "escaping_benchmark",
|
|
srcs = [
|
|
"escaping_benchmark.cc",
|
|
"internal/escaping_test_common.h",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:raw_logging_internal",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "ascii_test",
|
|
size = "small",
|
|
srcs = ["ascii_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "ascii_benchmark",
|
|
srcs = ["ascii_benchmark.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "memutil_benchmark",
|
|
srcs = [
|
|
"internal/memutil.h",
|
|
"internal/memutil_benchmark.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "memutil_test",
|
|
size = "small",
|
|
srcs = [
|
|
"internal/memutil.h",
|
|
"internal/memutil_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "utf8_test",
|
|
size = "small",
|
|
srcs = [
|
|
"internal/utf8_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":internal",
|
|
"//absl/base:core_headers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "string_view_benchmark",
|
|
srcs = ["string_view_benchmark.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:raw_logging_internal",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "string_view_test",
|
|
size = "small",
|
|
srcs = ["string_view_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:config",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:dynamic_annotations",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "cord_internal",
|
|
hdrs = ["internal/cord_internal.h"],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/meta:type_traits",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "cord",
|
|
srcs = [
|
|
"cord.cc",
|
|
],
|
|
hdrs = [
|
|
"cord.h",
|
|
],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
deps = [
|
|
":cord_internal",
|
|
":internal",
|
|
":str_format",
|
|
":strings",
|
|
"//absl/base",
|
|
"//absl/base:base_internal",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:endian",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/container:fixed_array",
|
|
"//absl/container:inlined_vector",
|
|
"//absl/functional:function_ref",
|
|
"//absl/meta:type_traits",
|
|
"//absl/types:optional",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "cord_test_helpers",
|
|
testonly = 1,
|
|
hdrs = [
|
|
"cord_test_helpers.h",
|
|
],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
deps = [
|
|
":cord",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "cord_test",
|
|
size = "medium",
|
|
srcs = ["cord_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":cord",
|
|
":cord_test_helpers",
|
|
":strings",
|
|
"//absl/base",
|
|
"//absl/base:config",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:endian",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/container:fixed_array",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "substitute_test",
|
|
size = "small",
|
|
srcs = ["substitute_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_replace_benchmark",
|
|
srcs = ["str_replace_benchmark.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:raw_logging_internal",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_replace_test",
|
|
size = "small",
|
|
srcs = ["str_replace_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_split_test",
|
|
srcs = ["str_split_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:dynamic_annotations",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_split_benchmark",
|
|
srcs = ["str_split_benchmark.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:raw_logging_internal",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "ostringstream_test",
|
|
size = "small",
|
|
srcs = ["internal/ostringstream_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":internal",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "ostringstream_benchmark",
|
|
srcs = ["internal/ostringstream_benchmark.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":internal",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "resize_uninitialized_test",
|
|
size = "small",
|
|
srcs = [
|
|
"internal/resize_uninitialized.h",
|
|
"internal/resize_uninitialized_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//absl/base:core_headers",
|
|
"//absl/meta:type_traits",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_join_test",
|
|
size = "small",
|
|
srcs = ["str_join_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"//absl/memory",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_join_benchmark",
|
|
srcs = ["str_join_benchmark.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_cat_test",
|
|
size = "small",
|
|
srcs = ["str_cat_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_cat_benchmark",
|
|
srcs = ["str_cat_benchmark.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "numbers_test",
|
|
size = "medium",
|
|
srcs = [
|
|
"internal/numbers_test_common.h",
|
|
"numbers_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":internal",
|
|
":pow10_helper",
|
|
":strings",
|
|
"//absl/base:config",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/random",
|
|
"//absl/random:distributions",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "numbers_benchmark",
|
|
srcs = ["numbers_benchmark.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/random",
|
|
"//absl/random:distributions",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "strip_test",
|
|
size = "small",
|
|
srcs = ["strip_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "char_map_test",
|
|
srcs = ["internal/char_map_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
deps = [
|
|
":internal",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "char_map_benchmark",
|
|
srcs = ["internal/char_map_benchmark.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
tags = ["benchmark"],
|
|
deps = [
|
|
":internal",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "charconv_test",
|
|
srcs = ["charconv_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
deps = [
|
|
":pow10_helper",
|
|
":str_format",
|
|
":strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "charconv_parse_test",
|
|
srcs = [
|
|
"internal/charconv_parse.h",
|
|
"internal/charconv_parse_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:config",
|
|
"//absl/base:raw_logging_internal",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
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 = [
|
|
":strings",
|
|
"//absl/base:config",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "charconv_benchmark",
|
|
srcs = [
|
|
"charconv_benchmark.cc",
|
|
],
|
|
tags = [
|
|
"benchmark",
|
|
],
|
|
deps = [
|
|
":strings",
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "str_format",
|
|
hdrs = [
|
|
"str_format.h",
|
|
],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
deps = [
|
|
":str_format_internal",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "str_format_internal",
|
|
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",
|
|
],
|
|
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",
|
|
],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":strings",
|
|
"//absl/base:config",
|
|
"//absl/base:core_headers",
|
|
"//absl/meta:type_traits",
|
|
"//absl/numeric:int128",
|
|
"//absl/types:span",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_format_test",
|
|
srcs = ["str_format_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":str_format",
|
|
":strings",
|
|
"//absl/base:core_headers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_format_extension_test",
|
|
srcs = [
|
|
"internal/str_format/extension_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":str_format",
|
|
":str_format_internal",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_format_arg_test",
|
|
srcs = ["internal/str_format/arg_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":str_format",
|
|
":str_format_internal",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_format_bind_test",
|
|
srcs = ["internal/str_format/bind_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":str_format_internal",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_format_checker_test",
|
|
srcs = ["internal/str_format/checker_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":str_format",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_format_convert_test",
|
|
size = "medium",
|
|
srcs = ["internal/str_format/convert_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":str_format_internal",
|
|
"//absl/base:raw_logging_internal",
|
|
"//absl/numeric:int128",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_format_output_test",
|
|
srcs = ["internal/str_format/output_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":str_format_internal",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "str_format_parser_test",
|
|
srcs = ["internal/str_format/parser_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":str_format_internal",
|
|
"//absl/base:core_headers",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "pow10_helper",
|
|
testonly = True,
|
|
srcs = ["internal/pow10_helper.cc"],
|
|
hdrs = ["internal/pow10_helper.h"],
|
|
visibility = ["//visibility:private"],
|
|
deps = ["//absl/base:config"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "pow10_helper_test",
|
|
srcs = ["internal/pow10_helper_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
":pow10_helper",
|
|
":str_format",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|