blob: b33c4487952240e5d3ecf5b1f4cae221e6722b51 [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/rust/rustc_library.gni")
import("//build/test/test_package.gni")
rustc_library("input-synthesis") {
name = "input-synthesis"
with_unit_tests = true
version = "0.1.0"
edition = "2018"
deps = [
"//sdk/fidl/fuchsia.input:fuchsia.input-rustc",
"//sdk/fidl/fuchsia.ui.input:fuchsia.ui.input-rustc",
"//sdk/fidl/fuchsia.ui.input2:fuchsia.ui.input2-rustc",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:matches",
"//third_party/rust_crates:proptest",
]
sources = [
"src/inverse_keymap.rs",
"src/keymaps.rs",
"src/legacy_backend.rs",
"src/lib.rs",
"src/synthesizer.rs",
"src/usages.rs",
]
}
unittest_package("input-synthesis-tests") {
deps = [ ":input-synthesis_test" ]
tests = [
{
name = "input_synthesis_lib_test"
},
]
}