blob: 0e6711167d9c66c004be3cb0413ae28aba2de109 [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("gfxconsole") {
kernel = true
sources = [ "gfxconsole.cc" ]
deps = [
"//zircon/kernel/lib/cmdline",
"//zircon/kernel/lib/gfx",
]
public_deps = [
# <lib/gfxconsole.h> has #include <lib/gfx.h>.
"//zircon/kernel/lib/gfx",
]
}