diff options
Diffstat (limited to 'absl/base')
-rw-r--r-- | absl/base/BUILD.bazel | 1 | ||||
-rw-r--r-- | absl/base/CMakeLists.txt | 23 |
2 files changed, 23 insertions, 1 deletions
diff --git a/absl/base/BUILD.bazel b/absl/base/BUILD.bazel index f7d810135b8c..9b86ce77c7b8 100644 --- a/absl/base/BUILD.bazel +++ b/absl/base/BUILD.bazel @@ -75,7 +75,6 @@ cc_library( copts = ABSL_DEFAULT_COPTS, deps = [ ":config", - ":dynamic_annotations", ], ) diff --git a/absl/base/CMakeLists.txt b/absl/base/CMakeLists.txt index 202003e60e60..3c580d434941 100644 --- a/absl/base/CMakeLists.txt +++ b/absl/base/CMakeLists.txt @@ -130,6 +130,29 @@ absl_library( absl_cc_library( NAME + config + HDRS + "config.h" + "policy_checks.h" + PUBLIC +) + +absl_cc_library( + NAME + core_headers + HDRS + "attributes.h" + "macros.h" + "optimization.h" + "port.h" + "thread_annotations.h" + DEPS + absl::config + PUBLIC +) + +absl_cc_library( + NAME spinlock_wait SRCS "internal/spinlock_wait.cc" |