blob: e8cca767b6163bbd05a36dcc452f0a71522dfab7 [file] [log] [blame]
# Copyright 2021 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("motmot") {
public = [ "include/dev/uart/motmot/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",
]
public_configs = [ ":includes" ]
}