blob: b028b9926df398d2d4125795e37b2c7afe18008c [file] [log] [blame]
# Copyright 2021 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_library.gni")
import("//build/rust/rustc_test.gni")
import("//build/testing/test_spec.gni")
rustc_library("lib") {
name = "fms"
edition = "2018"
with_unit_tests = true
deps = [ "//third_party/rust_crates:anyhow" ]
sources = [ "src/lib.rs" ]
}
group("fms") {
deps = [ ":lib" ]
}
group("tests") {
testonly = true
deps = [ ":lib_test($host_toolchain)" ]
}