blob: 2a5d33e7ce3bafe3ad8ab47498210a14314f5fe1 [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/components.gni")
import("//build/test.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",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
]
}
fuchsia_unittest_package("dma-buffer-test") {
deps = [ ":dma-buffer-test-bin" ]
}