blob: 02178e832993585d03f02238ecb5d03257c6bea4 [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/testing/boot_tests/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",
]
}