summaryrefslogtreecommitdiff
path: root/absl/log/BUILD.bazel
diff options
context:
space:
mode:
authorGravatar Mike Kruskal <mkruskal@google.com>2022-12-06 12:38:52 -0800
committerGravatar Copybara-Service <copybara-worker@google.com>2022-12-06 12:39:58 -0800
commita99a183cabbc445aa36d2270795e0d6ff1f25dbf (patch)
tree70377d9f07f94a4518cc0803e0d72b096a9e9c43 /absl/log/BUILD.bazel
parent6dab0bd99c5856e747fe35e928395ae80ca5e5f1 (diff)
Move implementations of absl logging to an internal file.
This will allow us to create ABSL_-prefixed variants with shared implementation. PiperOrigin-RevId: 493383908 Change-Id: I3529021df7afa642fadaf43eb9fd8249e9202758
Diffstat (limited to 'absl/log/BUILD.bazel')
-rw-r--r--absl/log/BUILD.bazel6
1 files changed, 2 insertions, 4 deletions
diff --git a/absl/log/BUILD.bazel b/absl/log/BUILD.bazel
index b5ce616c..957709dd 100644
--- a/absl/log/BUILD.bazel
+++ b/absl/log/BUILD.bazel
@@ -32,7 +32,7 @@ cc_library(
copts = ABSL_DEFAULT_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
deps = [
- "//absl/base:core_headers",
+ "//absl/log/internal:check_impl",
"//absl/log/internal:check_op",
"//absl/log/internal:conditions",
"//absl/log/internal:log_message",
@@ -114,9 +114,7 @@ cc_library(
copts = ABSL_DEFAULT_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
deps = [
- "//absl/log/internal:conditions",
- "//absl/log/internal:log_message",
- "//absl/log/internal:strip",
+ "//absl/log/internal:log_impl",
],
)