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