blob: 03b90345f9473fc07c9ac4e23e48897efcaed58f [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.
group("tests") {
testonly = true
public_deps = [
":settings_manager_tests",
]
}
executable("settings_manager_tests") {
output_name = "settings_manager_tests"
testonly = true
sources = [
"settings_manager_test.cc",
]
deps = [
"//garnet/public/lib/fsl",
"//garnet/public/lib/gtest",
"//garnet/public/lib/json",
"//garnet/public/lib/syslog/cpp",
"//sdk/fidl/fuchsia.accessibility",
"//sdk/fidl/fuchsia.sys",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:unit",
"//sdk/lib/vfs/cpp",
"//src/lib/fxl/test:gtest_main",
"//src/ui/a11y/lib/settings",
"//src/ui/a11y/lib/settings/tests/mocks",
"//third_party/rapidjson",
]
}