blob: 27930255c02d7ffff38341b3b175670a606adfef [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("driver-unit-test") {
sdk = "static"
sdk_headers = [
"driver-unit-test/logger.h",
"driver-unit-test/utils.h",
]
sources = [
"logger.cc",
"utils.cc",
]
deps = [
"$zx/system/fidl/fuchsia-driver-test:c",
"$zx/system/ulib/ddk",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fidl",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
"$zx/system/ulib/zxtest",
]
}