blob: 4fd2caecbedf09236251e93c5044422bcdd2fddf [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("//build/test/test_package.gni")
rustc_test("argh_tests_bin") {
edition = "2018"
deps = [
"//src/lib/argh",
]
}
test_package("argh_tests") {
deps = [
":argh_tests_bin_test",
]
tests = [
{
name = "argh_tests_bin"
dest = "argh_tests"
},
]
}