blob: 457ec13cc101e48e3840515af7e4f203887a139a [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
config("includes") {
include_dirs = [ "include" ]
}
source_set("pl011") {
public = [ "include/dev/uart/pl011/init.h" ]
sources = [ "uart.cc" ]
deps = [
"//zircon/kernel/dev/pdev",
"//zircon/kernel/dev/pdev/uart",
"//zircon/kernel/lib/arch",
"//zircon/kernel/lib/cbuf",
"//zircon/kernel/lib/debuglog",
"//zircon/system/ulib/zxc:zx",
]
public_configs = [ ":includes" ]
}