blob: 4098cfb8094b54ce04ac917b4548f3676001bef7 [file] [log] [blame]
# Copyright 2018 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_binary.gni")
rustc_binary("rust") {
name = "rust_fidl_changes_test"
edition = "2018"
deps = [
"../:fidl.test.after-rustc",
"../:fidl.test.before-rustc",
"../:fidl.test.during-rustc",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:futures",
]
sources = [
"src/fidl_assisted/after.rs",
"src/fidl_assisted/before.rs",
"src/fidl_assisted/mod.rs",
"src/main.rs",
"src/source_assisted/after.rs",
"src/source_assisted/before.rs",
"src/source_assisted/during.rs",
"src/source_assisted/mod.rs",
]
}