| # 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") |
| import("//build/test/test_package.gni") |
| import("//build/testing/environments.gni") |
| |
| executable("test_utils_test") { |
| testonly = true |
| sources = [ "fake_buffer_collection_test.cc" ] |
| deps = [ |
| "//src/camera/drivers/test_utils", |
| "//src/lib/fxl/test:gtest_main_with_syslog", |
| "//zircon/public/lib/ddk", |
| "//zircon/public/lib/fake-bti", |
| "//zircon/public/lib/fbl", |
| "//zircon/public/lib/fdio", |
| "//zircon/public/lib/fit", |
| "//zircon/public/lib/hwreg", |
| "//zircon/public/lib/mmio", |
| "//zircon/public/lib/zx", |
| "//zircon/public/lib/zxtest", |
| "//zircon/system/fidl/fuchsia-sysmem:fuchsia-sysmem_c", |
| ] |
| } |
| |
| executable("button_checker_test") { |
| testonly = true |
| sources = [ "button_checker_test.cc" ] |
| deps = [ |
| "//src/camera/drivers/test_utils", |
| "//src/lib/fxl/test:gtest_main_with_syslog", |
| ] |
| } |