| # Copyright 2022 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/components.gni") | |
| import("//build/test.gni") | |
| source_set("devfs_fidl") { | |
| sources = [ | |
| "device_server.cc", | |
| "device_server.h", | |
| ] | |
| deps = [ "//src/lib/ddktl" ] | |
| public_deps = [ | |
| "//sdk/fidl/fuchsia.device:fuchsia.device_cpp", | |
| "//sdk/lib/fidl/cpp/wire", | |
| "//src/lib/ddk", | |
| ] | |
| } |