blob: 2cae0333bb85602e38b87449ff2f0b4607923f33 [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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("watch_handler") {
with_unit_tests = true
edition = "2018"
deps = [
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:thiserror",
]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("watch-handler-tests") {
deps = [ ":watch_handler_test" ]
}
group("tests") {
testonly = true
public_deps = [ ":watch-handler-tests" ]
}