blob: 99b19e1766defb1f7ad74b6b4943c8c45ef8ee36 [file] [log] [blame]
# Copyright 2024 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
package(default_visibility = ["//visibility:public"])
cc_library(
name = "scoped_global_logger",
testonly = True,
srcs = [
"scoped_global_logger.cc",
"scoped_global_logger.h",
],
hdrs = [
"scoped_global_logger.h",
],
include_prefix = "lib/driver/testing/cpp",
target_compatible_with = ["@platforms//os:fuchsia"],
deps = [
"@fuchsia_sdk//pkg/async-loop-cpp",
"@fuchsia_sdk//pkg/driver_logging_cpp",
],
)