| # 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("//src/storage/fshost/generated_fshost_config.gni") |
| |
| group("integration_input_tests") { |
| testonly = true |
| |
| deps = [ |
| "factory-reset-handler:tests", |
| "interaction-state:tests", |
| "mouse:tests", |
| "starnix-input:tests", |
| "text-input:tests", |
| "touch:tests", |
| "virtual-keyboard:tests", |
| "web-touch-input:tests", |
| ] |
| |
| # NOTE: Minfs does not support the POSIX attributes required to run Starnix. |
| # TODO(https://fxbug.dev/359323478): Figure out a better way to disable these tests without |
| # relying on a global GN argument. |
| if (data_filesystem_format == "minfs") { |
| deps -= [ "starnix-input:tests" ] |
| } |
| } |