blob: 281577fab12d842951b0bf940a12dd5103f1e7a9 [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/testing/cc_test_executable.gni")
group("tests") {
testonly = true
public_deps = [ ":gesture_arena_v2_tests" ]
}
cc_test_executable("gesture_arena_v2_tests") {
testonly = true
sources = [ "gesture_arena_v2_unittest.cc" ]
deps = [
"//sdk/lib/fit",
"//sdk/lib/syslog/cpp",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/loop_fixture",
"//src/ui/a11y/lib/gesture_manager/arena_v2",
"//src/ui/a11y/lib/testing:input",
"//third_party/googletest:gmock",
"//third_party/googletest:gtest",
]
}