blob: 50f3252a3ff8c38fbec3c542c1b94ab46c12fd7b [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.
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.cpp" ]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/zx",
]
}
}