2017-09-19 22:54:40 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
# http://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(
|
|
|
|
"//absl:copts.bzl",
|
|
|
|
"ABSL_DEFAULT_COPTS",
|
|
|
|
"ABSL_TEST_COPTS",
|
|
|
|
"ABSL_EXCEPTIONS_FLAG",
|
|
|
|
)
|
|
|
|
|
|
|
|
package(
|
|
|
|
default_visibility = ["//visibility:public"],
|
2017-11-15 22:00:30 +01:00
|
|
|
features = ["parse_headers"],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "strings",
|
|
|
|
srcs = [
|
|
|
|
"ascii.cc",
|
2018-06-18 22:18:53 +02:00
|
|
|
"charconv.cc",
|
2017-09-19 22:54:40 +02:00
|
|
|
"escaping.cc",
|
2018-06-18 22:18:53 +02:00
|
|
|
"internal/charconv_bigint.cc",
|
|
|
|
"internal/charconv_bigint.h",
|
|
|
|
"internal/charconv_parse.cc",
|
|
|
|
"internal/charconv_parse.h",
|
2017-09-19 22:54:40 +02:00
|
|
|
"internal/memutil.cc",
|
|
|
|
"internal/memutil.h",
|
2018-01-03 18:52:58 +01:00
|
|
|
"internal/stl_type_traits.h",
|
2017-09-19 22:54:40 +02:00
|
|
|
"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",
|
2018-06-18 22:18:53 +02:00
|
|
|
"charconv.h",
|
2017-09-19 22:54:40 +02:00
|
|
|
"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:config",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/base:endian",
|
|
|
|
"//absl/base:throw_delegate",
|
|
|
|
"//absl/memory",
|
|
|
|
"//absl/meta:type_traits",
|
|
|
|
"//absl/numeric:int128",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "internal",
|
|
|
|
srcs = [
|
2017-11-14 22:17:47 +01:00
|
|
|
"internal/ostringstream.cc",
|
2017-09-19 22:54:40 +02:00
|
|
|
"internal/utf8.cc",
|
|
|
|
],
|
|
|
|
hdrs = [
|
2018-05-14 22:41:38 +02:00
|
|
|
"internal/bits.h",
|
2017-09-19 22:54:40 +02:00
|
|
|
"internal/char_map.h",
|
|
|
|
"internal/ostringstream.h",
|
|
|
|
"internal/resize_uninitialized.h",
|
|
|
|
"internal/utf8.h",
|
|
|
|
],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
|
|
deps = [
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/base:endian",
|
|
|
|
"//absl/meta:type_traits",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "match_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["match_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-26 00:35:12 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "escaping_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = [
|
|
|
|
"escaping_test.cc",
|
2018-05-31 21:26:35 +02:00
|
|
|
"internal/escaping_test_common.h",
|
2017-09-19 22:54:40 +02:00
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/container:fixed_array",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-05-24 19:33:14 +02:00
|
|
|
cc_test(
|
|
|
|
name = "escaping_benchmark",
|
|
|
|
srcs = [
|
|
|
|
"escaping_benchmark.cc",
|
2018-05-31 21:26:35 +02:00
|
|
|
"internal/escaping_test_common.h",
|
2018-05-24 19:33:14 +02:00
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
tags = ["benchmark"],
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base",
|
2018-05-31 21:26:35 +02:00
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
2018-05-24 19:33:14 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_test(
|
|
|
|
name = "ascii_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["ascii_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base:core_headers",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-07-19 20:45:32 +02:00
|
|
|
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",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2018-06-08 17:14:48 +02:00
|
|
|
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",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_test(
|
|
|
|
name = "memutil_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = [
|
|
|
|
"internal/memutil.h",
|
|
|
|
"internal/memutil_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base:core_headers",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "utf8_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = [
|
|
|
|
"internal/utf8_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":internal",
|
2017-09-26 00:35:12 +02:00
|
|
|
":strings",
|
2017-09-24 17:20:48 +02:00
|
|
|
"//absl/base:core_headers",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-05-18 17:24:54 +02:00
|
|
|
cc_test(
|
|
|
|
name = "string_view_benchmark",
|
|
|
|
srcs = ["string_view_benchmark.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
tags = ["benchmark"],
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base",
|
|
|
|
"//absl/base:core_headers",
|
2018-05-31 21:26:35 +02:00
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
2018-05-18 17:24:54 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_test(
|
|
|
|
name = "string_view_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["string_view_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS + ABSL_EXCEPTIONS_FLAG,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base:config",
|
2017-09-26 00:35:12 +02:00
|
|
|
"//absl/base:core_headers",
|
2017-09-19 22:54:40 +02:00
|
|
|
"//absl/base:dynamic_annotations",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "substitute_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["substitute_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base:core_headers",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-05-18 17:24:54 +02:00
|
|
|
cc_test(
|
|
|
|
name = "str_replace_benchmark",
|
|
|
|
srcs = ["str_replace_benchmark.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
tags = ["benchmark"],
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base",
|
2018-05-31 21:26:35 +02:00
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
2018-05-18 17:24:54 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_test(
|
|
|
|
name = "str_replace_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["str_replace_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "str_split_test",
|
|
|
|
srcs = ["str_split_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/base:dynamic_annotations",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-05-18 17:24:54 +02:00
|
|
|
cc_test(
|
|
|
|
name = "str_split_benchmark",
|
|
|
|
srcs = ["str_split_benchmark.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
tags = ["benchmark"],
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base",
|
2018-05-31 21:26:35 +02:00
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
2018-05-18 17:24:54 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_test(
|
|
|
|
name = "ostringstream_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["internal/ostringstream_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":internal",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-05-31 21:26:35 +02:00
|
|
|
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",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_test(
|
|
|
|
name = "resize_uninitialized_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = [
|
|
|
|
"internal/resize_uninitialized.h",
|
|
|
|
"internal/resize_uninitialized_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/meta:type_traits",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "str_join_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["str_join_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/memory",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-05-18 17:24:54 +02:00
|
|
|
cc_test(
|
|
|
|
name = "str_join_benchmark",
|
|
|
|
srcs = ["str_join_benchmark.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
tags = ["benchmark"],
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/memory",
|
2018-05-31 21:26:35 +02:00
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
2018-05-18 17:24:54 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_test(
|
|
|
|
name = "str_cat_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["str_cat_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base:core_headers",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-05-18 17:24:54 +02:00
|
|
|
cc_test(
|
|
|
|
name = "str_cat_benchmark",
|
|
|
|
srcs = ["str_cat_benchmark.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
tags = ["benchmark"],
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
":strings",
|
2018-05-31 21:26:35 +02:00
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
2018-05-18 17:24:54 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_test(
|
|
|
|
name = "numbers_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = [
|
2018-05-31 21:26:35 +02:00
|
|
|
"internal/numbers_test_common.h",
|
2017-09-19 22:54:40 +02:00
|
|
|
"numbers_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base",
|
|
|
|
"//absl/base:core_headers",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-06-27 19:58:26 +02:00
|
|
|
cc_test(
|
|
|
|
name = "numbers_benchmark",
|
|
|
|
srcs = ["numbers_benchmark.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
tags = ["benchmark"],
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base",
|
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_test(
|
|
|
|
name = "strip_test",
|
|
|
|
size = "small",
|
|
|
|
srcs = ["strip_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = ["//visibility:private"],
|
2017-09-26 00:35:12 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "char_map_test",
|
|
|
|
srcs = ["internal/char_map_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
deps = [
|
|
|
|
":internal",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
2018-05-31 21:26:35 +02:00
|
|
|
|
|
|
|
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",
|
|
|
|
],
|
|
|
|
)
|
2018-06-18 22:18:53 +02:00
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "charconv_test",
|
|
|
|
srcs = ["charconv_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base",
|
|
|
|
"@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",
|
|
|
|
"@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",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "charconv_benchmark",
|
|
|
|
srcs = [
|
|
|
|
"charconv_benchmark.cc",
|
|
|
|
],
|
2018-06-26 19:45:35 +02:00
|
|
|
tags = [
|
|
|
|
"benchmark",
|
|
|
|
],
|
2018-06-18 22:18:53 +02:00
|
|
|
deps = [
|
|
|
|
":strings",
|
|
|
|
"//absl/base",
|
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
|
|
],
|
|
|
|
)
|
2018-06-21 21:55:12 +02:00
|
|
|
|
|
|
|
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:core_headers",
|
|
|
|
"//absl/container:inlined_vector",
|
|
|
|
"//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 = "small",
|
|
|
|
srcs = ["internal/str_format/convert_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
":str_format_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",
|
|
|
|
],
|
|
|
|
)
|