blob: 1da17e5f2babd54e8ad60940128ed344325b0273 [file] [log] [blame] [edit]
# Copyright 2022 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("//sdk/ctf/build/ctf.gni")
ctf_rustc_test("intl-services-system-test-bin") {
edition = "2018"
source_root = "src/intl_services_system_test.rs"
sources = [ "src/intl_services_system_test.rs" ]
deps = [
"//sdk/fidl/fuchsia.intl:fuchsia.intl_rust",
"//sdk/fidl/fuchsia.settings:fuchsia.settings_rust",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia",
"//src/lib/fuchsia-component",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
]
}
ctf_fuchsia_component("intl-services-system-test-component") {
testonly = true
manifest = "meta/intl_services_system_test.cml"
deps = [ ":intl-services-system-test-bin" ]
}
ctf_fuchsia_test_package("intl-services-system-test") {
plasa_element = "fidl/fuchsia.intl/PropertyProvider"
package_name = "intl-services-system-test"
test_components = [ ":intl-services-system-test-component" ]
}
group("tests") {
testonly = true
deps = [ ":intl-services-system-test" ]
}