blob: ea02ee8b627a312a989d336adb2e2e26359d3b07 [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("unittest") {
sdk = "source"
sdk_headers = [ "unittest/unittest.h" ]
testonly = true
host = true
shared = true
sources = [
"all-tests.cpp",
"unittest-main.cpp",
"unittest.cpp",
"watchdog.cpp",
]
deps = [
"$zx/system/ulib/fdio",
"$zx/system/ulib/pretty",
]
if (current_os == "linux") {
libs = [ "pthread" ]
}
if (is_fuchsia) {
sources += [
"crash-handler.cpp",
"crash-list.cpp",
]
deps += [ "$zx/system/ulib/zx" ]
}
}