blob: fd0afab20e9e1331bb08d90d0d3682cbb38700bd [file] [edit]
# 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.
load("@rules_cc//cc:cc_library.bzl", "cc_library")
package(
default_applicable_licenses = ["//:license"],
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",
],
)