blob: 10f754ecaf5177cafdb1c3e4d5847d4d67aec333 [file] [log] [blame]
# Copyright 2018 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/package.gni")
source_set("device") {
sources = [
"block.h",
"config.h",
"input.h",
"phys_mem.cc",
"phys_mem.h",
"virtio_queue.cc",
"virtio_queue.h",
]
defines = [ "_ALL_SOURCE=1" ]
public_deps = [
"//garnet/public/lib/fxl",
"//zircon/public/lib/async-cpp",
"//zircon/public/lib/fit",
"//zircon/public/lib/virtio",
]
}