blob: 1424776a516f35e3eb22801aea4ecf6672c19a5c [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("dma-buffer") {
sdk = "shared"
sdk_headers = [ "lib/dma-buffer/buffer.h" ]
shared = true
sources = [
"dma-buffer.cc",
]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
"$zx/system/ulib/zxtest",
]
configs += [ "$zx_build/public/gn/config:static-libc++" ]
}
zx_test("dma-buffer-test") {
output_name = "dma-buffer-test"
sources = [
"dma-buffer-test.cc",
"dma-buffer.cc",
]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
"$zx/system/ulib/zxtest",
]
}