blob: 5884ea760677b49df1d354ff2e47c81bbfedf439 [file] [log] [blame]
# Copyright 2019 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/bind/bind.gni")
import("//build/config/fuchsia/rules.gni")
bind_rules("sysdev-bind") {
output = "sysdev-bind.h"
disable_autobind = true
}
driver_module("sysdev") {
test = true
sources = [ "sysdev.cc" ]
deps = [
":sysdev-bind",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_c",
"//sdk/lib/fdio",
"//src/devices/lib/driver",
"//src/lib/ddk",
"//src/lib/ddktl",
"//zircon/public/lib/fbl",
"//zircon/public/lib/zx",
]
}