Commit f753eb27 by Abseil Team Committed by Copybara-Service

Add a missing dependency on :raw_logging_internal

internal/stacktrace_x86-inl.inc includes internal/raw_logging.h and therefore needs
a direct dependency to satisfy Bazel layering_check (Clang -fmodules-strict-decluse).
Clang before https://reviews.llvm.org/D132779 does not report the issue becasue:

* internal/stacktrace_x86-inl.inc is an .inc file and is not checked as a main file
* internal/stacktrace_x86-inl.inc is a textual header and older Clang incorrectly
  considers there is no requesting module and suppresses the error.

PiperOrigin-RevId: 472795469
Change-Id: Ia4ad667ea80b2590cef1adfd22af025c8df826ac
parent ea9c8ff5
...@@ -49,6 +49,7 @@ cc_library( ...@@ -49,6 +49,7 @@ cc_library(
":debugging_internal", ":debugging_internal",
"//absl/base:config", "//absl/base:config",
"//absl/base:core_headers", "//absl/base:core_headers",
"//absl/base:raw_logging_internal",
], ],
) )
......
...@@ -41,6 +41,7 @@ absl_cc_library( ...@@ -41,6 +41,7 @@ absl_cc_library(
absl::debugging_internal absl::debugging_internal
absl::config absl::config
absl::core_headers absl::core_headers
absl::raw_logging_internal
PUBLIC PUBLIC
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment