blob: 9ac8676b51991d0e87a4c69b25b6bfc335e73169 [file] [log] [blame]
# 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("//build/test/test_package.gni")
group("lib") {
deps = [
"gesture_manager",
"tts",
]
}
group("tests") {
testonly = true
deps = [
":a11y_lib_tests",
]
}
test_package("a11y_lib_tests") {
deps = [
"gesture_manager/tests",
"tts/tests",
]
tests = [
{
name = "tts_manager_tests"
environments = basic_envs
},
{
name = "gesture_manager_tests"
environments = basic_envs
},
]
}