diff options
author | Derek Mauro <dmauro@google.com> | 2024-07-01 08:25:45 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-07-01 08:26:37 -0700 |
commit | 57f04ad892729f798da520a80394cf25afe085e8 (patch) | |
tree | 9e4862a61e530542cb15a2eaddf9cb8ab0622d23 /absl/base/BUILD.bazel | |
parent | 4eb81046b2df1804220ef5af3fda54b6fa614c27 (diff) |
Rollback new poisoned pointer API
This breaks Chromium due to global constructor and incorrectly
assumes page size.
https://github.com/abseil/abseil-cpp/pull/1697
PiperOrigin-RevId: 648377066
Change-Id: I19f8b2655971a0c314091e26e62e10a5a9c46e94
Diffstat (limited to 'absl/base/BUILD.bazel')
-rw-r--r-- | absl/base/BUILD.bazel | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/absl/base/BUILD.bazel b/absl/base/BUILD.bazel index cfa7eaf5..bc949452 100644 --- a/absl/base/BUILD.bazel +++ b/absl/base/BUILD.bazel @@ -866,40 +866,6 @@ cc_test( ], ) -cc_library( - name = "poison", - srcs = [ - "internal/poison.cc", - ], - hdrs = ["internal/poison.h"], - copts = ABSL_DEFAULT_COPTS, - linkopts = ABSL_DEFAULT_LINKOPTS, - visibility = [ - "//absl:__subpackages__", - ], - deps = [ - ":config", - ":core_headers", - ], -) - -cc_test( - name = "poison_test", - size = "small", - timeout = "short", - srcs = [ - "internal/poison_test.cc", - ], - copts = ABSL_TEST_COPTS, - linkopts = ABSL_DEFAULT_LINKOPTS, - deps = [ - ":config", - ":poison", - "@com_google_googletest//:gtest", - "@com_google_googletest//:gtest_main", - ], -) - cc_test( name = "unique_small_name_test", size = "small", |