blob: 21170fce7cf95de49af789c5b3ba383e2f445a93 [file] [log] [blame]
# Copyright 2018 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")
source_set("input") {
sources = [
"device_state.cc",
"device_state.h",
"input_device_impl.cc",
"input_device_impl.h",
]
public_deps = [
"//sdk/fidl/fuchsia.math",
"//sdk/fidl/fuchsia.ui.input",
"//sdk/lib/fidl/cpp",
"//sdk/lib/fit",
"//zircon/system/ulib/hid",
]
deps = [
"//src/lib/fxl",
"//src/lib/ui/base_view",
"//zircon/system/ulib/async-loop:async-loop-cpp",
]
# TODO(fxb/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}