blob: a7710b92649e9d9a8d0f7f4e1302fd8d642d25a9 [file] [log] [blame] [edit]
# 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")
executable("bin") {
output_name = "fake_a11y_manager"
sources = [ "main.cc" ]
deps = [
":lib",
"//sdk/lib/sys/cpp",
"//sdk/lib/syslog/cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}
source_set("lib") {
sources = [
"fake_a11y_manager.cc",
"fake_a11y_manager.h",
]
public_deps = [
"//sdk/fidl/fuchsia.accessibility.semantics",
"//sdk/lib/fidl/cpp",
]
}
fuchsia_component("fake-a11y-manager") {
component_name = "fake-a11y-manager"
manifest = "meta/fake_a11y_manager.cml"
deps = [ ":bin" ]
}