blob: afba418286cd6e041fc4cf60e4997fc7f981f15a [file] [log] [blame]
Casey Dahlined2d1d22024-11-12 22:56:16 +00001# Copyright 2024 The Fuchsia Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/rust/rustc_library.gni")
6
7rustc_library("local") {
8 name = "fdomain_local"
Sarah Chan64bf58d2025-12-06 16:25:07 -08009 edition = "2024"
Casey Dahlined2d1d22024-11-12 22:56:16 +000010 with_unit_tests = true
11
12 sources = [ "src/lib.rs" ]
13
14 deps = [
15 "//sdk/fidl/fuchsia.io:fuchsia.io_rust",
16 "//src/lib/fdomain/client",
17 "//src/lib/fdomain/container",
18 "//src/lib/fidl/rust/fidl",
19 "//src/lib/fuchsia-async",
20 "//third_party/rust_crates:futures",
21 ]
22}