blob: ae65d5d84306e7ec786510e40570c0eb8ece6d8b [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_test.gni")
import("//src/sys/build/components.gni")
rustc_test("test") {
name = "no_rust_tests"
edition = "2018"
sources = [ "src/lib.rs" ]
}
fuchsia_component("no-rust-tests") {
testonly = true
manifest = "meta/no_rust_tests.cml"
component_name = "no_rust_tests"
deps = [ ":test" ]
}