blob: cfbb5ba9772ca65a15a649c823397b6ffd67a794 [file] [log] [blame] [edit]
# Copyright 2020 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/test.gni")
import("//src/sys/build/components.gni")
test("dma-buffer-test-bin") {
output_name = "dma-buffer-test"
sources = [ "dma-buffer-test.cc" ]
deps = [
"//sdk/lib/fdio",
"//src/devices/lib/dma-buffer",
"//src/devices/testing/fake-object",
"//zircon/public/lib/fbl",
"//zircon/public/lib/zx",
"//zircon/public/lib/zxtest",
]
}
fuchsia_unittest_package("dma-buffer-test") {
deps = [ ":dma-buffer-test-bin" ]
}