| # Copyright 2021 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/components.gni") |
| |
| group("web-virtual-keyboard-client") { |
| testonly = true |
| deps = [ ":package" ] |
| } |
| |
| executable("bin") { |
| testonly = true |
| output_name = "web-virtual-keyboard-client" |
| sources = [ "web-virtual-keyboard-client.cc" ] |
| deps = [ |
| "//src/ui/tests/integration_input_tests/virtual-keyboard:test.virtualkeyboard_cpp", |
| "//src/ui/tests/integration_input_tests/web-test-base:web_app_base", |
| ] |
| } |
| |
| fuchsia_component("component") { |
| testonly = true |
| component_name = "web-virtual-keyboard-client" |
| manifest = "meta/web-virtual-keyboard-client.cml" |
| deps = [ |
| ":bin", |
| "//sdk/lib/sys/component/cpp/testing:cpp", |
| ] |
| } |
| |
| fuchsia_package("package") { |
| testonly = true |
| package_name = "web-virtual-keyboard-client" |
| deps = [ ":component" ] |
| } |