blob: 14c3d34d7299efaa685ca17a80c6cd32dfa63ece [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
zx_library("libzbi") {
output_prefix_override = true
sdk = "static"
sdk_headers = [
"libzbi/zbi-cpp.h",
"libzbi/zbi-split.h",
"libzbi/zbi-zx.h",
"libzbi/zbi.h",
]
host = true
kernel = true
static = true
sources = [ "zbi.c" ]
if (is_fuchsia && !is_kernel) {
sources += [ "zbi-zx.cc" ]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/zx",
]
}
}