blob: 4a580bf1bf5b145b4ea058e674db8d3540f02c8b [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("lockdep") {
sdk = "source"
sdk_headers = [
"lockdep/common.h",
"lockdep/global_reference.h",
"lockdep/guard.h",
"lockdep/guard_multiple.h",
"lockdep/lock_class.h",
"lockdep/lock_class_state.h",
"lockdep/lock_dependency_set.h",
"lockdep/lock_policy.h",
"lockdep/lock_traits.h",
"lockdep/lockdep.h",
"lockdep/runtime_api.h",
"lockdep/thread_lock_state.h",
]
kernel = true
static = true
sources = []
public_deps = [ "$zx/system/ulib/fbl:headers" ]
if (is_kernel) {
# Anything using libc++ headers in the kernel needs this.
public_deps += [ "$zx/kernel/lib/ktl:headers" ]
} else {
sources += [ "lock_dep.cc" ]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/zx",
]
}
}
zx_test("lockdep-test") {
testonly = true
sources = [ "lock_dep_test.cc" ]
deps = [
":lockdep",
"$zx/system/ulib/fdio",
"$zx/system/ulib/zircon-internal",
"$zx/system/ulib/zxtest",
]
}
group("test") {
testonly = true
deps = [ ":lockdep-test" ]
}