blob: 934057ed0a07d26e9a0e35bac96520eb96dc9bd7 [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("ldmsg") {
sdk = "static"
sdk_headers = [ "ldmsg/ldmsg.h" ]
sources = [
"ldmsg.c",
]
deps = [
"$zx/system/ulib/zircon",
]
if (toolchain.base_environment == "user") {
# This library is used by libc, so suppress the circularity.
configs -= [ "$zx/public/gn/config:user" ]
}
# However, it uses <string.h> for memcpy.
deps += [ "$zx/system/ulib/c:headers" ]
}