blob: f888b1f55a3df18706913307d1817b02e9fd1fde [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
import("//build/zircon/migrated_targets.gni")
zx_library("console") {
kernel = true
sources = [ "console.cc" ]
deps = [
"//zircon/kernel/lib/cmdline",
"//zircon/kernel/lib/init",
]
public_deps = [
# <lib/console.h> has #include <lib/special-sections/special-sections.h>.
"//zircon/kernel/lib/special-sections:headers",
]
}