| # 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") { |
| executable_path = "bin/fable_lib_lib_test" |
| deps = [ ":fable-lib_test" ] |
| } |
| |
| group("tests") { |
| testonly = true |
| deps = [ ":fable-lib-unit-tests" ] |
| } |