blob: c63cb54c9d5ff3b9221a58f2ea05eb496154d3cb [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/unification/zx_library.gni")
zx_library("dma-buffer") {
sdk = "source"
sdk_headers = [ "lib/dma-buffer/buffer.h" ]
shared = false
sources = [ "dma-buffer.cc" ]
deps = [
"//zircon/public/lib/fbl",
"//zircon/public/lib/zx",
"//zircon/public/lib/zxtest",
]
configs += [ "//build/config/fuchsia:static_cpp_standard_library" ]
}