Consolidate CHECK and LOG implementations. Suggested reviewing order: 1. New macro definitions in common/logging.h 2. Everything else: updating use sites to use new logging/CHECK macros PiperOrigin-RevId: 759666044
diff --git a/grammar_codegen/BUILD b/grammar_codegen/BUILD index 8b6b140..f7155bd 100644 --- a/grammar_codegen/BUILD +++ b/grammar_codegen/BUILD
@@ -29,9 +29,11 @@ features = ["-use_header_modules"], # Incompatible with -fexceptions. deps = [ ":grammar_info", + "@abseil-cpp//absl/log:absl_check", + "@abseil-cpp//absl/log:absl_log", "@abseil-cpp//absl/strings", "@abseil-cpp//absl/strings:str_format", - "@com_google_fuzztest//fuzztest/internal:logging", + "@com_google_fuzztest//common:logging", "@com_google_fuzztest//grammar_codegen/generated_antlr_parser", ], ) @@ -46,6 +48,7 @@ "@abseil-cpp//absl/container:flat_hash_set", "@abseil-cpp//absl/strings", "@abseil-cpp//absl/strings:str_format", + "@com_google_fuzztest//common:logging", "@com_google_fuzztest//fuzztest/internal:logging", ], )