| # 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/package.gni") |
| import("//build/test.gni") |
| |
| executable("virtual_camera_test") { |
| testonly = true |
| sources = [ |
| "stream_tester.cc", |
| "virtual_camera_test.cc", |
| ] |
| deps = [ |
| "//garnet/public/lib/gtest", |
| "//sdk/fidl/fuchsia.camera2", |
| "//sdk/fidl/fuchsia.camera2.hal", |
| "//src/camera/drivers/virtual_camera/:virtual_camera_source", |
| "//src/lib/fxl/test:gtest_main_with_syslog", |
| "//src/lib/syslog/cpp", |
| "//zircon/public/lib/async-cpp", |
| "//zircon/public/lib/async-loop-cpp", |
| "//zircon/public/lib/async-loop-default", |
| "//zircon/public/lib/fbl", |
| "//zircon/public/lib/fit", |
| "//zircon/public/lib/fzl", |
| "//zircon/public/lib/sync", |
| "//zircon/public/lib/syslog", |
| "//zircon/public/lib/zx", |
| ] |
| } |