# 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_test.gni") | |
rustc_test("fidl_rust_external_tests") { | |
assert(is_fuchsia) | |
edition = "2018" | |
deps = [ | |
"//src/lib/fidl/rust/fidl", | |
"//src/lib/fuchsia-async", | |
"//src/testing/fidl:placeholders-rustc", | |
] | |
sources = [ | |
"src/lib.rs", | |
"src/server_sender.rs", | |
"src/stream_handler_test.rs", | |
] | |
} |