blob: 69fc9dacff7e4f64992c1042fc6b3002b9efa1e5 [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/zircon/zx_library.gni")
zx_library("designware") {
sdk = "static"
sdk_headers = [
"dev/pci/designware/atu-cfg.h",
"dev/pci/designware/dw-pcie.h",
]
sources = [ "dw-pcie.cc" ]
deps = [
"//src/devices/lib/driver",
"//src/devices/lib/mmio",
"//src/lib/ddk",
"//src/lib/ddktl",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/hwreg",
"//zircon/system/ulib/sync",
"//zircon/system/ulib/zx",
]
}