|  | # 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. | 
|  |  | 
|  | source_set("input_report_reader") { | 
|  | sources = [ | 
|  | "input_interpreter.cc", | 
|  | "input_interpreter.h", | 
|  | "input_reader.cc", | 
|  | "input_reader.h", | 
|  | ] | 
|  |  | 
|  | deps = [ | 
|  | "//garnet/public/lib/fostr/fidl/fuchsia.ui.input", | 
|  | "//sdk/fidl/fuchsia.input.report", | 
|  | "//sdk/fidl/fuchsia.ui.scenic", | 
|  | "//sdk/lib/fdio", | 
|  | "//zircon/system/ulib/async-default", | 
|  | "//zircon/system/ulib/trace", | 
|  | ] | 
|  |  | 
|  | public_deps = [ | 
|  | ":fdio", | 
|  | "//garnet/public/lib/fostr/fidl/fuchsia.ui.input", | 
|  | "//sdk/fidl/fuchsia.ui.input", | 
|  | "//sdk/lib/fdio", | 
|  | "//src/lib/fxl", | 
|  | "//zircon/public/lib/async-cpp", | 
|  | "//zircon/public/lib/zx", | 
|  | ] | 
|  | } | 
|  |  | 
|  | source_set("fdio") { | 
|  | visibility = [ ":*" ] | 
|  |  | 
|  | sources = [ | 
|  | "fdio_device_watcher.cc", | 
|  | "fdio_device_watcher.h", | 
|  | ] | 
|  |  | 
|  | deps = [ | 
|  | "//src/lib/fsl", | 
|  | "//src/lib/fxl", | 
|  | "//zircon/system/ulib/trace", | 
|  | ] | 
|  |  | 
|  | public_deps = [ | 
|  | "//sdk/fidl/fuchsia.ui.input", | 
|  | "//sdk/lib/fdio", | 
|  | "//zircon/public/lib/fbl", | 
|  | "//zircon/system/ulib/fdio-caller", | 
|  | "//zircon/system/ulib/fzl", | 
|  | ] | 
|  | } |