# 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. | |
import("//build/config/fuchsia/rules.gni") | |
static_library("input-report-instance-driver") { | |
sources = [ "instance.cc" ] | |
deps = [ | |
"//sdk/fidl/fuchsia.input.report:fuchsia.input.report_llcpp", | |
"//src/ui/lib/hid-input-report", | |
"//zircon/public/lib/ddk", | |
"//zircon/public/lib/ddktl", | |
"//zircon/public/lib/fbl", | |
"//zircon/public/lib/zx", | |
] | |
} |