blob: e776a32aa601d6e55a436a5ab925061384dd0a74 [file] [log] [blame] [edit]
# 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/testing/boot_test.gni")
import("//build/zircon/migrated_targets.gni")
zx_library("console") {
sources = [ "console.cc" ]
defines = [ "BOOT_TEST_SUCCESS_STRING=\"$boot_test_success_string\"" ]
deps = [
"//zircon/kernel/lib/boot-options:headers",
"//zircon/kernel/lib/debuglog:headers",
"//zircon/kernel/lib/init",
]
public_deps = [
# <lib/console.h> has #include <lib/special-sections/special-sections.h>.
"//zircon/kernel/lib/special-sections:headers",
]
}