| # Copyright 2022 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/cpp/sdk_source_set.gni") |
| |
| sdk_source_set("testing") { |
| testonly = true |
| |
| category = "partner" |
| |
| sdk_name = "scenic_cpp_testing" |
| |
| include_base = "//sdk" |
| |
| public_configs = [ "//sdk/config" ] |
| |
| sources = [ |
| "fake_flatland.cc", |
| "fake_flatland.h", |
| "fake_flatland_types.cc", |
| "fake_flatland_types.h", |
| "fake_focuser.h", |
| "fake_mouse_source.h", |
| "fake_touch_source.h", |
| "fake_view_ref_focused.h", |
| ] |
| |
| deps = [ |
| "//sdk/fidl/fuchsia.scenic.scheduling:fuchsia.scenic.scheduling_hlcpp", |
| "//sdk/fidl/fuchsia.sysmem:fuchsia.sysmem_cpp", |
| "//sdk/fidl/fuchsia.ui.composition:fuchsia.ui.composition_hlcpp", |
| "//sdk/fidl/fuchsia.ui.views:fuchsia.ui.views_hlcpp", |
| "//sdk/lib/fidl/cpp", |
| "//zircon/system/ulib/async", |
| "//zircon/system/ulib/syslog", |
| "//zircon/system/ulib/zx", |
| ] |
| } |