blob: 3ab947d412b6e14604642e63193b347d1b68c422 [file] [log] [blame] [edit]
# Copyright 2023 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")
import("//build/rust/rustc_binary.gni")
group("server") {
deps = [ ":package" ]
}
fuchsia_component("component") {
component_name = "pw_rpc_server"
manifest = "meta/pw_rpc_server.cml"
}
fuchsia_package("package") {
package_name = "pw_rpc_server"
deps = [ ":component" ]
}