blob: 005ce314ed5703c29cef9bb74130caa5c66b9980 [file] [log] [blame]
# 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.
group("lib") {
testonly = true
deps = [
":child_view_watcher_client",
":parent_viewport_watcher_client",
":view_provider_server",
]
}
source_set("view_provider_server") {
testonly = true
sources = [
"view_provider_server.cc",
"view_provider_server.h",
]
deps = [
"//sdk/fidl/fuchsia.sys",
"//sdk/fidl/fuchsia.ui.app",
"//sdk/fidl/fuchsia.ui.views",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/component/cpp/testing:cpp",
"//sdk/lib/syslog/cpp:cpp-macros",
"//sdk/lib/ui/scenic/cpp",
"//third_party/googletest:gtest",
"//zircon/system/ulib/async",
"//zircon/system/ulib/zx",
]
}
source_set("parent_viewport_watcher_client") {
testonly = true
sources = [
"parent_viewport_watcher_client.cc",
"parent_viewport_watcher_client.h",
]
deps = [
"//sdk/fidl/fuchsia.ui.composition",
"//sdk/lib/fidl/cpp",
"//sdk/lib/syslog/cpp:cpp-macros",
"//third_party/googletest:gtest",
"//zircon/system/ulib/zx",
]
}
source_set("child_view_watcher_client") {
testonly = true
sources = [
"child_view_watcher_client.cc",
"child_view_watcher_client.h",
]
deps = [
"//sdk/fidl/fuchsia.ui.composition",
"//sdk/fidl/fuchsia.ui.views",
"//sdk/lib/fidl/cpp",
"//sdk/lib/syslog/cpp:cpp-macros",
"//third_party/googletest:gtest",
"//zircon/system/ulib/zx",
]
}