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",
|
2018-01-23 18:07:44 +01:00
|
|
|
"ABSL_EXCEPTIONS_FLAG",
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "fixed_array",
|
|
|
|
hdrs = ["fixed_array.h"],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
|
|
deps = [
|
|
|
|
"//absl/algorithm",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/base:dynamic_annotations",
|
|
|
|
"//absl/base:throw_delegate",
|
2018-01-02 17:53:02 +01:00
|
|
|
"//absl/memory",
|
2017-09-19 22:54:40 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "fixed_array_test",
|
|
|
|
srcs = ["fixed_array_test.cc"],
|
2018-01-23 18:07:44 +01:00
|
|
|
copts = ABSL_TEST_COPTS + ABSL_EXCEPTIONS_FLAG,
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":fixed_array",
|
|
|
|
"//absl/base:exception_testing",
|
|
|
|
"//absl/memory",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "fixed_array_test_noexceptions",
|
|
|
|
srcs = ["fixed_array_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
deps = [
|
|
|
|
":fixed_array",
|
|
|
|
"//absl/base:exception_testing",
|
|
|
|
"//absl/memory",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-06-25 18:18:19 +02:00
|
|
|
cc_test(
|
|
|
|
name = "fixed_array_exception_safety_test",
|
|
|
|
srcs = ["fixed_array_exception_safety_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS + ABSL_EXCEPTIONS_FLAG,
|
|
|
|
deps = [
|
|
|
|
":fixed_array",
|
|
|
|
"//absl/base:exception_safety_testing",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2018-05-17 18:05:57 +02:00
|
|
|
cc_test(
|
2018-05-04 18:58:56 +02:00
|
|
|
name = "fixed_array_benchmark",
|
|
|
|
srcs = ["fixed_array_benchmark.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS + ["$(STACK_FRAME_UNLIMITED)"],
|
2018-05-17 18:05:57 +02:00
|
|
|
tags = ["benchmark"],
|
2018-05-04 18:58:56 +02:00
|
|
|
deps = [
|
|
|
|
":fixed_array",
|
2018-05-31 21:26:35 +02:00
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
2018-05-04 18:58:56 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_library(
|
|
|
|
name = "inlined_vector",
|
|
|
|
hdrs = ["inlined_vector.h"],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
|
|
deps = [
|
|
|
|
"//absl/algorithm",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/base:throw_delegate",
|
|
|
|
"//absl/memory",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "inlined_vector_test",
|
|
|
|
srcs = ["inlined_vector_test.cc"],
|
2018-01-23 18:07:44 +01:00
|
|
|
copts = ABSL_TEST_COPTS + ABSL_EXCEPTIONS_FLAG,
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":inlined_vector",
|
|
|
|
":test_instance_tracker",
|
|
|
|
"//absl/base",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/base:exception_testing",
|
|
|
|
"//absl/memory",
|
|
|
|
"//absl/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 = "inlined_vector_test_noexceptions",
|
|
|
|
srcs = ["inlined_vector_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
deps = [
|
|
|
|
":inlined_vector",
|
|
|
|
":test_instance_tracker",
|
|
|
|
"//absl/base",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/base:exception_testing",
|
|
|
|
"//absl/memory",
|
|
|
|
"//absl/strings",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
2018-05-17 18:05:57 +02:00
|
|
|
cc_test(
|
2018-05-04 18:58:56 +02:00
|
|
|
name = "inlined_vector_benchmark",
|
|
|
|
srcs = ["inlined_vector_benchmark.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
2018-05-17 18:05:57 +02:00
|
|
|
tags = ["benchmark"],
|
2018-05-04 18:58:56 +02:00
|
|
|
deps = [
|
|
|
|
":inlined_vector",
|
|
|
|
"//absl/base",
|
|
|
|
"//absl/strings",
|
2018-05-31 21:26:35 +02:00
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
2018-05-04 18:58:56 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2017-09-19 22:54:40 +02:00
|
|
|
cc_library(
|
|
|
|
name = "test_instance_tracker",
|
|
|
|
testonly = 1,
|
|
|
|
srcs = ["internal/test_instance_tracker.cc"],
|
|
|
|
hdrs = ["internal/test_instance_tracker.h"],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = [
|
|
|
|
"//absl:__subpackages__",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "test_instance_tracker_test",
|
|
|
|
srcs = ["internal/test_instance_tracker_test.cc"],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
deps = [
|
|
|
|
":test_instance_tracker",
|
2017-09-26 00:35:12 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
)
|