blob: 81d8e42e95c149c39a5af18c44ae94e994ca7b6e [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("validating-log-listener") {
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//garnet/public/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:futures",
"//zircon/system/fidl/fuchsia-logger:fuchsia-logger-rustc",
]
}
group("tests") {
testonly = true
deps = []
}