blob: fb719f2a1b788cefcedc6e5fdc30dc2c01fc7dba [file] [log] [blame]
# Copyright 2021 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")
rustc_library("lib") {
name = "ffx_daemon_events"
edition = "2021"
with_unit_tests = true
deps = [
"//src/developer/ffx/lib/addr:lib",
"//src/developer/ffx/lib/rcs:lib",
]
sources = [ "src/lib.rs" ]
}
group("events") {
testonly = true
deps = [ ":lib" ]
}
group("tests") {
testonly = true
deps = [ ":lib_test($host_toolchain)" ]
}