blob: 0c9691be7d7e41131efded8a4a4a4decf6bb9042 [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.
import("//build/package.gni")
executable("bin") {
output_name = "simple-touch"
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.input.report",
"//src/lib/files",
"//src/lib/fxl",
"//zircon/public/lib/ddk",
"//zircon/public/lib/fdio",
"//zircon/public/lib/fzl",
"//zircon/system/ulib/framebuffer",
]
}
package("simple-touch") {
deps = [ ":bin" ]
binaries = [
{
name = "simple-touch"
shell = true
},
]
}