diff options
Diffstat (limited to 'absl/memory')
-rw-r--r-- | absl/memory/BUILD.bazel | 7 | ||||
-rw-r--r-- | absl/memory/README.md | 22 |
2 files changed, 2 insertions, 27 deletions
diff --git a/absl/memory/BUILD.bazel b/absl/memory/BUILD.bazel index 91fc55fc460f..7265693f121e 100644 --- a/absl/memory/BUILD.bazel +++ b/absl/memory/BUILD.bazel @@ -19,10 +19,6 @@ load( "ABSL_DEFAULT_COPTS", "ABSL_TEST_COPTS", ) -load( - "//absl:test_dependencies.bzl", - "GUNIT_MAIN_DEPS_SELECTOR", -) package(default_visibility = ["//visibility:public"]) @@ -43,5 +39,6 @@ cc_test( ":memory", "//absl/base", "//absl/base:core_headers", - ] + select(GUNIT_MAIN_DEPS_SELECTOR), + "@com_google_googletest//:gtest_main", + ], ) diff --git a/absl/memory/README.md b/absl/memory/README.md deleted file mode 100644 index 72eddd9c05aa..000000000000 --- a/absl/memory/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# ABSL Memory - -This directory contains packages related to abstractions for managing memory -within objects. - -## Library Listing - -Only one library target exists within this directory at this time: - -* **memory** (`//absl/memory:memory`) provides classes and - utility functions for managing memory associated with pointers. - - -## Memory Library File Listing - -The following header files are directly included within the -`absl::memory` library: - -### Smart Pointer Management - -* `memory.h` - <br/>Pointer memory management abstractions for handling unique pointers |