blob: 3435d45cecd52d48c135e22fd2aaf0915e170a7d [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 = "2021"
deps = [ "//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" ]
}