c16d5557cd
-- 4e043a11b4c10a24e84046827ee16f47e11e35cc by Abseil Team <absl-team@google.com>: Merge of https://github.com/abseil/abseil-cpp/pull/136 PiperOrigin-RevId: 218197648 -- e61f06e1e601061a443feaa8c5207c52437bd641 by Abseil Team <absl-team@google.com>: Don't include <iostream> into int128, it's wasteful Including iostream emits a global constructor for initializing std::cout and friends, which isn't actually used by this file. PiperOrigin-RevId: 218156386 -- 8a6c82396e4c956be7f285328aec131cb4965f16 by Xiaoyi Zhang <zhangxy@google.com>: Fix MSVC compiler warnings on discarding return values of functions with 'nodiscard' attribute. PiperOrigin-RevId: 217883401 -- abf3e3a0f22bc4070df9dbc9a4ef4d883ed686bf by Tom Manshreck <shreck@google.com>: Update public README to add new libraries PiperOrigin-RevId: 217879399 -- 43b3b420a4e861711abbfbd497b8f2b3de17ec8c by Abseil Team <absl-team@google.com>: Import of CCTZ from GitHub. PiperOrigin-RevId: 217780963 -- 1c8831947ca6a65a63842e6bd5f37a7c102a4e1b by Abseil Team <absl-team@google.com>: Fix typo in a comment (missing comma in usage example). PiperOrigin-RevId: 217776645 GitOrigin-RevId: 4e043a11b4c10a24e84046827ee16f47e11e35cc Change-Id: I8999ae928da7a0030b4ecfd8d13da8522fdd013a
373 lines
7.3 KiB
CMake
373 lines
7.3 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
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
list(APPEND BASE_PUBLIC_HEADERS
|
|
"attributes.h"
|
|
"call_once.h"
|
|
"casts.h"
|
|
"config.h"
|
|
"dynamic_annotations.h"
|
|
"log_severity.h"
|
|
"macros.h"
|
|
"optimization.h"
|
|
"policy_checks.h"
|
|
"port.h"
|
|
"thread_annotations.h"
|
|
)
|
|
|
|
|
|
list(APPEND BASE_INTERNAL_HEADERS
|
|
"internal/atomic_hook.h"
|
|
"internal/bits.h"
|
|
"internal/cycleclock.h"
|
|
"internal/direct_mmap.h"
|
|
"internal/endian.h"
|
|
"internal/exception_testing.h"
|
|
"internal/exception_safety_testing.h"
|
|
"internal/hide_ptr.h"
|
|
"internal/identity.h"
|
|
"internal/invoke.h"
|
|
"internal/inline_variable.h"
|
|
"internal/low_level_alloc.h"
|
|
"internal/low_level_scheduling.h"
|
|
"internal/per_thread_tls.h"
|
|
"internal/pretty_function.h"
|
|
"internal/raw_logging.h"
|
|
"internal/scheduling_mode.h"
|
|
"internal/spinlock.h"
|
|
"internal/spinlock_wait.h"
|
|
"internal/sysinfo.h"
|
|
"internal/thread_identity.h"
|
|
"internal/throw_delegate.h"
|
|
"internal/tsan_mutex_interface.h"
|
|
"internal/unaligned_access.h"
|
|
"internal/unscaledcycleclock.h"
|
|
)
|
|
|
|
|
|
# absl_base main library
|
|
list(APPEND BASE_SRC
|
|
"internal/cycleclock.cc"
|
|
"internal/raw_logging.cc"
|
|
"internal/spinlock.cc"
|
|
"internal/sysinfo.cc"
|
|
"internal/thread_identity.cc"
|
|
"internal/unscaledcycleclock.cc"
|
|
"internal/low_level_alloc.cc"
|
|
${BASE_PUBLIC_HEADERS}
|
|
${BASE_INTERNAL_HEADERS}
|
|
)
|
|
|
|
absl_library(
|
|
TARGET
|
|
absl_base
|
|
SOURCES
|
|
${BASE_SRC}
|
|
PUBLIC_LIBRARIES
|
|
absl_dynamic_annotations
|
|
absl_internal_spinlock_wait
|
|
EXPORT_NAME
|
|
base
|
|
)
|
|
|
|
absl_cc_library(
|
|
NAME
|
|
throw_delegate
|
|
SRCS
|
|
"internal/throw_delegate.cc"
|
|
HDRS
|
|
"internal/throw_delegate.h"
|
|
COPTS
|
|
${ABSL_EXCEPTIONS_FLAG}
|
|
DEPS
|
|
absl::base
|
|
)
|
|
|
|
|
|
# exception-safety testing library
|
|
absl_cc_library(
|
|
NAME
|
|
exception_safety_testing
|
|
HDRS
|
|
"internal/exception_safety_testing.h"
|
|
SRCS
|
|
"internal/exception_safety_testing.cc"
|
|
COPTS
|
|
${ABSL_EXCEPTIONS_FLAG}
|
|
DEPS
|
|
absl::base
|
|
absl::memory
|
|
absl::meta
|
|
absl::strings
|
|
absl::optional
|
|
gtest
|
|
TESTONLY
|
|
)
|
|
|
|
|
|
# dynamic_annotations library
|
|
set(DYNAMIC_ANNOTATIONS_SRC "dynamic_annotations.cc")
|
|
|
|
absl_library(
|
|
TARGET
|
|
absl_dynamic_annotations
|
|
SOURCES
|
|
${DYNAMIC_ANNOTATIONS_SRC}
|
|
)
|
|
|
|
absl_cc_library(
|
|
NAME
|
|
spinlock_wait
|
|
SRCS
|
|
"internal/spinlock_wait.cc"
|
|
HDRS
|
|
"internal/scheduling_mode.h"
|
|
"internal/spinlock_wait.h"
|
|
)
|
|
|
|
absl_cc_library(
|
|
NAME
|
|
malloc_internal
|
|
SRCS
|
|
"internal/low_level_alloc.cc"
|
|
HDRS
|
|
"internal/direct_mmap.h"
|
|
"internal/low_level_alloc.h"
|
|
DEPS
|
|
absl_dynamic_annotations
|
|
)
|
|
|
|
|
|
|
|
#
|
|
## TESTS
|
|
#
|
|
|
|
# call once test
|
|
set(ATOMIC_HOOK_TEST_SRC "internal/atomic_hook_test.cc")
|
|
set(ATOMIC_HOOK_TEST_PUBLIC_LIBRARIES absl::base)
|
|
|
|
absl_test(
|
|
TARGET
|
|
atomic_hook_test
|
|
SOURCES
|
|
${ATOMIC_HOOK_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${ATOMIC_HOOK_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# call once test
|
|
set(CALL_ONCE_TEST_SRC "call_once_test.cc")
|
|
set(CALL_ONCE_TEST_PUBLIC_LIBRARIES absl::base absl::synchronization)
|
|
|
|
absl_test(
|
|
TARGET
|
|
call_once_test
|
|
SOURCES
|
|
${CALL_ONCE_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${CALL_ONCE_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test bit_cast_test
|
|
set(BIT_CAST_TEST_SRC "bit_cast_test.cc")
|
|
|
|
absl_test(
|
|
TARGET
|
|
bit_cast_test
|
|
SOURCES
|
|
${BIT_CAST_TEST_SRC}
|
|
)
|
|
|
|
|
|
# test absl_throw_delegate_test
|
|
set(THROW_DELEGATE_TEST_SRC "throw_delegate_test.cc")
|
|
set(THROW_DELEGATE_TEST_PUBLIC_LIBRARIES absl::base absl_internal_throw_delegate)
|
|
|
|
absl_test(
|
|
TARGET
|
|
throw_delegate_test
|
|
SOURCES
|
|
${THROW_DELEGATE_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${THROW_DELEGATE_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test invoke_test
|
|
set(INVOKE_TEST_SRC "invoke_test.cc")
|
|
set(INVOKE_TEST_PUBLIC_LIBRARIES absl::strings)
|
|
|
|
absl_test(
|
|
TARGET
|
|
invoke_test
|
|
SOURCES
|
|
${INVOKE_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${INVOKE_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test inline_variable_test
|
|
list(APPEND INLINE_VARIABLE_TEST_SRC
|
|
"internal/inline_variable_testing.h"
|
|
"inline_variable_test.cc"
|
|
"inline_variable_test_a.cc"
|
|
"inline_variable_test_b.cc"
|
|
)
|
|
|
|
set(INLINE_VARIABLE_TEST_PUBLIC_LIBRARIES absl::base)
|
|
|
|
absl_test(
|
|
TARGET
|
|
inline_variable_test
|
|
SOURCES
|
|
${INLINE_VARIABLE_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${INLINE_VARIABLE_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test spinlock_test_common
|
|
set(SPINLOCK_TEST_COMMON_SRC "spinlock_test_common.cc")
|
|
set(SPINLOCK_TEST_COMMON_PUBLIC_LIBRARIES absl::base absl::synchronization)
|
|
|
|
absl_test(
|
|
TARGET
|
|
spinlock_test_common
|
|
SOURCES
|
|
${SPINLOCK_TEST_COMMON_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${SPINLOCK_TEST_COMMON_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test spinlock_test
|
|
set(SPINLOCK_TEST_SRC "spinlock_test_common.cc")
|
|
set(SPINLOCK_TEST_PUBLIC_LIBRARIES absl::base absl::synchronization)
|
|
|
|
absl_test(
|
|
TARGET
|
|
spinlock_test
|
|
SOURCES
|
|
${SPINLOCK_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${SPINLOCK_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test endian_test
|
|
set(ENDIAN_TEST_SRC "internal/endian_test.cc")
|
|
|
|
absl_test(
|
|
TARGET
|
|
endian_test
|
|
SOURCES
|
|
${ENDIAN_TEST_SRC}
|
|
)
|
|
|
|
|
|
# test config_test
|
|
set(CONFIG_TEST_SRC "config_test.cc")
|
|
set(CONFIG_TEST_PUBLIC_LIBRARIES absl::base absl::synchronization)
|
|
absl_test(
|
|
TARGET
|
|
config_test
|
|
SOURCES
|
|
${CONFIG_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${CONFIG_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test raw_logging_test
|
|
set(RAW_LOGGING_TEST_SRC "raw_logging_test.cc")
|
|
set(RAW_LOGGING_TEST_PUBLIC_LIBRARIES absl::base absl::strings)
|
|
|
|
absl_test(
|
|
TARGET
|
|
raw_logging_test
|
|
SOURCES
|
|
${RAW_LOGGING_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${RAW_LOGGING_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test sysinfo_test
|
|
set(SYSINFO_TEST_SRC "internal/sysinfo_test.cc")
|
|
set(SYSINFO_TEST_PUBLIC_LIBRARIES absl::base absl::synchronization)
|
|
|
|
absl_test(
|
|
TARGET
|
|
sysinfo_test
|
|
SOURCES
|
|
${SYSINFO_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${SYSINFO_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test low_level_alloc_test
|
|
set(LOW_LEVEL_ALLOC_TEST_SRC "internal/low_level_alloc_test.cc")
|
|
set(LOW_LEVEL_ALLOC_TEST_PUBLIC_LIBRARIES absl::base)
|
|
|
|
absl_test(
|
|
TARGET
|
|
low_level_alloc_test
|
|
SOURCES
|
|
${LOW_LEVEL_ALLOC_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${LOW_LEVEL_ALLOC_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
|
|
# test thread_identity_test
|
|
set(THREAD_IDENTITY_TEST_SRC "internal/thread_identity_test.cc")
|
|
set(THREAD_IDENTITY_TEST_PUBLIC_LIBRARIES absl::base absl::synchronization)
|
|
|
|
absl_test(
|
|
TARGET
|
|
thread_identity_test
|
|
SOURCES
|
|
${THREAD_IDENTITY_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${THREAD_IDENTITY_TEST_PUBLIC_LIBRARIES}
|
|
)
|
|
|
|
#test exceptions_safety_testing_test
|
|
set(EXCEPTION_SAFETY_TESTING_TEST_SRC "exception_safety_testing_test.cc")
|
|
set(EXCEPTION_SAFETY_TESTING_TEST_PUBLIC_LIBRARIES
|
|
absl::base
|
|
absl_internal_exception_safety_testing
|
|
absl::memory
|
|
absl::meta
|
|
absl::strings
|
|
absl::optional
|
|
)
|
|
|
|
absl_test(
|
|
TARGET
|
|
absl_exception_safety_testing_test
|
|
SOURCES
|
|
${EXCEPTION_SAFETY_TESTING_TEST_SRC}
|
|
PUBLIC_LIBRARIES
|
|
${EXCEPTION_SAFETY_TESTING_TEST_PUBLIC_LIBRARIES}
|
|
PRIVATE_COMPILE_FLAGS
|
|
${ABSL_EXCEPTIONS_FLAG}
|
|
)
|