blob: 1788568e56bce323a89ef017f05fbc403ace7d05 [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.
executable("hid") {
if (is_fuchsia) {
configs += [
"//build/unification/config:zircon-migrated",
"//build/config:all_source",
]
}
output_dir = "$root_out_dir/zircon-migrated"
sources = [
"main.cc",
"report.cc",
]
deps = [
"//sdk/fidl/fuchsia.hardware.input:fuchsia.hardware.input_llcpp",
"//sdk/lib/fdio",
"//src/lib/listnode",
"//zircon/public/lib/fbl",
"//zircon/public/lib/zx",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/hid-parser",
]
}