4132ce2595
- 0a519d9a4507158267cc515e0c7c83959d94fc78 Fix missing header include when compiling with _GLIBCXX_D... by Alex Strelnikov <strel@google.com> - d089af70781d92af9a5de2d84c417ddf2c87689a Internal change by Gennadiy Rozental <rogeeff@google.com> - 0d3afc89d3907923ede964d58c6bcca579e8ad65 Test absl::any for exception safety. This test is tempor... by Jon Cohen <cohenjon@google.com> - 29af424b8a3174a7b3e657e478aa30a8a425aee2 Tweak the ABSL type trait library and expand its tests. by Abseil Team <absl-team@google.com> - 99ab42b2ebbe466cc3730fb6b16b5fad848f95af Rollback GLIBCXX_DEBUG fix due to internal breakage. by Alex Strelnikov <strel@google.com> - 1a5bcb93ee16d4dd2170254e54c4b62b38fbf17b Internal change. by Abseil Team <absl-team@google.com> - 46de7d09c7d4aef5b7b5389ce9b4f96b654aac02 absl::string_view::rfind: doc fix. by Abseil Team <absl-team@google.com> - edda4c7ddd2d76fbb5b3fd5226b95082083c57d9 Fix string_view_test with c++17/clang/libc++ to address by Xiaoyi Zhang <zhangxy@google.com> GitOrigin-RevId: 0a519d9a4507158267cc515e0c7c83959d94fc78 Change-Id: Ie27de1be3e79bba011f05e924d34e8fcc62d8de5
183 lines
4.2 KiB
Text
183 lines
4.2 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
|
|
#
|
|
# 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"])
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
cc_library(
|
|
name = "any",
|
|
hdrs = ["any.h"],
|
|
copts = ABSL_DEFAULT_COPTS + ABSL_EXCEPTIONS_FLAG,
|
|
deps = [
|
|
":bad_any_cast",
|
|
"//absl/base:config",
|
|
"//absl/base:core_headers",
|
|
"//absl/meta:type_traits",
|
|
"//absl/utility",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "bad_any_cast",
|
|
srcs = ["bad_any_cast.cc"],
|
|
hdrs = ["bad_any_cast.h"],
|
|
copts = ABSL_EXCEPTIONS_FLAG + ABSL_DEFAULT_COPTS,
|
|
deps = [
|
|
"//absl/base",
|
|
"//absl/base:config",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "any_test",
|
|
size = "small",
|
|
srcs = [
|
|
"any_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS + ABSL_EXCEPTIONS_FLAG,
|
|
deps = [
|
|
":any",
|
|
"//absl/base",
|
|
"//absl/base:config",
|
|
"//absl/base:exception_testing",
|
|
"//absl/container:test_instance_tracker",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "any_test_noexceptions",
|
|
size = "small",
|
|
srcs = [
|
|
"any_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS,
|
|
deps = [
|
|
":any",
|
|
"//absl/base",
|
|
"//absl/base:config",
|
|
"//absl/base:exception_testing",
|
|
"//absl/container:test_instance_tracker",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "any_exception_safety_test",
|
|
srcs = ["any_exception_safety_test.cc"],
|
|
copts = ABSL_TEST_COPTS + ABSL_EXCEPTIONS_FLAG,
|
|
deps = [
|
|
":any",
|
|
"//absl/base:exception_safety_testing",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "span",
|
|
hdrs = ["span.h"],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
deps = [
|
|
"//absl/algorithm",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:throw_delegate",
|
|
"//absl/meta:type_traits",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "span_test",
|
|
size = "small",
|
|
srcs = ["span_test.cc"],
|
|
copts = ABSL_TEST_COPTS + ["-fexceptions"],
|
|
deps = [
|
|
":span",
|
|
"//absl/base:config",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:exception_testing",
|
|
"//absl/container:fixed_array",
|
|
"//absl/container:inlined_vector",
|
|
"//absl/strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "span_test_noexceptions",
|
|
size = "small",
|
|
srcs = ["span_test.cc"],
|
|
copts = ABSL_TEST_COPTS,
|
|
deps = [
|
|
":span",
|
|
"//absl/base:config",
|
|
"//absl/base:core_headers",
|
|
"//absl/base:exception_testing",
|
|
"//absl/container:fixed_array",
|
|
"//absl/container:inlined_vector",
|
|
"//absl/strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "optional",
|
|
srcs = ["optional.cc"],
|
|
hdrs = ["optional.h"],
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
deps = [
|
|
":bad_optional_access",
|
|
"//absl/base:config",
|
|
"//absl/memory",
|
|
"//absl/meta:type_traits",
|
|
"//absl/utility",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "bad_optional_access",
|
|
srcs = ["bad_optional_access.cc"],
|
|
hdrs = ["bad_optional_access.h"],
|
|
copts = ABSL_DEFAULT_COPTS + ABSL_EXCEPTIONS_FLAG,
|
|
deps = [
|
|
"//absl/base",
|
|
"//absl/base:config",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "optional_test",
|
|
size = "small",
|
|
srcs = [
|
|
"optional_test.cc",
|
|
],
|
|
copts = ABSL_TEST_COPTS + ABSL_EXCEPTIONS_FLAG,
|
|
deps = [
|
|
":optional",
|
|
"//absl/base",
|
|
"//absl/base:config",
|
|
"//absl/meta:type_traits",
|
|
"//absl/strings",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|