blob: cb6d69fcab3220433753f80bdb0d1b4c5ffdd399 [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("runtime") {
sources = [ "thread.c" ]
sdk = "source"
sdk_headers = [
"runtime/thread.h",
"runtime/tls.h",
]
deps = [
"$zx/system/ulib/elf-psabi",
"$zx/system/ulib/zircon",
]
configs += [
# This code is used in early startup, where safe-stack is not ready yet.
"$zx_build/public/gn/config:no_sanitizers",
]
}