blob: e5a95d0543c9b41ab8c59d23b04b7143d8961485 [file] [log] [blame]
# 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")
executable("camera_demo_test") {
testonly = true
sources = [
"test.cc",
]
deps = [
"//garnet/public/lib/gtest",
"//sdk/fidl/fuchsia.ui.app",
"//sdk/fidl/fuchsia.ui.policy",
"//sdk/fidl/fuchsia.ui.scenic",
"//sdk/fidl/fuchsia.ui.views",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/service/cpp",
"//src/camera/examples/demo",
"//src/lib/fxl/test:gtest_main",
"//src/lib/ui/scenic/cpp",
"//zircon/public/lib/fzl",
]
}
group("test") {
testonly = true
public_deps = [
":camera_demo_test"
]
}