blob: 0b81340e8afe19f509dda90d08c3b0c211e7153e [file] [log] [blame]
# Copyright 2019 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_binary.gni")
import("//src/sys/build/components.gni")
rustc_binary("bin") {
testonly = true
name = "elf_test_runner"
deps = [
"//sdk/fidl/fuchsia.component.runner:fuchsia.component.runner-rustc",
"//sdk/fidl/fuchsia.process:fuchsia.process-rustc",
"//sdk/fidl/fuchsia.sys2:fuchsia.sys2-rustc",
"//sdk/fidl/fuchsia.test:fuchsia.test-rustc",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/syslog/rust:syslog",
"//src/lib/zircon/rust:fuchsia-zircon",
"//src/sys/lib/runner",
"//src/sys/test_runners:lib",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
"//third_party/rust_crates:thiserror",
]
sources = [
"src/main.rs",
"src/test_server.rs",
]
}
fuchsia_component("elf-test-runner-component") {
testonly = true
component_name = "elf-test-runner"
manifest = "meta/elf_test_runner.cml"
deps = [ ":bin" ]
}
fuchsia_package("elf-test-runner") {
testonly = true
deps = [ ":elf-test-runner-component" ]
}
group("elf") {
testonly = true
deps = [ ":elf-test-runner" ]
}
group("tests") {
testonly = true
deps = [ "tests" ]
}