blob: 6bf63b1b879beb3abd9f0001fb832149c4a10e64 [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_library.gni")
import("//src/sys/build/components.gni")
group("fable") {
testonly = true
deps = [
":fable-lib",
":tests",
]
}
rustc_library("fable-lib") {
edition = "2018"
with_unit_tests = true
sources = [ "src/lib.rs" ]
test_deps = [ "//sdk/fidl/fuchsia.intl:fuchsia.intl-rustc" ]
}
fuchsia_unittest_package("fable-lib-unit-tests") {
deps = [ ":fable-lib_test" ]
}
group("tests") {
testonly = true
deps = [ ":fable-lib-unit-tests" ]
}