blob: cc0ab164becf007c46eab8236b146be264018484 [file] [log] [blame] [edit]
# 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/components.gni")
import("//build/rust/rustc_library.gni")
group("fable") {
testonly = true
deps = [
":fable-lib",
":tests",
]
}
rustc_library("fable-lib") {
edition = "2024"
with_unit_tests = true
sources = [ "src/lib.rs" ]
test_deps = [ "//sdk/fidl/fuchsia.intl:fuchsia.intl_rust" ]
visibility = [
":*",
"//src/intl/time_zone_info_service/tests:*",
]
}
fuchsia_unittest_package("fable-lib-unit-tests") {
deps = [ ":fable-lib_test" ]
}
group("tests") {
testonly = true
deps = [ ":fable-lib-unit-tests" ]
}