blob: 9e72d8917daed23da0d78e8354ba48a84bd08121 [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/async-default",
"//sdk/lib/driver/runtime:driver_runtime_cpp",
"//src/devices/bin/driver_runtime",
]
}