blob: 18984fb2b7b5d647c3ee11b6d351188a0f1b3abc [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.
import("//build/components.gni")
import("//build/drivers/fhcp_test_package.gni")
executable("touchpad-test-bin") {
testonly = true
output_name = "touchpad-test"
sources = [ "touchpad-test.cc" ]
deps = [
"//sdk/fidl/fuchsia.input.report:fuchsia.input.report_cpp",
"//sdk/lib/component/incoming/cpp",
"//sdk/lib/device-watcher/cpp",
"//sdk/lib/fhcp/cpp",
"//sdk/lib/fit",
"//src/lib/fsl",
"//src/lib/fxl/test:gtest_main",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/sync:sync-cpp",
]
}
fuchsia_test_component("touchpad-test-component") {
deps = [ ":touchpad-test-bin" ]
component_name = "touchpad-test"
manifest = "meta/touchpad-test.cml"
test_type = "system"
}
fhcp_test_package("touchpad-test-pkg") {
test_components = [ ":touchpad-test-component" ]
package_name = "touchpad-test"
test_types = [ "functional" ]
device_categories = [
{
category = "input"
subcategory = "touchpad"
},
]
test_specs = {
environments = [
{
dimensions = {
device_type = "Atlas"
}
tags = [ "fhcp-manual" ]
},
]
}
}
group("tests") {
testonly = true
deps = [ ":touchpad-test-pkg" ]
}