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