blob: 2cee1fb7cb51f393dd12be08485aaba1e3ae1d27 [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/package.gni")
package("components_routing_example") {
deps = [
"//examples/components/routing/echo_server",
"//examples/components/routing/echo_client",
]
binaries = [
{
name = "echo_server"
},
{
name = "echo_client"
},
]
meta = [
{
path = rebase_path("meta/echo_server.cml")
dest = "echo_server.cm"
},
{
path = rebase_path("meta/echo_client.cml")
dest = "echo_client.cm"
},
{
path = rebase_path("meta/echo_realm.cml")
dest = "echo_realm.cm"
},
]
}