blob: a939b08345db422a46004100df4953ee74c7d784 [file] [log] [blame]
# Copyright 2020 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.
# [START imports]
import("//build/rust/rustc_binary.gni")
# [END imports]
# [START test]
rustc_binary("fidl_crates_bin") {
edition = "2018"
deps = [ "//examples/fidl/fuchsia.examples:fuchsia.examples-rustc" ]
sources = [ "src/main.rs" ]
}
# [END test]
# [START group]
group("fidl_crates") {
testonly = true
deps = [ ":fidl_crates_bin($host_toolchain)" ]
}
# [END group]