| # 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/zircon/zx_library.gni") |
| |
| group("tests") { |
| testonly = true |
| deps = [ "test:fake-dma-buffer-test" ] |
| } |
| |
| zx_library("fake-dma-buffer") { |
| sdk = "source" |
| sdk_headers = [ "fake-dma-buffer/fake-dma-buffer.h" ] |
| testonly = true |
| sources = [ "fake-dma-buffer.cc" ] |
| public_deps = [ |
| "//sdk/lib/fit", |
| "//src/devices/lib/dma-buffer", |
| "//zircon/system/ulib/fbl", |
| "//zircon/system/ulib/zx", |
| ] |
| } |