blob: 8297293356ebfce8fd8289bbd1e5e57556f7006c [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_client",
"//examples/components/routing/echo_server",
]
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"
},
]
}