| # 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. |
| |
| source_set("logging-hardware-module") { |
| testonly = true |
| |
| sources = [ |
| "logging-hardware-module.cc", |
| "logging-hardware-module.h", |
| ] |
| |
| deps = [ "//src/graphics/display/lib/driver-framework-migration-utils/logging:zxlogf" ] |
| } |
| |
| source_set("dfv1-driver-with-logging") { |
| testonly = true |
| sources = [ |
| "dfv1-driver-with-logging.cc", |
| "dfv1-driver-with-logging.h", |
| ] |
| public_deps = [ |
| "//src/graphics/display/lib/driver-framework-migration-utils/logging/testing:logging-hardware-module", |
| "//src/lib/ddktl", |
| "//zircon/system/ulib/zx", |
| ] |
| deps = [ |
| "//src/lib/ddk", |
| "//zircon/system/ulib/fbl", |
| ] |
| } |
| |
| source_set("dfv2-driver-with-logging") { |
| testonly = true |
| sources = [ |
| "dfv2-driver-with-logging.cc", |
| "dfv2-driver-with-logging.h", |
| ] |
| public_deps = [ |
| "//sdk/lib/driver/component/cpp", |
| "//src/graphics/display/lib/driver-framework-migration-utils/logging/testing:logging-hardware-module", |
| "//zircon/system/ulib/zx", |
| ] |
| } |