blob: 99685c3a8da6fa9bbacc016bf460ed5441f223c4 [file] [log] [blame]
# 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("//build/components.gni")
fuchsia_test_component("echo_test") {
component_name = "echo_test"
deps =
[ "//src/sys/test_runners/legacy_test/test_data/echo_test:echo_test_bin" ]
manifest = "meta/echo_test.cml"
}
fuchsia_test_package("tier_2_test") {
test_components = [ ":echo_test" ]
}
fuchsia_package("tier_2_echo_server") {
testonly = true
deps = [ "//src/sys/component_manager/testing/echo_server" ]
}
group("tests") {
testonly = true
deps = [
":tier_2_echo_server",
":tier_2_test",
]
}