blob: a064a06dadfcd02c20e4468ab6746dd44245caa0 [file] [log] [blame]
# Copyright 2023 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.
import("//build/zircon/zx_library.gni")
static_library("fake-gpio") {
testonly = true
public = [ "fake-gpio.h" ]
sources = [ "fake-gpio.cc" ]
public_deps =
[ "//sdk/fidl/fuchsia.hardware.gpio:fuchsia.hardware.gpio_cpp_testing" ]
deps = [
"//sdk/lib/driver/runtime:driver_runtime_cpp",
"//src/devices/bin/driver_runtime",
"//zircon/system/ulib/async-default:async-default",
]
}