blob: ad06ad7f0b5ea200ebc0b87013d1199aa1ea671a [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/zircon/migrated_targets.gni")
zx_library("cmdline") {
sdk = "source"
sdk_headers = [ "lib/cmdline.h" ]
sdk_migrated = true
# For use only in the kernel and its own unit tests.
visibility = [
"//src/zircon/tests/kernel-cmdline/*",
"//zircon/kernel/*",
"//zircon/system/ulib",
]
kernel = true
static = true
sources = [ "cmdline.cc" ]
deps = [ "//zircon/system/ulib/fbl" ]
}