| # 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", |
| ], |
| ) |