blob: 656c9f66635690c310bdabfeb59123ed71b12bb7 [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") {
package_name = "intl-services-system-test"
test_components = [ ":intl-services-system-test-component" ]
}
group("tests") {
testonly = true
deps = [ ":intl-services-system-test" ]
}