blob: c3a48e15b81e304293fb98767f6b02bb84e58ee6 [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")
group("subpackaged-echo-realm") {
testonly = true
deps = [
":subpackaged_echo_realm_cpp",
":subpackaged_echo_realm_rust",
]
}
fuchsia_package_with_default_component("subpackaged_echo_realm_rust") {
manifest = "meta/subpackaged_echo_realm.cml"
subpackages = [
"../rust/echo_client",
"../rust/echo_server",
]
}
fuchsia_package_with_default_component("subpackaged_echo_realm_cpp") {
manifest = "meta/subpackaged_echo_realm.cml"
subpackages = [
"../cpp/echo_client",
"../cpp/echo_server",
]
}
group("tests") {
testonly = true
deps = [
"../integration_tests/cpp:subpackaged_echo_integration_test_cpp",
"../integration_tests/rust:subpackaged_echo_integration_test_rust",
]
}