blob: b3188cff6df348dd71978bb643aff5ec0864571b [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.
import("//build/zircon/zx_library.gni")
zx_library("test-utils") {
testonly = true
sdk = "static"
sdk_headers = [ "test-utils/test-utils.h" ]
sources = [ "test-utils.cc" ]
deps = [
"//sdk/fidl/fuchsia.io:fuchsia.io_cpp",
"//sdk/fidl/fuchsia.process:fuchsia.process_cpp",
"//sdk/lib/component/incoming/cpp",
"//sdk/lib/fdio",
"//src/lib/debug:backtrace-request",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/runtime",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
# TODO(https://fxbug.dev/42085293): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-vla-cxx-extension" ]
}