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