blob: 24db3aab75da466438009abb464b41b17c6dbe15 [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/rust/rustc_test.gni")
import("//src/sys/build/components.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" ]
}