blob: 4d5f0a6b1f797d429b5ab41943e77032cd3a83ea [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/component/config.gni")
import("//build/components.gni")
import("//build/rust/rustc_binary.gni")
import("//build/rust/rustc_test.gni")
rustc_test("test-bin") {
edition = "2021"
source_root = "integration-test.rs"
name = "attributed-logging-test"
deps = [
"//sdk/fidl/fuchsia.sys2:fuchsia.sys2-rustc",
"//src/lib/fuchsia",
"//src/lib/fuchsia-component-test",
"//src/sys/lib/component-events",
"//third_party/rust_crates:futures",
]
sources = [ "integration-test.rs" ]
}
fuchsia_component("integration-test") {
testonly = true
manifest = "meta/integration-test.cml"
deps = [ ":test-bin" ]
}
rustc_test("e2e-bin") {
edition = "2021"
source_root = "e2e-test.rs"
name = "attributed-logging-e2e-test"
deps = [
"//sdk/fidl/fuchsia.sys2:fuchsia.sys2-rustc",
"//src/lib/fuchsia",
"//src/lib/fuchsia-component-test",
"//src/sys/lib/component-events",
"//third_party/rust_crates:futures",
]
sources = [ "e2e-test.rs" ]
}
fuchsia_component("e2e-test") {
testonly = true
manifest = "meta/e2e-test.cml"
deps = [ ":e2e-bin" ]
}
fuchsia_component("e2e-root-component") {
testonly = true
manifest = "meta/e2e-root.cml"
component_name = "e2e-root"
}
fuchsia_test_package("attributed-logging-test") {
test_components = [
":integration-test",
":e2e-test",
]
deps = [
":e2e-root-component",
"components:all-components",
"//src/diagnostics/archivist:archivist-for-embedding-v2",
"//src/sys/component_manager:component-manager-realm-builder-debug-cmp",
]
}