| # 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") |
| |
| group("test_data") { |
| testonly = true |
| public_deps = [ |
| ":rust-test-runner-example", |
| "huge-rust-tests", |
| "no-rust-tests", |
| "sample-rust-tests", |
| ] |
| } |
| |
| fuchsia_package("rust-test-runner-example") { |
| testonly = true |
| deps = [ |
| ":echo-example", |
| "concurrency-test", |
| "huge-rust-tests", |
| "no-rust-tests", |
| "sample-rust-tests", |
| ] |
| } |
| |
| group("echo-example") { |
| testonly = true |
| public_deps = [ |
| "echo-integration-test", |
| "//src/sys/component_manager/testing/echo_server", |
| ] |
| } |