blob: aa7aa2f966ce173527b4e55568b75d99583a9934 [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/unification/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/public/lib/fbl",
"//zircon/public/lib/hwreg",
"//zircon/public/lib/sync",
"//zircon/public/lib/zx",
]
}