blob: bd70f006497a4b82c215da9596695725bda176ab [file] [log] [blame]
# Copyright 2020 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/test.gni")
import("//build/test/test_package.gni")
test("input-report-inject-test") {
sources = [ "test.cc" ]
deps = [
"//sdk/fidl/fuchsia.input.inject:fuchsia.input.inject",
"//sdk/fidl/fuchsia.input.report:fuchsia.input.report",
"//sdk/lib/sys/cpp/testing:integration",
"//src/lib/fxl/test:gtest_main_with_syslog",
"//src/ui/lib/hid-input-report",
"//zircon/public/lib/fbl",
"//zircon/public/lib/fdio",
"//zircon/public/lib/zx",
]
}
test_package("test-package") {
package_name = "input-report-inject-test"
deps = [ ":input-report-inject-test" ]
tests = [
{
name = "input-report-inject-test"
environments = basic_envs
},
]
}
group("test") {
testonly = true
deps = [
":test-package",
"devmgr",
]
}